blob: 4adf5e19918a3aa51be08434ff3205496f310afc [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>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070030
31#include "xhci.h"
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +030032#include "xhci-trace.h"
Sarah Sharp66d4ead2009-04-27 19:52:28 -070033
34#define DRIVER_AUTHOR "Sarah Sharp"
35#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
36
Sarah Sharpb0567b32009-08-07 14:04:36 -070037/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
38static int link_quirk;
39module_param(link_quirk, int, S_IRUGO | S_IWUSR);
40MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
41
Sarah Sharp66d4ead2009-04-27 19:52:28 -070042/* TODO: copied from ehci-hcd.c - can this be refactored? */
43/*
Sarah Sharp2611bd12012-10-25 13:27:51 -070044 * xhci_handshake - spin reading hc until handshake completes or fails
Sarah Sharp66d4ead2009-04-27 19:52:28 -070045 * @ptr: address of hc register to be read
46 * @mask: bits to look at in result of read
47 * @done: value of those bits when handshake succeeds
48 * @usec: timeout in microseconds
49 *
50 * Returns negative errno, or zero on success
51 *
52 * Success happens when the "mask" bits have the specified value (hardware
53 * handshake done). There are two failure modes: "usec" have passed (major
54 * hardware flakeout), or the register reads as all-ones (hardware removed).
55 */
Sarah Sharp2611bd12012-10-25 13:27:51 -070056int xhci_handshake(struct xhci_hcd *xhci, void __iomem *ptr,
Sarah Sharp66d4ead2009-04-27 19:52:28 -070057 u32 mask, u32 done, int usec)
58{
59 u32 result;
60
61 do {
62 result = xhci_readl(xhci, ptr);
63 if (result == ~(u32)0) /* card removed */
64 return -ENODEV;
65 result &= mask;
66 if (result == done)
67 return 0;
68 udelay(1);
69 usec--;
70 } while (usec > 0);
71 return -ETIMEDOUT;
72}
73
74/*
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070075 * Disable interrupts and begin the xHCI halting process.
76 */
77void xhci_quiesce(struct xhci_hcd *xhci)
78{
79 u32 halted;
80 u32 cmd;
81 u32 mask;
82
83 mask = ~(XHCI_IRQS);
84 halted = xhci_readl(xhci, &xhci->op_regs->status) & STS_HALT;
85 if (!halted)
86 mask &= ~CMD_RUN;
87
88 cmd = xhci_readl(xhci, &xhci->op_regs->command);
89 cmd &= mask;
90 xhci_writel(xhci, cmd, &xhci->op_regs->command);
91}
92
93/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -070094 * Force HC into halt state.
95 *
96 * Disable any IRQs and clear the run/stop bit.
97 * HC will complete any current and actively pipelined transactions, and
Andiry Xubdfca502011-01-06 15:43:39 +080098 * should halt within 16 ms of the run/stop bit being cleared.
Sarah Sharp66d4ead2009-04-27 19:52:28 -070099 * Read HC Halted bit in the status register to see when the HC is finished.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700100 */
101int xhci_halt(struct xhci_hcd *xhci)
102{
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800103 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700104 xhci_dbg(xhci, "// Halt the HC\n");
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -0700105 xhci_quiesce(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700106
Sarah Sharp2611bd12012-10-25 13:27:51 -0700107 ret = xhci_handshake(xhci, &xhci->op_regs->status,
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700108 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
Elric Fuc181bc52012-06-27 16:30:57 +0800109 if (!ret) {
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800110 xhci->xhc_state |= XHCI_STATE_HALTED;
Elric Fuc181bc52012-06-27 16:30:57 +0800111 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
112 } else
Sarah Sharp5af98bb2012-03-16 12:58:20 -0700113 xhci_warn(xhci, "Host not halted after %u microseconds.\n",
114 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800115 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700116}
117
118/*
Sarah Sharped074532010-05-24 13:25:21 -0700119 * Set the run bit and wait for the host to be running.
120 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800121static int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700122{
123 u32 temp;
124 int ret;
125
126 temp = xhci_readl(xhci, &xhci->op_regs->command);
127 temp |= (CMD_RUN);
128 xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n",
129 temp);
130 xhci_writel(xhci, temp, &xhci->op_regs->command);
131
132 /*
133 * Wait for the HCHalted Status bit to be 0 to indicate the host is
134 * running.
135 */
Sarah Sharp2611bd12012-10-25 13:27:51 -0700136 ret = xhci_handshake(xhci, &xhci->op_regs->status,
Sarah Sharped074532010-05-24 13:25:21 -0700137 STS_HALT, 0, XHCI_MAX_HALT_USEC);
138 if (ret == -ETIMEDOUT)
139 xhci_err(xhci, "Host took too long to start, "
140 "waited %u microseconds.\n",
141 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800142 if (!ret)
143 xhci->xhc_state &= ~XHCI_STATE_HALTED;
Sarah Sharped074532010-05-24 13:25:21 -0700144 return ret;
145}
146
147/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800148 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700149 *
150 * This resets pipelines, timers, counters, state machines, etc.
151 * Transactions will be terminated immediately, and operational registers
152 * will be set to their defaults.
153 */
154int xhci_reset(struct xhci_hcd *xhci)
155{
156 u32 command;
157 u32 state;
Andiry Xuf370b992012-04-14 02:54:30 +0800158 int ret, i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700159
160 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpd3512f62009-07-27 12:03:50 -0700161 if ((state & STS_HALT) == 0) {
162 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
163 return 0;
164 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700165
166 xhci_dbg(xhci, "// Reset the HC\n");
167 command = xhci_readl(xhci, &xhci->op_regs->command);
168 command |= CMD_RESET;
169 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700170
Sarah Sharp2611bd12012-10-25 13:27:51 -0700171 ret = xhci_handshake(xhci, &xhci->op_regs->command,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700172 CMD_RESET, 0, 10 * 1000 * 1000);
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700173 if (ret)
174 return ret;
175
176 xhci_dbg(xhci, "Wait for controller to be ready for doorbell rings\n");
177 /*
178 * xHCI cannot write to any doorbells or operational registers other
179 * than status until the "Controller Not Ready" flag is cleared.
180 */
Sarah Sharp2611bd12012-10-25 13:27:51 -0700181 ret = xhci_handshake(xhci, &xhci->op_regs->status,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700182 STS_CNR, 0, 10 * 1000 * 1000);
Andiry Xuf370b992012-04-14 02:54:30 +0800183
184 for (i = 0; i < 2; ++i) {
185 xhci->bus_state[i].port_c_suspend = 0;
186 xhci->bus_state[i].suspended_ports = 0;
187 xhci->bus_state[i].resuming_ports = 0;
188 }
189
190 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700191}
192
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700193#ifdef CONFIG_PCI
194static int xhci_free_msi(struct xhci_hcd *xhci)
Dong Nguyen43b86af2010-07-21 16:56:08 -0700195{
196 int i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700197
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700198 if (!xhci->msix_entries)
199 return -EINVAL;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700200
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700201 for (i = 0; i < xhci->msix_count; i++)
202 if (xhci->msix_entries[i].vector)
203 free_irq(xhci->msix_entries[i].vector,
204 xhci_to_hcd(xhci));
205 return 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700206}
207
208/*
209 * Set up MSI
210 */
211static int xhci_setup_msi(struct xhci_hcd *xhci)
212{
213 int ret;
214 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
215
216 ret = pci_enable_msi(pdev);
217 if (ret) {
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800218 xhci_dbg(xhci, "failed to allocate MSI entry\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700219 return ret;
220 }
221
Alex Shi851ec162013-05-24 10:54:19 +0800222 ret = request_irq(pdev->irq, xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700223 0, "xhci_hcd", xhci_to_hcd(xhci));
224 if (ret) {
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800225 xhci_dbg(xhci, "disable MSI interrupt\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700226 pci_disable_msi(pdev);
227 }
228
229 return ret;
230}
231
232/*
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700233 * Free IRQs
234 * free all IRQs request
235 */
236static void xhci_free_irq(struct xhci_hcd *xhci)
237{
238 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
239 int ret;
240
241 /* return if using legacy interrupt */
Felipe Balbicd704692012-02-29 16:46:23 +0200242 if (xhci_to_hcd(xhci)->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700243 return;
244
245 ret = xhci_free_msi(xhci);
246 if (!ret)
247 return;
Felipe Balbicd704692012-02-29 16:46:23 +0200248 if (pdev->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700249 free_irq(pdev->irq, xhci_to_hcd(xhci));
250
251 return;
252}
253
254/*
Dong Nguyen43b86af2010-07-21 16:56:08 -0700255 * Set up MSI-X
256 */
257static int xhci_setup_msix(struct xhci_hcd *xhci)
258{
259 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800260 struct usb_hcd *hcd = xhci_to_hcd(xhci);
261 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700262
263 /*
264 * calculate number of msi-x vectors supported.
265 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
266 * with max number of interrupters based on the xhci HCSPARAMS1.
267 * - num_online_cpus: maximum msi-x vectors per CPUs core.
268 * Add additional 1 vector to ensure always available interrupt.
269 */
270 xhci->msix_count = min(num_online_cpus() + 1,
271 HCS_MAX_INTRS(xhci->hcs_params1));
272
273 xhci->msix_entries =
274 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
Greg Kroah-Hartman86871972010-11-11 09:41:02 -0800275 GFP_KERNEL);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700276 if (!xhci->msix_entries) {
277 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
278 return -ENOMEM;
279 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700280
281 for (i = 0; i < xhci->msix_count; i++) {
282 xhci->msix_entries[i].entry = i;
283 xhci->msix_entries[i].vector = 0;
284 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700285
286 ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count);
287 if (ret) {
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800288 xhci_dbg(xhci, "Failed to enable MSI-X\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700289 goto free_entries;
290 }
291
Dong Nguyen43b86af2010-07-21 16:56:08 -0700292 for (i = 0; i < xhci->msix_count; i++) {
293 ret = request_irq(xhci->msix_entries[i].vector,
Alex Shi851ec162013-05-24 10:54:19 +0800294 xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700295 0, "xhci_hcd", xhci_to_hcd(xhci));
296 if (ret)
297 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700298 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700299
Andiry Xu00292272010-12-27 17:39:02 +0800300 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700301 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700302
303disable_msix:
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800304 xhci_dbg(xhci, "disable MSI-X interrupt\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700305 xhci_free_irq(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700306 pci_disable_msix(pdev);
307free_entries:
308 kfree(xhci->msix_entries);
309 xhci->msix_entries = NULL;
310 return ret;
311}
312
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700313/* Free any IRQs and disable MSI-X */
314static void xhci_cleanup_msix(struct xhci_hcd *xhci)
315{
Andiry Xu00292272010-12-27 17:39:02 +0800316 struct usb_hcd *hcd = xhci_to_hcd(xhci);
317 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700318
Dong Nguyen43b86af2010-07-21 16:56:08 -0700319 xhci_free_irq(xhci);
320
321 if (xhci->msix_entries) {
322 pci_disable_msix(pdev);
323 kfree(xhci->msix_entries);
324 xhci->msix_entries = NULL;
325 } else {
326 pci_disable_msi(pdev);
327 }
328
Andiry Xu00292272010-12-27 17:39:02 +0800329 hcd->msix_enabled = 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700330 return;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700331}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700332
Olof Johanssond5c82fe2013-07-23 11:58:20 -0700333static void __maybe_unused xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700334{
335 int i;
336
337 if (xhci->msix_entries) {
338 for (i = 0; i < xhci->msix_count; i++)
339 synchronize_irq(xhci->msix_entries[i].vector);
340 }
341}
342
343static int xhci_try_enable_msi(struct usb_hcd *hcd)
344{
345 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
346 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
347 int ret;
348
349 /*
350 * Some Fresco Logic host controllers advertise MSI, but fail to
351 * generate interrupts. Don't even try to enable MSI.
352 */
353 if (xhci->quirks & XHCI_BROKEN_MSI)
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100354 goto legacy_irq;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700355
356 /* unregister the legacy interrupt */
357 if (hcd->irq)
358 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200359 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700360
361 ret = xhci_setup_msix(xhci);
362 if (ret)
363 /* fall back to msi*/
364 ret = xhci_setup_msi(xhci);
365
366 if (!ret)
Felipe Balbicd704692012-02-29 16:46:23 +0200367 /* hcd->irq is 0, we have MSI */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700368 return 0;
369
Sarah Sharp68d07f62012-02-13 16:25:57 -0800370 if (!pdev->irq) {
371 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
372 return -EINVAL;
373 }
374
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100375 legacy_irq:
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700376 /* fall back to legacy interrupt*/
377 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
378 hcd->irq_descr, hcd);
379 if (ret) {
380 xhci_err(xhci, "request interrupt %d failed\n",
381 pdev->irq);
382 return ret;
383 }
384 hcd->irq = pdev->irq;
385 return 0;
386}
387
388#else
389
390static int xhci_try_enable_msi(struct usb_hcd *hcd)
391{
392 return 0;
393}
394
395static void xhci_cleanup_msix(struct xhci_hcd *xhci)
396{
397}
398
399static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
400{
401}
402
403#endif
404
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500405static void compliance_mode_recovery(unsigned long arg)
406{
407 struct xhci_hcd *xhci;
408 struct usb_hcd *hcd;
409 u32 temp;
410 int i;
411
412 xhci = (struct xhci_hcd *)arg;
413
414 for (i = 0; i < xhci->num_usb3_ports; i++) {
415 temp = xhci_readl(xhci, xhci->usb3_ports[i]);
416 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
417 /*
418 * Compliance Mode Detected. Letting USB Core
419 * handle the Warm Reset
420 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300421 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
422 "Compliance mode detected->port %d",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500423 i + 1);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300424 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
425 "Attempting compliance mode recovery");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500426 hcd = xhci->shared_hcd;
427
428 if (hcd->state == HC_STATE_SUSPENDED)
429 usb_hcd_resume_root_hub(hcd);
430
431 usb_hcd_poll_rh_status(hcd);
432 }
433 }
434
435 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
436 mod_timer(&xhci->comp_mode_recovery_timer,
437 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
438}
439
440/*
441 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
442 * that causes ports behind that hardware to enter compliance mode sometimes.
443 * The quirk creates a timer that polls every 2 seconds the link state of
444 * each host controller's port and recovers it by issuing a Warm reset
445 * if Compliance mode is detected, otherwise the port will become "dead" (no
446 * device connections or disconnections will be detected anymore). Becasue no
447 * status event is generated when entering compliance mode (per xhci spec),
448 * this quirk is needed on systems that have the failing hardware installed.
449 */
450static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
451{
452 xhci->port_status_u0 = 0;
453 init_timer(&xhci->comp_mode_recovery_timer);
454
455 xhci->comp_mode_recovery_timer.data = (unsigned long) xhci;
456 xhci->comp_mode_recovery_timer.function = compliance_mode_recovery;
457 xhci->comp_mode_recovery_timer.expires = jiffies +
458 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
459
460 set_timer_slack(&xhci->comp_mode_recovery_timer,
461 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
462 add_timer(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300463 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
464 "Compliance mode recovery timer initialized");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500465}
466
467/*
468 * This function identifies the systems that have installed the SN65LVPE502CP
469 * USB3.0 re-driver and that need the Compliance Mode Quirk.
470 * Systems:
471 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
472 */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700473bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500474{
475 const char *dmi_product_name, *dmi_sys_vendor;
476
477 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
478 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530479 if (!dmi_product_name || !dmi_sys_vendor)
480 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500481
482 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
483 return false;
484
485 if (strstr(dmi_product_name, "Z420") ||
486 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500487 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600488 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500489 return true;
490
491 return false;
492}
493
494static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
495{
496 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
497}
498
499
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700500/*
501 * Initialize memory for HCD and xHC (one-time init).
502 *
503 * Program the PAGESIZE register, initialize the device context array, create
504 * device contexts (?), set up a command ring segment (or two?), create event
505 * ring (one for now).
506 */
507int xhci_init(struct usb_hcd *hcd)
508{
509 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
510 int retval = 0;
511
512 xhci_dbg(xhci, "xhci_init\n");
513 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700514 if (xhci->hci_version == 0x95 && link_quirk) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300515 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
516 "QUIRK: Not clearing Link TRB chain bits.");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700517 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
518 } else {
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700519 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700520 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700521 retval = xhci_mem_init(xhci, GFP_KERNEL);
522 xhci_dbg(xhci, "Finished xhci_init\n");
523
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500524 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700525 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500526 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
527 compliance_mode_recovery_timer_init(xhci);
528 }
529
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700530 return retval;
531}
532
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700533/*-------------------------------------------------------------------------*/
534
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700535
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800536static int xhci_run_finished(struct xhci_hcd *xhci)
537{
538 if (xhci_start(xhci)) {
539 xhci_halt(xhci);
540 return -ENODEV;
541 }
542 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800543 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800544
545 if (xhci->quirks & XHCI_NEC_HOST)
546 xhci_ring_cmd_db(xhci);
547
548 xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n");
549 return 0;
550}
551
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700552/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700553 * Start the HC after it was halted.
554 *
555 * This function is called by the USB core when the HC driver is added.
556 * Its opposite is xhci_stop().
557 *
558 * xhci_init() must be called once before this function can be called.
559 * Reset the HC, enable device slot contexts, program DCBAAP, and
560 * set command ring pointer and event ring pointer.
561 *
562 * Setup MSI-X vectors and enable interrupts.
563 */
564int xhci_run(struct usb_hcd *hcd)
565{
566 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700567 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700568 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700569 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700570
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800571 /* Start the xHCI host controller running only after the USB 2.0 roothub
572 * is setup.
573 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700574
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700575 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800576 if (!usb_hcd_is_primary_hcd(hcd))
577 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700578
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700579 xhci_dbg(xhci, "xhci_run\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700580
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700581 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700582 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700583 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700584
Sarah Sharp66e49d82009-07-27 12:03:46 -0700585 xhci_dbg(xhci, "Command ring memory map follows:\n");
586 xhci_debug_ring(xhci, xhci->cmd_ring);
587 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
588 xhci_dbg_cmd_ptrs(xhci);
589
590 xhci_dbg(xhci, "ERST memory map follows:\n");
591 xhci_dbg_erst(xhci, &xhci->erst);
592 xhci_dbg(xhci, "Event ring:\n");
593 xhci_debug_ring(xhci, xhci->event_ring);
594 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
595 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
596 temp_64 &= ~ERST_PTR_MASK;
597 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
598
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700599 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
600 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700601 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700602 temp |= (u32) 160;
603 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
604
605 /* Set the HCD state before we enable the irqs */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700606 temp = xhci_readl(xhci, &xhci->op_regs->command);
607 temp |= (CMD_EIE);
608 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
609 temp);
610 xhci_writel(xhci, temp, &xhci->op_regs->command);
611
612 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700613 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
614 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700615 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
616 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800617 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700618
Sarah Sharp02386342010-05-24 13:25:28 -0700619 if (xhci->quirks & XHCI_NEC_HOST)
620 xhci_queue_vendor_command(xhci, 0, 0, 0,
621 TRB_TYPE(TRB_NEC_GET_FW));
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700622
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800623 xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700624 return 0;
625}
626
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800627static void xhci_only_stop_hcd(struct usb_hcd *hcd)
628{
629 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
630
631 spin_lock_irq(&xhci->lock);
632 xhci_halt(xhci);
633
634 /* The shared_hcd is going to be deallocated shortly (the USB core only
635 * calls this function when allocation fails in usb_add_hcd(), or
636 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
637 */
638 xhci->shared_hcd = NULL;
639 spin_unlock_irq(&xhci->lock);
640}
641
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700642/*
643 * Stop xHCI driver.
644 *
645 * This function is called by the USB core when the HC driver is removed.
646 * Its opposite is xhci_run().
647 *
648 * Disable device contexts, disable IRQs, and quiesce the HC.
649 * Reset the HC, finish any completed transactions, and cleanup memory.
650 */
651void xhci_stop(struct usb_hcd *hcd)
652{
653 u32 temp;
654 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
655
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800656 if (!usb_hcd_is_primary_hcd(hcd)) {
657 xhci_only_stop_hcd(xhci->shared_hcd);
658 return;
659 }
660
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700661 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800662 /* Make sure the xHC is halted for a USB3 roothub
663 * (xhci_stop() could be called as part of failed init).
664 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700665 xhci_halt(xhci);
666 xhci_reset(xhci);
667 spin_unlock_irq(&xhci->lock);
668
Zhang Rui40a9fb12010-12-17 13:17:04 -0800669 xhci_cleanup_msix(xhci);
670
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500671 /* Deleting Compliance Mode Recovery Timer */
672 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400673 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500674 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300675 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
676 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400677 __func__);
678 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500679
Andiry Xuc41136b2011-03-22 17:08:14 +0800680 if (xhci->quirks & XHCI_AMD_PLL_FIX)
681 usb_amd_dev_put();
682
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700683 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
684 temp = xhci_readl(xhci, &xhci->op_regs->status);
685 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
686 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
687 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
688 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800689 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700690
691 xhci_dbg(xhci, "cleaning up memory\n");
692 xhci_mem_cleanup(xhci);
693 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
694 xhci_readl(xhci, &xhci->op_regs->status));
695}
696
697/*
698 * Shutdown HC (not bus-specific)
699 *
700 * This is called when the machine is rebooting or halting. We assume that the
701 * machine will be powered off, and the HC's internal state will be reset.
702 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800703 *
704 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700705 */
706void xhci_shutdown(struct usb_hcd *hcd)
707{
708 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
709
Dan Carpenter052c7f92012-08-13 19:57:03 +0300710 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Sarah Sharpe95829f2012-07-23 18:59:30 +0300711 usb_disable_xhci_ports(to_pci_dev(hcd->self.controller));
712
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700713 spin_lock_irq(&xhci->lock);
714 xhci_halt(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700715 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700716
Zhang Rui40a9fb12010-12-17 13:17:04 -0800717 xhci_cleanup_msix(xhci);
718
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700719 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
720 xhci_readl(xhci, &xhci->op_regs->status));
721}
722
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700723#ifdef CONFIG_PM
Andiry Xu5535b1d2010-10-14 07:23:06 -0700724static void xhci_save_registers(struct xhci_hcd *xhci)
725{
726 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
727 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
728 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
729 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700730 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
731 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
732 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700733 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
734 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700735}
736
737static void xhci_restore_registers(struct xhci_hcd *xhci)
738{
739 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
740 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
741 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
742 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700743 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
744 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
Sarah Sharpfb3d85b2012-03-16 13:27:39 -0700745 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700746 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
747 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700748}
749
Sarah Sharp89821322010-11-12 11:59:31 -0800750static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
751{
752 u64 val_64;
753
754 /* step 2: initialize command ring buffer */
755 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
756 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
757 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
758 xhci->cmd_ring->dequeue) &
759 (u64) ~CMD_RING_RSVD_BITS) |
760 xhci->cmd_ring->cycle_state;
761 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
762 (long unsigned long) val_64);
763 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
764}
765
766/*
767 * The whole command ring must be cleared to zero when we suspend the host.
768 *
769 * The host doesn't save the command ring pointer in the suspend well, so we
770 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
771 * aligned, because of the reserved bits in the command ring dequeue pointer
772 * register. Therefore, we can't just set the dequeue pointer back in the
773 * middle of the ring (TRBs are 16-byte aligned).
774 */
775static void xhci_clear_command_ring(struct xhci_hcd *xhci)
776{
777 struct xhci_ring *ring;
778 struct xhci_segment *seg;
779
780 ring = xhci->cmd_ring;
781 seg = ring->deq_seg;
782 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800783 memset(seg->trbs, 0,
784 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
785 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
786 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800787 seg = seg->next;
788 } while (seg != ring->deq_seg);
789
790 /* Reset the software enqueue and dequeue pointers */
791 ring->deq_seg = ring->first_seg;
792 ring->dequeue = ring->first_seg->trbs;
793 ring->enq_seg = ring->deq_seg;
794 ring->enqueue = ring->dequeue;
795
Andiry Xub008df62012-03-05 17:49:34 +0800796 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800797 /*
798 * Ring is now zeroed, so the HW should look for change of ownership
799 * when the cycle bit is set to 1.
800 */
801 ring->cycle_state = 1;
802
803 /*
804 * Reset the hardware dequeue pointer.
805 * Yes, this will need to be re-written after resume, but we're paranoid
806 * and want to make sure the hardware doesn't access bogus memory
807 * because, say, the BIOS or an SMI started the host without changing
808 * the command ring pointers.
809 */
810 xhci_set_cmd_ring_deq(xhci);
811}
812
Andiry Xu5535b1d2010-10-14 07:23:06 -0700813/*
814 * Stop HC (not bus-specific)
815 *
816 * This is called when the machine transition into S3/S4 mode.
817 *
818 */
819int xhci_suspend(struct xhci_hcd *xhci)
820{
821 int rc = 0;
822 struct usb_hcd *hcd = xhci_to_hcd(xhci);
823 u32 command;
824
Felipe Balbi77b84762012-10-19 10:55:16 +0300825 if (hcd->state != HC_STATE_SUSPENDED ||
826 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
827 return -EINVAL;
828
Sarah Sharpc52804a2012-11-27 12:30:23 -0800829 /* Don't poll the roothubs on bus suspend. */
830 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
831 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
832 del_timer_sync(&hcd->rh_timer);
833
Andiry Xu5535b1d2010-10-14 07:23:06 -0700834 spin_lock_irq(&xhci->lock);
835 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800836 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700837 /* step 1: stop endpoint */
838 /* skipped assuming that port suspend has done */
839
840 /* step 2: clear Run/Stop bit */
841 command = xhci_readl(xhci, &xhci->op_regs->command);
842 command &= ~CMD_RUN;
843 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700844 if (xhci_handshake(xhci, &xhci->op_regs->status,
Michael Spanga6e097d2012-09-14 13:05:49 -0400845 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC)) {
Andiry Xu5535b1d2010-10-14 07:23:06 -0700846 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
847 spin_unlock_irq(&xhci->lock);
848 return -ETIMEDOUT;
849 }
Sarah Sharp89821322010-11-12 11:59:31 -0800850 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700851
852 /* step 3: save registers */
853 xhci_save_registers(xhci);
854
855 /* step 4: set CSS flag */
856 command = xhci_readl(xhci, &xhci->op_regs->command);
857 command |= CMD_CSS;
858 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700859 if (xhci_handshake(xhci, &xhci->op_regs->status,
860 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800861 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d2010-10-14 07:23:06 -0700862 spin_unlock_irq(&xhci->lock);
863 return -ETIMEDOUT;
864 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700865 spin_unlock_irq(&xhci->lock);
866
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500867 /*
868 * Deleting Compliance Mode Recovery Timer because the xHCI Host
869 * is about to be suspended.
870 */
871 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
872 (!(xhci_all_ports_seen_u0(xhci)))) {
873 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300874 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
875 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400876 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500877 }
878
Andiry Xu00292272010-12-27 17:39:02 +0800879 /* step 5: remove core well power */
880 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700881 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800882
Andiry Xu5535b1d2010-10-14 07:23:06 -0700883 return rc;
884}
885
886/*
887 * start xHC (not bus-specific)
888 *
889 * This is called when the machine transition from S3/S4 mode.
890 *
891 */
892int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
893{
894 u32 command, temp = 0;
895 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800896 struct usb_hcd *secondary_hcd;
Alan Sternf69e3122011-11-03 11:37:10 -0400897 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500898 bool comp_timer_running = false;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700899
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800900 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300901 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800902 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800903 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
904 time_before(jiffies,
905 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d2010-10-14 07:23:06 -0700906 msleep(100);
907
Alan Sternf69e3122011-11-03 11:37:10 -0400908 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
909 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
910
Andiry Xu5535b1d2010-10-14 07:23:06 -0700911 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200912 if (xhci->quirks & XHCI_RESET_ON_RESUME)
913 hibernated = true;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700914
915 if (!hibernated) {
916 /* step 1: restore register */
917 xhci_restore_registers(xhci);
918 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800919 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700920 /* step 3: restore state and start state*/
921 /* step 3: set CRS flag */
922 command = xhci_readl(xhci, &xhci->op_regs->command);
923 command |= CMD_CRS;
924 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700925 if (xhci_handshake(xhci, &xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +0800926 STS_RESTORE, 0, 10 * 1000)) {
927 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d2010-10-14 07:23:06 -0700928 spin_unlock_irq(&xhci->lock);
929 return -ETIMEDOUT;
930 }
931 temp = xhci_readl(xhci, &xhci->op_regs->status);
932 }
933
934 /* If restore operation fails, re-initialize the HC during resume */
935 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -0500936
937 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
938 !(xhci_all_ports_seen_u0(xhci))) {
939 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300940 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
941 "Compliance Mode Recovery Timer deleted!");
Tony Camuso77df9e02013-02-21 16:11:27 -0500942 }
943
Sarah Sharpfedd3832011-04-12 17:43:19 -0700944 /* Let the USB core know _both_ roothubs lost power. */
945 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
946 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700947
948 xhci_dbg(xhci, "Stop HCD\n");
949 xhci_halt(xhci);
950 xhci_reset(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700951 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +0800952 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700953
Andiry Xu5535b1d2010-10-14 07:23:06 -0700954 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
955 temp = xhci_readl(xhci, &xhci->op_regs->status);
956 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
957 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
958 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
959 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800960 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700961
962 xhci_dbg(xhci, "cleaning up memory\n");
963 xhci_mem_cleanup(xhci);
964 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
965 xhci_readl(xhci, &xhci->op_regs->status));
966
Sarah Sharp65b22f92010-12-17 12:35:05 -0800967 /* USB core calls the PCI reinit and start functions twice:
968 * first with the primary HCD, and then with the secondary HCD.
969 * If we don't do the same, the host will never be started.
970 */
971 if (!usb_hcd_is_primary_hcd(hcd))
972 secondary_hcd = hcd;
973 else
974 secondary_hcd = xhci->shared_hcd;
975
976 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
977 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700978 if (retval)
979 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -0500980 comp_timer_running = true;
981
Sarah Sharp65b22f92010-12-17 12:35:05 -0800982 xhci_dbg(xhci, "Start the primary HCD\n");
983 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800984 if (!retval) {
Alan Sternf69e3122011-11-03 11:37:10 -0400985 xhci_dbg(xhci, "Start the secondary HCD\n");
986 retval = xhci_run(secondary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800987 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700988 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb3209372011-03-07 11:24:07 -0800989 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e3122011-11-03 11:37:10 -0400990 goto done;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700991 }
992
Andiry Xu5535b1d2010-10-14 07:23:06 -0700993 /* step 4: set Run/Stop bit */
994 command = xhci_readl(xhci, &xhci->op_regs->command);
995 command |= CMD_RUN;
996 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700997 xhci_handshake(xhci, &xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d2010-10-14 07:23:06 -0700998 0, 250 * 1000);
999
1000 /* step 5: walk topology and initialize portsc,
1001 * portpmsc and portli
1002 */
1003 /* this is done in bus_resume */
1004
1005 /* step 6: restart each of the previously
1006 * Running endpoints by ringing their doorbells
1007 */
1008
Andiry Xu5535b1d2010-10-14 07:23:06 -07001009 spin_unlock_irq(&xhci->lock);
Alan Sternf69e3122011-11-03 11:37:10 -04001010
1011 done:
1012 if (retval == 0) {
1013 usb_hcd_resume_root_hub(hcd);
1014 usb_hcd_resume_root_hub(xhci->shared_hcd);
1015 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001016
1017 /*
1018 * If system is subject to the Quirk, Compliance Mode Timer needs to
1019 * be re-initialized Always after a system resume. Ports are subject
1020 * to suffer the Compliance Mode issue again. It doesn't matter if
1021 * ports have entered previously to U0 before system's suspension.
1022 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001023 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001024 compliance_mode_recovery_timer_init(xhci);
1025
Sarah Sharpc52804a2012-11-27 12:30:23 -08001026 /* Re-enable port polling. */
1027 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
1028 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1029 usb_hcd_poll_rh_status(hcd);
1030
Alan Sternf69e3122011-11-03 11:37:10 -04001031 return retval;
Andiry Xu5535b1d2010-10-14 07:23:06 -07001032}
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001033#endif /* CONFIG_PM */
1034
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001035/*-------------------------------------------------------------------------*/
1036
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001037/**
1038 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1039 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1040 * value to right shift 1 for the bitmask.
1041 *
1042 * Index = (epnum * 2) + direction - 1,
1043 * where direction = 0 for OUT, 1 for IN.
1044 * For control endpoints, the IN index is used (OUT index is unused), so
1045 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1046 */
1047unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1048{
1049 unsigned int index;
1050 if (usb_endpoint_xfer_control(desc))
1051 index = (unsigned int) (usb_endpoint_num(desc)*2);
1052 else
1053 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1054 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1055 return index;
1056}
1057
Julius Werner01c5f442013-04-15 15:55:04 -07001058/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1059 * address from the XHCI endpoint index.
1060 */
1061unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1062{
1063 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1064 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1065 return direction | number;
1066}
1067
Sarah Sharpf94e01862009-04-27 19:58:38 -07001068/* Find the flag for this endpoint (for use in the control context). Use the
1069 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1070 * bit 1, etc.
1071 */
1072unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
1073{
1074 return 1 << (xhci_get_endpoint_index(desc) + 1);
1075}
1076
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001077/* Find the flag for this endpoint (for use in the control context). Use the
1078 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1079 * bit 1, etc.
1080 */
1081unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
1082{
1083 return 1 << (ep_index + 1);
1084}
1085
Sarah Sharpf94e01862009-04-27 19:58:38 -07001086/* Compute the last valid endpoint context index. Basically, this is the
1087 * endpoint index plus one. For slot contexts with more than valid endpoint,
1088 * we find the most significant bit set in the added contexts flags.
1089 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1090 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1091 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001092unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001093{
1094 return fls(added_ctxs) - 1;
1095}
1096
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001097/* Returns 1 if the arguments are OK;
1098 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1099 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001100static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001101 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1102 const char *func) {
1103 struct xhci_hcd *xhci;
1104 struct xhci_virt_device *virt_dev;
1105
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001106 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001107 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001108 return -EINVAL;
1109 }
1110 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001111 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001112 return 0;
1113 }
Andiry Xu64927732010-10-14 07:22:45 -07001114
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001115 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001116 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001117 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001118 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1119 func);
Andiry Xu64927732010-10-14 07:22:45 -07001120 return -EINVAL;
1121 }
1122
1123 virt_dev = xhci->devs[udev->slot_id];
1124 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001125 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001126 "virt_dev does not match\n", func);
1127 return -EINVAL;
1128 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001129 }
Andiry Xu64927732010-10-14 07:22:45 -07001130
Sarah Sharp203a8662013-07-24 10:27:13 -07001131 if (xhci->xhc_state & XHCI_STATE_HALTED)
1132 return -ENODEV;
1133
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001134 return 1;
1135}
1136
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001137static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001138 struct usb_device *udev, struct xhci_command *command,
1139 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001140
1141/*
1142 * Full speed devices may have a max packet size greater than 8 bytes, but the
1143 * USB core doesn't know that until it reads the first 8 bytes of the
1144 * descriptor. If the usb_device's max packet size changes after that point,
1145 * we need to issue an evaluate context command and wait on it.
1146 */
1147static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1148 unsigned int ep_index, struct urb *urb)
1149{
1150 struct xhci_container_ctx *in_ctx;
1151 struct xhci_container_ctx *out_ctx;
1152 struct xhci_input_control_ctx *ctrl_ctx;
1153 struct xhci_ep_ctx *ep_ctx;
1154 int max_packet_size;
1155 int hw_max_packet_size;
1156 int ret = 0;
1157
1158 out_ctx = xhci->devs[slot_id]->out_ctx;
1159 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001160 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001161 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001162 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001163 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1164 "Max Packet Size for ep 0 changed.");
1165 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1166 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001167 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001168 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1169 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001170 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001171 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1172 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001173
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001174 /* Set up the input context flags for the command */
1175 /* FIXME: This won't work if a non-default control endpoint
1176 * changes max packet sizes.
1177 */
Sarah Sharp92f8e762013-04-23 17:11:14 -07001178 in_ctx = xhci->devs[slot_id]->in_ctx;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001179 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001180 if (!ctrl_ctx) {
1181 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1182 __func__);
1183 return -ENOMEM;
1184 }
1185 /* Set up the modified control endpoint 0 */
1186 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1187 xhci->devs[slot_id]->out_ctx, ep_index);
1188
1189 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
1190 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1191 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1192
Matt Evans28ccd292011-03-29 13:40:46 +11001193 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001194 ctrl_ctx->drop_flags = 0;
1195
1196 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1197 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1198 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1199 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1200
Sarah Sharp913a8a32009-09-04 10:53:13 -07001201 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1202 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001203
1204 /* Clean up the input context for later use by bandwidth
1205 * functions.
1206 */
Matt Evans28ccd292011-03-29 13:40:46 +11001207 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001208 }
1209 return ret;
1210}
1211
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001212/*
1213 * non-error returns are a promise to giveback() the urb later
1214 * we drop ownership so next owner (or urb unlink) can get it
1215 */
1216int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1217{
1218 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001219 struct xhci_td *buffer;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001220 unsigned long flags;
1221 int ret = 0;
1222 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001223 struct urb_priv *urb_priv;
1224 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001225
Andiry Xu64927732010-10-14 07:22:45 -07001226 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1227 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001228 return -EINVAL;
1229
1230 slot_id = urb->dev->slot_id;
1231 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001232
Alan Stern541c7d42010-06-22 16:39:10 -04001233 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001234 if (!in_interrupt())
1235 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1236 ret = -ESHUTDOWN;
1237 goto exit;
1238 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001239
1240 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1241 size = urb->number_of_packets;
1242 else
1243 size = 1;
1244
1245 urb_priv = kzalloc(sizeof(struct urb_priv) +
1246 size * sizeof(struct xhci_td *), mem_flags);
1247 if (!urb_priv)
1248 return -ENOMEM;
1249
Andiry Xu2ffdea22011-09-02 11:05:57 -07001250 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1251 if (!buffer) {
1252 kfree(urb_priv);
1253 return -ENOMEM;
1254 }
1255
Andiry Xu8e51adc2010-07-22 15:23:31 -07001256 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001257 urb_priv->td[i] = buffer;
1258 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001259 }
1260
1261 urb_priv->length = size;
1262 urb_priv->td_cnt = 0;
1263 urb->hcpriv = urb_priv;
1264
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001265 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1266 /* Check to see if the max packet size for the default control
1267 * endpoint changed during FS device enumeration
1268 */
1269 if (urb->dev->speed == USB_SPEED_FULL) {
1270 ret = xhci_check_maxpacket(xhci, slot_id,
1271 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001272 if (ret < 0) {
1273 xhci_urb_free_priv(xhci, urb_priv);
1274 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001275 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001276 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001277 }
1278
Sarah Sharpb11069f2009-07-27 12:03:23 -07001279 /* We have a spinlock and interrupts disabled, so we must pass
1280 * atomic context to this function, which may allocate memory.
1281 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001282 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001283 if (xhci->xhc_state & XHCI_STATE_DYING)
1284 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001285 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001286 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001287 if (ret)
1288 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001289 spin_unlock_irqrestore(&xhci->lock, flags);
1290 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1291 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001292 if (xhci->xhc_state & XHCI_STATE_DYING)
1293 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001294 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1295 EP_GETTING_STREAMS) {
1296 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1297 "is transitioning to using streams.\n");
1298 ret = -EINVAL;
1299 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1300 EP_GETTING_NO_STREAMS) {
1301 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1302 "is transitioning to "
1303 "not having streams.\n");
1304 ret = -EINVAL;
1305 } else {
1306 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1307 slot_id, ep_index);
1308 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001309 if (ret)
1310 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001311 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001312 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1313 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001314 if (xhci->xhc_state & XHCI_STATE_DYING)
1315 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001316 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1317 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001318 if (ret)
1319 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001320 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001321 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001322 spin_lock_irqsave(&xhci->lock, flags);
1323 if (xhci->xhc_state & XHCI_STATE_DYING)
1324 goto dying;
1325 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1326 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001327 if (ret)
1328 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001329 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001330 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001331exit:
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001332 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001333dying:
1334 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1335 "non-responsive xHCI host.\n",
1336 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001337 ret = -ESHUTDOWN;
1338free_priv:
1339 xhci_urb_free_priv(xhci, urb_priv);
1340 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001341 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001342 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001343}
1344
Sarah Sharp021bff92010-07-29 22:12:20 -07001345/* Get the right ring for the given URB.
1346 * If the endpoint supports streams, boundary check the URB's stream ID.
1347 * If the endpoint doesn't support streams, return the singular endpoint ring.
1348 */
1349static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1350 struct urb *urb)
1351{
1352 unsigned int slot_id;
1353 unsigned int ep_index;
1354 unsigned int stream_id;
1355 struct xhci_virt_ep *ep;
1356
1357 slot_id = urb->dev->slot_id;
1358 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1359 stream_id = urb->stream_id;
1360 ep = &xhci->devs[slot_id]->eps[ep_index];
1361 /* Common case: no streams */
1362 if (!(ep->ep_state & EP_HAS_STREAMS))
1363 return ep->ring;
1364
1365 if (stream_id == 0) {
1366 xhci_warn(xhci,
1367 "WARN: Slot ID %u, ep index %u has streams, "
1368 "but URB has no stream ID.\n",
1369 slot_id, ep_index);
1370 return NULL;
1371 }
1372
1373 if (stream_id < ep->stream_info->num_streams)
1374 return ep->stream_info->stream_rings[stream_id];
1375
1376 xhci_warn(xhci,
1377 "WARN: Slot ID %u, ep index %u has "
1378 "stream IDs 1 to %u allocated, "
1379 "but stream ID %u is requested.\n",
1380 slot_id, ep_index,
1381 ep->stream_info->num_streams - 1,
1382 stream_id);
1383 return NULL;
1384}
1385
Sarah Sharpae636742009-04-29 19:02:31 -07001386/*
1387 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1388 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1389 * should pick up where it left off in the TD, unless a Set Transfer Ring
1390 * Dequeue Pointer is issued.
1391 *
1392 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1393 * the ring. Since the ring is a contiguous structure, they can't be physically
1394 * removed. Instead, there are two options:
1395 *
1396 * 1) If the HC is in the middle of processing the URB to be canceled, we
1397 * simply move the ring's dequeue pointer past those TRBs using the Set
1398 * Transfer Ring Dequeue Pointer command. This will be the common case,
1399 * when drivers timeout on the last submitted URB and attempt to cancel.
1400 *
1401 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1402 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1403 * HC will need to invalidate the any TRBs it has cached after the stop
1404 * endpoint command, as noted in the xHCI 0.95 errata.
1405 *
1406 * 3) The TD may have completed by the time the Stop Endpoint Command
1407 * completes, so software needs to handle that case too.
1408 *
1409 * This function should protect against the TD enqueueing code ringing the
1410 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1411 * It also needs to account for multiple cancellations on happening at the same
1412 * time for the same endpoint.
1413 *
1414 * Note that this function can be called in any context, or so says
1415 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001416 */
1417int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1418{
Sarah Sharpae636742009-04-29 19:02:31 -07001419 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001420 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001421 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001422 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001423 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001424 struct xhci_td *td;
1425 unsigned int ep_index;
1426 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001427 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07001428
1429 xhci = hcd_to_xhci(hcd);
1430 spin_lock_irqsave(&xhci->lock, flags);
1431 /* Make sure the URB hasn't completed or been unlinked already */
1432 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1433 if (ret || !urb->hcpriv)
1434 goto done;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001435 temp = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001436 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001437 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1438 "HW died, freeing TD.");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001439 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001440 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1441 td = urb_priv->td[i];
1442 if (!list_empty(&td->td_list))
1443 list_del_init(&td->td_list);
1444 if (!list_empty(&td->cancelled_td_list))
1445 list_del_init(&td->cancelled_td_list);
1446 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001447
1448 usb_hcd_unlink_urb_from_ep(hcd, urb);
1449 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001450 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001451 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001452 return ret;
1453 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001454 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1455 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001456 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1457 "Ep 0x%x: URB %p to be canceled on "
1458 "non-responsive xHCI host.",
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001459 urb->ep->desc.bEndpointAddress, urb);
1460 /* Let the stop endpoint command watchdog timer (which set this
1461 * state) finish cleaning up the endpoint TD lists. We must
1462 * have caught it in the middle of dropping a lock and giving
1463 * back an URB.
1464 */
1465 goto done;
1466 }
Sarah Sharpae636742009-04-29 19:02:31 -07001467
Sarah Sharpae636742009-04-29 19:02:31 -07001468 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001469 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001470 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1471 if (!ep_ring) {
1472 ret = -EINVAL;
1473 goto done;
1474 }
1475
Andiry Xu8e51adc2010-07-22 15:23:31 -07001476 urb_priv = urb->hcpriv;
Sarah Sharp79688ac2011-12-19 16:56:04 -08001477 i = urb_priv->td_cnt;
1478 if (i < urb_priv->length)
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001479 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1480 "Cancel URB %p, dev %s, ep 0x%x, "
1481 "starting at offset 0x%llx",
Sarah Sharp79688ac2011-12-19 16:56:04 -08001482 urb, urb->dev->devpath,
1483 urb->ep->desc.bEndpointAddress,
1484 (unsigned long long) xhci_trb_virt_to_dma(
1485 urb_priv->td[i]->start_seg,
1486 urb_priv->td[i]->first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001487
Sarah Sharp79688ac2011-12-19 16:56:04 -08001488 for (; i < urb_priv->length; i++) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001489 td = urb_priv->td[i];
1490 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1491 }
1492
Sarah Sharpae636742009-04-29 19:02:31 -07001493 /* Queue a stop endpoint command, but only if this is
1494 * the first cancellation to be handled.
1495 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001496 if (!(ep->ep_state & EP_HALT_PENDING)) {
1497 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001498 ep->stop_cmds_pending++;
1499 ep->stop_cmd_timer.expires = jiffies +
1500 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1501 add_timer(&ep->stop_cmd_timer);
Andiry Xube88fe42010-10-14 07:22:57 -07001502 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001503 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001504 }
1505done:
1506 spin_unlock_irqrestore(&xhci->lock, flags);
1507 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001508}
1509
Sarah Sharpf94e01862009-04-27 19:58:38 -07001510/* Drop an endpoint from a new bandwidth configuration for this device.
1511 * Only one call to this function is allowed per endpoint before
1512 * check_bandwidth() or reset_bandwidth() must be called.
1513 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1514 * add the endpoint to the schedule with possibly new parameters denoted by a
1515 * different endpoint descriptor in usb_host_endpoint.
1516 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1517 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001518 *
1519 * The USB core will not allow URBs to be queued to an endpoint that is being
1520 * disabled, so there's no need for mutual exclusion to protect
1521 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001522 */
1523int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1524 struct usb_host_endpoint *ep)
1525{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001526 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001527 struct xhci_container_ctx *in_ctx, *out_ctx;
1528 struct xhci_input_control_ctx *ctrl_ctx;
1529 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001530 unsigned int last_ctx;
1531 unsigned int ep_index;
1532 struct xhci_ep_ctx *ep_ctx;
1533 u32 drop_flag;
1534 u32 new_add_flags, new_drop_flags, new_slot_info;
1535 int ret;
1536
Andiry Xu64927732010-10-14 07:22:45 -07001537 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001538 if (ret <= 0)
1539 return ret;
1540 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001541 if (xhci->xhc_state & XHCI_STATE_DYING)
1542 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001543
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001544 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001545 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1546 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1547 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1548 __func__, drop_flag);
1549 return 0;
1550 }
1551
Sarah Sharpf94e01862009-04-27 19:58:38 -07001552 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001553 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1554 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001555 if (!ctrl_ctx) {
1556 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1557 __func__);
1558 return 0;
1559 }
1560
Sarah Sharpf94e01862009-04-27 19:58:38 -07001561 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001562 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001563 /* If the HC already knows the endpoint is disabled,
1564 * or the HCD has noted it is disabled, ignore this request
1565 */
Matt Evansf5960b62011-06-01 10:22:55 +10001566 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1567 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001568 le32_to_cpu(ctrl_ctx->drop_flags) &
1569 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001570 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1571 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001572 return 0;
1573 }
1574
Matt Evans28ccd292011-03-29 13:40:46 +11001575 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1576 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001577
Matt Evans28ccd292011-03-29 13:40:46 +11001578 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1579 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001580
Matt Evans28ccd292011-03-29 13:40:46 +11001581 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
John Yound115b042009-07-27 12:05:15 -07001582 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001583 /* Update the last valid endpoint context, if we deleted the last one */
Matt Evans28ccd292011-03-29 13:40:46 +11001584 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1585 LAST_CTX(last_ctx)) {
1586 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1587 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001588 }
Matt Evans28ccd292011-03-29 13:40:46 +11001589 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001590
1591 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1592
Sarah Sharpf94e01862009-04-27 19:58:38 -07001593 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1594 (unsigned int) ep->desc.bEndpointAddress,
1595 udev->slot_id,
1596 (unsigned int) new_drop_flags,
1597 (unsigned int) new_add_flags,
1598 (unsigned int) new_slot_info);
1599 return 0;
1600}
1601
1602/* Add an endpoint to a new possible bandwidth configuration for this device.
1603 * Only one call to this function is allowed per endpoint before
1604 * check_bandwidth() or reset_bandwidth() must be called.
1605 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1606 * add the endpoint to the schedule with possibly new parameters denoted by a
1607 * different endpoint descriptor in usb_host_endpoint.
1608 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1609 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001610 *
1611 * The USB core will not allow URBs to be queued to an endpoint until the
1612 * configuration or alt setting is installed in the device, so there's no need
1613 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001614 */
1615int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1616 struct usb_host_endpoint *ep)
1617{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001618 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001619 struct xhci_container_ctx *in_ctx, *out_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001620 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001621 struct xhci_slot_ctx *slot_ctx;
1622 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001623 u32 added_ctxs;
1624 unsigned int last_ctx;
1625 u32 new_add_flags, new_drop_flags, new_slot_info;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001626 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001627 int ret = 0;
1628
Andiry Xu64927732010-10-14 07:22:45 -07001629 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001630 if (ret <= 0) {
1631 /* So we won't queue a reset ep command for a root hub */
1632 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001633 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001634 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001635 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001636 if (xhci->xhc_state & XHCI_STATE_DYING)
1637 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001638
1639 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1640 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1641 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1642 /* FIXME when we have to issue an evaluate endpoint command to
1643 * deal with ep0 max packet size changing once we get the
1644 * descriptors
1645 */
1646 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1647 __func__, added_ctxs);
1648 return 0;
1649 }
1650
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001651 virt_dev = xhci->devs[udev->slot_id];
1652 in_ctx = virt_dev->in_ctx;
1653 out_ctx = virt_dev->out_ctx;
John Yound115b042009-07-27 12:05:15 -07001654 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001655 if (!ctrl_ctx) {
1656 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1657 __func__);
1658 return 0;
1659 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001660
Sarah Sharp92f8e762013-04-23 17:11:14 -07001661 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001662 /* If this endpoint is already in use, and the upper layers are trying
1663 * to add it again without dropping it, reject the addition.
1664 */
1665 if (virt_dev->eps[ep_index].ring &&
1666 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1667 xhci_get_endpoint_flag(&ep->desc))) {
1668 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1669 "without dropping it.\n",
1670 (unsigned int) ep->desc.bEndpointAddress);
1671 return -EINVAL;
1672 }
1673
Sarah Sharpf94e01862009-04-27 19:58:38 -07001674 /* If the HCD has already noted the endpoint is enabled,
1675 * ignore this request.
1676 */
Matt Evans28ccd292011-03-29 13:40:46 +11001677 if (le32_to_cpu(ctrl_ctx->add_flags) &
1678 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001679 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1680 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001681 return 0;
1682 }
1683
Sarah Sharpf88ba782009-05-14 11:44:22 -07001684 /*
1685 * Configuration and alternate setting changes must be done in
1686 * process context, not interrupt context (or so documenation
1687 * for usb_set_interface() and usb_set_configuration() claim).
1688 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001689 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001690 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1691 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001692 return -ENOMEM;
1693 }
1694
Matt Evans28ccd292011-03-29 13:40:46 +11001695 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1696 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001697
1698 /* If xhci_endpoint_disable() was called for this endpoint, but the
1699 * xHC hasn't been notified yet through the check_bandwidth() call,
1700 * this re-adds a new state for the endpoint from the new endpoint
1701 * descriptors. We must drop and re-add this endpoint, so we leave the
1702 * drop flags alone.
1703 */
Matt Evans28ccd292011-03-29 13:40:46 +11001704 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001705
John Yound115b042009-07-27 12:05:15 -07001706 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001707 /* Update the last valid endpoint context, if we just added one past */
Matt Evans28ccd292011-03-29 13:40:46 +11001708 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1709 LAST_CTX(last_ctx)) {
1710 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1711 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001712 }
Matt Evans28ccd292011-03-29 13:40:46 +11001713 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001714
Sarah Sharpa1587d92009-07-27 12:03:15 -07001715 /* Store the usb_device pointer for later use */
1716 ep->hcpriv = udev;
1717
Sarah Sharpf94e01862009-04-27 19:58:38 -07001718 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1719 (unsigned int) ep->desc.bEndpointAddress,
1720 udev->slot_id,
1721 (unsigned int) new_drop_flags,
1722 (unsigned int) new_add_flags,
1723 (unsigned int) new_slot_info);
1724 return 0;
1725}
1726
John Yound115b042009-07-27 12:05:15 -07001727static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001728{
John Yound115b042009-07-27 12:05:15 -07001729 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001730 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001731 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001732 int i;
1733
Sarah Sharp92f8e762013-04-23 17:11:14 -07001734 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1735 if (!ctrl_ctx) {
1736 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1737 __func__);
1738 return;
1739 }
1740
Sarah Sharpf94e01862009-04-27 19:58:38 -07001741 /* When a device's add flag and drop flag are zero, any subsequent
1742 * configure endpoint command will leave that endpoint's state
1743 * untouched. Make sure we don't leave any old state in the input
1744 * endpoint contexts.
1745 */
John Yound115b042009-07-27 12:05:15 -07001746 ctrl_ctx->drop_flags = 0;
1747 ctrl_ctx->add_flags = 0;
1748 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001749 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001750 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001751 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001752 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001753 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001754 ep_ctx->ep_info = 0;
1755 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001756 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001757 ep_ctx->tx_info = 0;
1758 }
1759}
1760
Sarah Sharpf2217e82009-08-07 14:04:43 -07001761static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001762 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001763{
1764 int ret;
1765
Sarah Sharp913a8a32009-09-04 10:53:13 -07001766 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001767 case COMP_ENOMEM:
1768 dev_warn(&udev->dev, "Not enough host controller resources "
1769 "for new device state.\n");
1770 ret = -ENOMEM;
1771 /* FIXME: can we allocate more resources for the HC? */
1772 break;
1773 case COMP_BW_ERR:
Hans de Goede71d85722012-01-04 23:29:18 +01001774 case COMP_2ND_BW_ERR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001775 dev_warn(&udev->dev, "Not enough bandwidth "
1776 "for new device state.\n");
1777 ret = -ENOSPC;
1778 /* FIXME: can we go back to the old state? */
1779 break;
1780 case COMP_TRB_ERR:
1781 /* the HCD set up something wrong */
1782 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1783 "add flag = 1, "
1784 "and endpoint is not disabled.\n");
1785 ret = -EINVAL;
1786 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001787 case COMP_DEV_ERR:
1788 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1789 "configure command.\n");
1790 ret = -ENODEV;
1791 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001792 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001793 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1794 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001795 ret = 0;
1796 break;
1797 default:
1798 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001799 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001800 ret = -EINVAL;
1801 break;
1802 }
1803 return ret;
1804}
1805
1806static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001807 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001808{
1809 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001810 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001811
Sarah Sharp913a8a32009-09-04 10:53:13 -07001812 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001813 case COMP_EINVAL:
1814 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1815 "context command.\n");
1816 ret = -EINVAL;
1817 break;
1818 case COMP_EBADSLT:
1819 dev_warn(&udev->dev, "WARN: slot not enabled for"
1820 "evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001821 ret = -EINVAL;
1822 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001823 case COMP_CTX_STATE:
1824 dev_warn(&udev->dev, "WARN: invalid context state for "
1825 "evaluate context command.\n");
1826 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1827 ret = -EINVAL;
1828 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001829 case COMP_DEV_ERR:
1830 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
1831 "context command.\n");
1832 ret = -ENODEV;
1833 break;
Alex He1bb73a82011-05-05 18:14:12 +08001834 case COMP_MEL_ERR:
1835 /* Max Exit Latency too large error */
1836 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1837 ret = -EINVAL;
1838 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001839 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001840 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1841 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001842 ret = 0;
1843 break;
1844 default:
1845 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001846 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001847 ret = -EINVAL;
1848 break;
1849 }
1850 return ret;
1851}
1852
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001853static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001854 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001855{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001856 u32 valid_add_flags;
1857 u32 valid_drop_flags;
1858
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001859 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1860 * (bit 1). The default control endpoint is added during the Address
1861 * Device command and is never removed until the slot is disabled.
1862 */
1863 valid_add_flags = ctrl_ctx->add_flags >> 2;
1864 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1865
1866 /* Use hweight32 to count the number of ones in the add flags, or
1867 * number of endpoints added. Don't count endpoints that are changed
1868 * (both added and dropped).
1869 */
1870 return hweight32(valid_add_flags) -
1871 hweight32(valid_add_flags & valid_drop_flags);
1872}
1873
1874static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001875 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001876{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001877 u32 valid_add_flags;
1878 u32 valid_drop_flags;
1879
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001880 valid_add_flags = ctrl_ctx->add_flags >> 2;
1881 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1882
1883 return hweight32(valid_drop_flags) -
1884 hweight32(valid_add_flags & valid_drop_flags);
1885}
1886
1887/*
1888 * We need to reserve the new number of endpoints before the configure endpoint
1889 * command completes. We can't subtract the dropped endpoints from the number
1890 * of active endpoints until the command completes because we can oversubscribe
1891 * the host in this case:
1892 *
1893 * - the first configure endpoint command drops more endpoints than it adds
1894 * - a second configure endpoint command that adds more endpoints is queued
1895 * - the first configure endpoint command fails, so the config is unchanged
1896 * - the second command may succeed, even though there isn't enough resources
1897 *
1898 * Must be called with xhci->lock held.
1899 */
1900static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001901 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001902{
1903 u32 added_eps;
1904
Sarah Sharp92f8e762013-04-23 17:11:14 -07001905 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001906 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001907 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1908 "Not enough ep ctxs: "
1909 "%u active, need to add %u, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001910 xhci->num_active_eps, added_eps,
1911 xhci->limit_active_eps);
1912 return -ENOMEM;
1913 }
1914 xhci->num_active_eps += added_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001915 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1916 "Adding %u ep ctxs, %u now active.", added_eps,
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001917 xhci->num_active_eps);
1918 return 0;
1919}
1920
1921/*
1922 * The configure endpoint was failed by the xHC for some other reason, so we
1923 * need to revert the resources that failed configuration would have used.
1924 *
1925 * Must be called with xhci->lock held.
1926 */
1927static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001928 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001929{
1930 u32 num_failed_eps;
1931
Sarah Sharp92f8e762013-04-23 17:11:14 -07001932 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001933 xhci->num_active_eps -= num_failed_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001934 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1935 "Removing %u failed ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001936 num_failed_eps,
1937 xhci->num_active_eps);
1938}
1939
1940/*
1941 * Now that the command has completed, clean up the active endpoint count by
1942 * subtracting out the endpoints that were dropped (but not changed).
1943 *
1944 * Must be called with xhci->lock held.
1945 */
1946static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001947 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001948{
1949 u32 num_dropped_eps;
1950
Sarah Sharp92f8e762013-04-23 17:11:14 -07001951 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001952 xhci->num_active_eps -= num_dropped_eps;
1953 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001954 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1955 "Removing %u dropped ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001956 num_dropped_eps,
1957 xhci->num_active_eps);
1958}
1959
Felipe Balbied384bd2012-08-07 14:10:03 +03001960static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001961{
1962 switch (udev->speed) {
1963 case USB_SPEED_LOW:
1964 case USB_SPEED_FULL:
1965 return FS_BLOCK;
1966 case USB_SPEED_HIGH:
1967 return HS_BLOCK;
1968 case USB_SPEED_SUPER:
1969 return SS_BLOCK;
1970 case USB_SPEED_UNKNOWN:
1971 case USB_SPEED_WIRELESS:
1972 default:
1973 /* Should never happen */
1974 return 1;
1975 }
1976}
1977
Felipe Balbied384bd2012-08-07 14:10:03 +03001978static unsigned int
1979xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001980{
1981 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1982 return LS_OVERHEAD;
1983 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1984 return FS_OVERHEAD;
1985 return HS_OVERHEAD;
1986}
1987
1988/* If we are changing a LS/FS device under a HS hub,
1989 * make sure (if we are activating a new TT) that the HS bus has enough
1990 * bandwidth for this new TT.
1991 */
1992static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
1993 struct xhci_virt_device *virt_dev,
1994 int old_active_eps)
1995{
1996 struct xhci_interval_bw_table *bw_table;
1997 struct xhci_tt_bw_info *tt_info;
1998
1999 /* Find the bandwidth table for the root port this TT is attached to. */
2000 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2001 tt_info = virt_dev->tt_info;
2002 /* If this TT already had active endpoints, the bandwidth for this TT
2003 * has already been added. Removing all periodic endpoints (and thus
2004 * making the TT enactive) will only decrease the bandwidth used.
2005 */
2006 if (old_active_eps)
2007 return 0;
2008 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2009 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2010 return -ENOMEM;
2011 return 0;
2012 }
2013 /* Not sure why we would have no new active endpoints...
2014 *
2015 * Maybe because of an Evaluate Context change for a hub update or a
2016 * control endpoint 0 max packet size change?
2017 * FIXME: skip the bandwidth calculation in that case.
2018 */
2019 return 0;
2020}
2021
Sarah Sharp2b698992011-09-13 16:41:13 -07002022static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2023 struct xhci_virt_device *virt_dev)
2024{
2025 unsigned int bw_reserved;
2026
2027 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2028 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2029 return -ENOMEM;
2030
2031 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2032 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2033 return -ENOMEM;
2034
2035 return 0;
2036}
2037
Sarah Sharpc29eea62011-09-02 11:05:52 -07002038/*
2039 * This algorithm is a very conservative estimate of the worst-case scheduling
2040 * scenario for any one interval. The hardware dynamically schedules the
2041 * packets, so we can't tell which microframe could be the limiting factor in
2042 * the bandwidth scheduling. This only takes into account periodic endpoints.
2043 *
2044 * Obviously, we can't solve an NP complete problem to find the minimum worst
2045 * case scenario. Instead, we come up with an estimate that is no less than
2046 * the worst case bandwidth used for any one microframe, but may be an
2047 * over-estimate.
2048 *
2049 * We walk the requirements for each endpoint by interval, starting with the
2050 * smallest interval, and place packets in the schedule where there is only one
2051 * possible way to schedule packets for that interval. In order to simplify
2052 * this algorithm, we record the largest max packet size for each interval, and
2053 * assume all packets will be that size.
2054 *
2055 * For interval 0, we obviously must schedule all packets for each interval.
2056 * The bandwidth for interval 0 is just the amount of data to be transmitted
2057 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2058 * the number of packets).
2059 *
2060 * For interval 1, we have two possible microframes to schedule those packets
2061 * in. For this algorithm, if we can schedule the same number of packets for
2062 * each possible scheduling opportunity (each microframe), we will do so. The
2063 * remaining number of packets will be saved to be transmitted in the gaps in
2064 * the next interval's scheduling sequence.
2065 *
2066 * As we move those remaining packets to be scheduled with interval 2 packets,
2067 * we have to double the number of remaining packets to transmit. This is
2068 * because the intervals are actually powers of 2, and we would be transmitting
2069 * the previous interval's packets twice in this interval. We also have to be
2070 * sure that when we look at the largest max packet size for this interval, we
2071 * also look at the largest max packet size for the remaining packets and take
2072 * the greater of the two.
2073 *
2074 * The algorithm continues to evenly distribute packets in each scheduling
2075 * opportunity, and push the remaining packets out, until we get to the last
2076 * interval. Then those packets and their associated overhead are just added
2077 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002078 */
2079static int xhci_check_bw_table(struct xhci_hcd *xhci,
2080 struct xhci_virt_device *virt_dev,
2081 int old_active_eps)
2082{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002083 unsigned int bw_reserved;
2084 unsigned int max_bandwidth;
2085 unsigned int bw_used;
2086 unsigned int block_size;
2087 struct xhci_interval_bw_table *bw_table;
2088 unsigned int packet_size = 0;
2089 unsigned int overhead = 0;
2090 unsigned int packets_transmitted = 0;
2091 unsigned int packets_remaining = 0;
2092 unsigned int i;
2093
Sarah Sharp2b698992011-09-13 16:41:13 -07002094 if (virt_dev->udev->speed == USB_SPEED_SUPER)
2095 return xhci_check_ss_bw(xhci, virt_dev);
2096
Sarah Sharpc29eea62011-09-02 11:05:52 -07002097 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2098 max_bandwidth = HS_BW_LIMIT;
2099 /* Convert percent of bus BW reserved to blocks reserved */
2100 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2101 } else {
2102 max_bandwidth = FS_BW_LIMIT;
2103 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2104 }
2105
2106 bw_table = virt_dev->bw_table;
2107 /* We need to translate the max packet size and max ESIT payloads into
2108 * the units the hardware uses.
2109 */
2110 block_size = xhci_get_block_size(virt_dev->udev);
2111
2112 /* If we are manipulating a LS/FS device under a HS hub, double check
2113 * that the HS bus has enough bandwidth if we are activing a new TT.
2114 */
2115 if (virt_dev->tt_info) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002116 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2117 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002118 virt_dev->real_port);
2119 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2120 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2121 "newly activated TT.\n");
2122 return -ENOMEM;
2123 }
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002124 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2125 "Recalculating BW for TT slot %u port %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002126 virt_dev->tt_info->slot_id,
2127 virt_dev->tt_info->ttport);
2128 } else {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002129 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2130 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002131 virt_dev->real_port);
2132 }
2133
2134 /* Add in how much bandwidth will be used for interval zero, or the
2135 * rounded max ESIT payload + number of packets * largest overhead.
2136 */
2137 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2138 bw_table->interval_bw[0].num_packets *
2139 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2140
2141 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2142 unsigned int bw_added;
2143 unsigned int largest_mps;
2144 unsigned int interval_overhead;
2145
2146 /*
2147 * How many packets could we transmit in this interval?
2148 * If packets didn't fit in the previous interval, we will need
2149 * to transmit that many packets twice within this interval.
2150 */
2151 packets_remaining = 2 * packets_remaining +
2152 bw_table->interval_bw[i].num_packets;
2153
2154 /* Find the largest max packet size of this or the previous
2155 * interval.
2156 */
2157 if (list_empty(&bw_table->interval_bw[i].endpoints))
2158 largest_mps = 0;
2159 else {
2160 struct xhci_virt_ep *virt_ep;
2161 struct list_head *ep_entry;
2162
2163 ep_entry = bw_table->interval_bw[i].endpoints.next;
2164 virt_ep = list_entry(ep_entry,
2165 struct xhci_virt_ep, bw_endpoint_list);
2166 /* Convert to blocks, rounding up */
2167 largest_mps = DIV_ROUND_UP(
2168 virt_ep->bw_info.max_packet_size,
2169 block_size);
2170 }
2171 if (largest_mps > packet_size)
2172 packet_size = largest_mps;
2173
2174 /* Use the larger overhead of this or the previous interval. */
2175 interval_overhead = xhci_get_largest_overhead(
2176 &bw_table->interval_bw[i]);
2177 if (interval_overhead > overhead)
2178 overhead = interval_overhead;
2179
2180 /* How many packets can we evenly distribute across
2181 * (1 << (i + 1)) possible scheduling opportunities?
2182 */
2183 packets_transmitted = packets_remaining >> (i + 1);
2184
2185 /* Add in the bandwidth used for those scheduled packets */
2186 bw_added = packets_transmitted * (overhead + packet_size);
2187
2188 /* How many packets do we have remaining to transmit? */
2189 packets_remaining = packets_remaining % (1 << (i + 1));
2190
2191 /* What largest max packet size should those packets have? */
2192 /* If we've transmitted all packets, don't carry over the
2193 * largest packet size.
2194 */
2195 if (packets_remaining == 0) {
2196 packet_size = 0;
2197 overhead = 0;
2198 } else if (packets_transmitted > 0) {
2199 /* Otherwise if we do have remaining packets, and we've
2200 * scheduled some packets in this interval, take the
2201 * largest max packet size from endpoints with this
2202 * interval.
2203 */
2204 packet_size = largest_mps;
2205 overhead = interval_overhead;
2206 }
2207 /* Otherwise carry over packet_size and overhead from the last
2208 * time we had a remainder.
2209 */
2210 bw_used += bw_added;
2211 if (bw_used > max_bandwidth) {
2212 xhci_warn(xhci, "Not enough bandwidth. "
2213 "Proposed: %u, Max: %u\n",
2214 bw_used, max_bandwidth);
2215 return -ENOMEM;
2216 }
2217 }
2218 /*
2219 * Ok, we know we have some packets left over after even-handedly
2220 * scheduling interval 15. We don't know which microframes they will
2221 * fit into, so we over-schedule and say they will be scheduled every
2222 * microframe.
2223 */
2224 if (packets_remaining > 0)
2225 bw_used += overhead + packet_size;
2226
2227 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2228 unsigned int port_index = virt_dev->real_port - 1;
2229
2230 /* OK, we're manipulating a HS device attached to a
2231 * root port bandwidth domain. Include the number of active TTs
2232 * in the bandwidth used.
2233 */
2234 bw_used += TT_HS_OVERHEAD *
2235 xhci->rh_bw[port_index].num_active_tts;
2236 }
2237
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002238 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2239 "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2240 "Available: %u " "percent",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002241 bw_used, max_bandwidth, bw_reserved,
2242 (max_bandwidth - bw_used - bw_reserved) * 100 /
2243 max_bandwidth);
2244
2245 bw_used += bw_reserved;
2246 if (bw_used > max_bandwidth) {
2247 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2248 bw_used, max_bandwidth);
2249 return -ENOMEM;
2250 }
2251
2252 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002253 return 0;
2254}
2255
2256static bool xhci_is_async_ep(unsigned int ep_type)
2257{
2258 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2259 ep_type != ISOC_IN_EP &&
2260 ep_type != INT_IN_EP);
2261}
2262
Sarah Sharp2b698992011-09-13 16:41:13 -07002263static bool xhci_is_sync_in_ep(unsigned int ep_type)
2264{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002265 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002266}
2267
2268static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2269{
2270 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2271
2272 if (ep_bw->ep_interval == 0)
2273 return SS_OVERHEAD_BURST +
2274 (ep_bw->mult * ep_bw->num_packets *
2275 (SS_OVERHEAD + mps));
2276 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2277 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2278 1 << ep_bw->ep_interval);
2279
2280}
2281
Sarah Sharp2e279802011-09-02 11:05:50 -07002282void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2283 struct xhci_bw_info *ep_bw,
2284 struct xhci_interval_bw_table *bw_table,
2285 struct usb_device *udev,
2286 struct xhci_virt_ep *virt_ep,
2287 struct xhci_tt_bw_info *tt_info)
2288{
2289 struct xhci_interval_bw *interval_bw;
2290 int normalized_interval;
2291
Sarah Sharp2b698992011-09-13 16:41:13 -07002292 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002293 return;
2294
Sarah Sharp2b698992011-09-13 16:41:13 -07002295 if (udev->speed == USB_SPEED_SUPER) {
2296 if (xhci_is_sync_in_ep(ep_bw->type))
2297 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2298 xhci_get_ss_bw_consumed(ep_bw);
2299 else
2300 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2301 xhci_get_ss_bw_consumed(ep_bw);
2302 return;
2303 }
2304
2305 /* SuperSpeed endpoints never get added to intervals in the table, so
2306 * this check is only valid for HS/FS/LS devices.
2307 */
2308 if (list_empty(&virt_ep->bw_endpoint_list))
2309 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002310 /* For LS/FS devices, we need to translate the interval expressed in
2311 * microframes to frames.
2312 */
2313 if (udev->speed == USB_SPEED_HIGH)
2314 normalized_interval = ep_bw->ep_interval;
2315 else
2316 normalized_interval = ep_bw->ep_interval - 3;
2317
2318 if (normalized_interval == 0)
2319 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2320 interval_bw = &bw_table->interval_bw[normalized_interval];
2321 interval_bw->num_packets -= ep_bw->num_packets;
2322 switch (udev->speed) {
2323 case USB_SPEED_LOW:
2324 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2325 break;
2326 case USB_SPEED_FULL:
2327 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2328 break;
2329 case USB_SPEED_HIGH:
2330 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2331 break;
2332 case USB_SPEED_SUPER:
2333 case USB_SPEED_UNKNOWN:
2334 case USB_SPEED_WIRELESS:
2335 /* Should never happen because only LS/FS/HS endpoints will get
2336 * added to the endpoint list.
2337 */
2338 return;
2339 }
2340 if (tt_info)
2341 tt_info->active_eps -= 1;
2342 list_del_init(&virt_ep->bw_endpoint_list);
2343}
2344
2345static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2346 struct xhci_bw_info *ep_bw,
2347 struct xhci_interval_bw_table *bw_table,
2348 struct usb_device *udev,
2349 struct xhci_virt_ep *virt_ep,
2350 struct xhci_tt_bw_info *tt_info)
2351{
2352 struct xhci_interval_bw *interval_bw;
2353 struct xhci_virt_ep *smaller_ep;
2354 int normalized_interval;
2355
2356 if (xhci_is_async_ep(ep_bw->type))
2357 return;
2358
Sarah Sharp2b698992011-09-13 16:41:13 -07002359 if (udev->speed == USB_SPEED_SUPER) {
2360 if (xhci_is_sync_in_ep(ep_bw->type))
2361 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2362 xhci_get_ss_bw_consumed(ep_bw);
2363 else
2364 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2365 xhci_get_ss_bw_consumed(ep_bw);
2366 return;
2367 }
2368
Sarah Sharp2e279802011-09-02 11:05:50 -07002369 /* For LS/FS devices, we need to translate the interval expressed in
2370 * microframes to frames.
2371 */
2372 if (udev->speed == USB_SPEED_HIGH)
2373 normalized_interval = ep_bw->ep_interval;
2374 else
2375 normalized_interval = ep_bw->ep_interval - 3;
2376
2377 if (normalized_interval == 0)
2378 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2379 interval_bw = &bw_table->interval_bw[normalized_interval];
2380 interval_bw->num_packets += ep_bw->num_packets;
2381 switch (udev->speed) {
2382 case USB_SPEED_LOW:
2383 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2384 break;
2385 case USB_SPEED_FULL:
2386 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2387 break;
2388 case USB_SPEED_HIGH:
2389 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2390 break;
2391 case USB_SPEED_SUPER:
2392 case USB_SPEED_UNKNOWN:
2393 case USB_SPEED_WIRELESS:
2394 /* Should never happen because only LS/FS/HS endpoints will get
2395 * added to the endpoint list.
2396 */
2397 return;
2398 }
2399
2400 if (tt_info)
2401 tt_info->active_eps += 1;
2402 /* Insert the endpoint into the list, largest max packet size first. */
2403 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2404 bw_endpoint_list) {
2405 if (ep_bw->max_packet_size >=
2406 smaller_ep->bw_info.max_packet_size) {
2407 /* Add the new ep before the smaller endpoint */
2408 list_add_tail(&virt_ep->bw_endpoint_list,
2409 &smaller_ep->bw_endpoint_list);
2410 return;
2411 }
2412 }
2413 /* Add the new endpoint at the end of the list. */
2414 list_add_tail(&virt_ep->bw_endpoint_list,
2415 &interval_bw->endpoints);
2416}
2417
2418void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2419 struct xhci_virt_device *virt_dev,
2420 int old_active_eps)
2421{
2422 struct xhci_root_port_bw_info *rh_bw_info;
2423 if (!virt_dev->tt_info)
2424 return;
2425
2426 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2427 if (old_active_eps == 0 &&
2428 virt_dev->tt_info->active_eps != 0) {
2429 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002430 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002431 } else if (old_active_eps != 0 &&
2432 virt_dev->tt_info->active_eps == 0) {
2433 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002434 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002435 }
2436}
2437
2438static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2439 struct xhci_virt_device *virt_dev,
2440 struct xhci_container_ctx *in_ctx)
2441{
2442 struct xhci_bw_info ep_bw_info[31];
2443 int i;
2444 struct xhci_input_control_ctx *ctrl_ctx;
2445 int old_active_eps = 0;
2446
Sarah Sharp2e279802011-09-02 11:05:50 -07002447 if (virt_dev->tt_info)
2448 old_active_eps = virt_dev->tt_info->active_eps;
2449
2450 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002451 if (!ctrl_ctx) {
2452 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2453 __func__);
2454 return -ENOMEM;
2455 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002456
2457 for (i = 0; i < 31; i++) {
2458 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2459 continue;
2460
2461 /* Make a copy of the BW info in case we need to revert this */
2462 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2463 sizeof(ep_bw_info[i]));
2464 /* Drop the endpoint from the interval table if the endpoint is
2465 * being dropped or changed.
2466 */
2467 if (EP_IS_DROPPED(ctrl_ctx, i))
2468 xhci_drop_ep_from_interval_table(xhci,
2469 &virt_dev->eps[i].bw_info,
2470 virt_dev->bw_table,
2471 virt_dev->udev,
2472 &virt_dev->eps[i],
2473 virt_dev->tt_info);
2474 }
2475 /* Overwrite the information stored in the endpoints' bw_info */
2476 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2477 for (i = 0; i < 31; i++) {
2478 /* Add any changed or added endpoints to the interval table */
2479 if (EP_IS_ADDED(ctrl_ctx, i))
2480 xhci_add_ep_to_interval_table(xhci,
2481 &virt_dev->eps[i].bw_info,
2482 virt_dev->bw_table,
2483 virt_dev->udev,
2484 &virt_dev->eps[i],
2485 virt_dev->tt_info);
2486 }
2487
2488 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2489 /* Ok, this fits in the bandwidth we have.
2490 * Update the number of active TTs.
2491 */
2492 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2493 return 0;
2494 }
2495
2496 /* We don't have enough bandwidth for this, revert the stored info. */
2497 for (i = 0; i < 31; i++) {
2498 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2499 continue;
2500
2501 /* Drop the new copies of any added or changed endpoints from
2502 * the interval table.
2503 */
2504 if (EP_IS_ADDED(ctrl_ctx, i)) {
2505 xhci_drop_ep_from_interval_table(xhci,
2506 &virt_dev->eps[i].bw_info,
2507 virt_dev->bw_table,
2508 virt_dev->udev,
2509 &virt_dev->eps[i],
2510 virt_dev->tt_info);
2511 }
2512 /* Revert the endpoint back to its old information */
2513 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2514 sizeof(ep_bw_info[i]));
2515 /* Add any changed or dropped endpoints back into the table */
2516 if (EP_IS_DROPPED(ctrl_ctx, i))
2517 xhci_add_ep_to_interval_table(xhci,
2518 &virt_dev->eps[i].bw_info,
2519 virt_dev->bw_table,
2520 virt_dev->udev,
2521 &virt_dev->eps[i],
2522 virt_dev->tt_info);
2523 }
2524 return -ENOMEM;
2525}
2526
2527
Sarah Sharpf2217e82009-08-07 14:04:43 -07002528/* Issue a configure endpoint command or evaluate context command
2529 * and wait for it to finish.
2530 */
2531static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002532 struct usb_device *udev,
2533 struct xhci_command *command,
2534 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002535{
2536 int ret;
2537 int timeleft;
2538 unsigned long flags;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002539 struct xhci_container_ctx *in_ctx;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002540 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002541 struct completion *cmd_completion;
Matt Evans28ccd292011-03-29 13:40:46 +11002542 u32 *cmd_status;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002543 struct xhci_virt_device *virt_dev;
Elric Fu6e4468b2012-06-27 16:31:52 +08002544 union xhci_trb *cmd_trb;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002545
2546 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002547 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002548
Sarah Sharp750645f2011-09-02 11:05:43 -07002549 if (command)
2550 in_ctx = command->in_ctx;
2551 else
2552 in_ctx = virt_dev->in_ctx;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002553 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2554 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002555 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002556 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2557 __func__);
2558 return -ENOMEM;
2559 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002560
2561 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002562 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002563 spin_unlock_irqrestore(&xhci->lock, flags);
2564 xhci_warn(xhci, "Not enough host resources, "
2565 "active endpoint contexts = %u\n",
2566 xhci->num_active_eps);
2567 return -ENOMEM;
2568 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002569 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2570 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2571 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002572 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002573 spin_unlock_irqrestore(&xhci->lock, flags);
2574 xhci_warn(xhci, "Not enough bandwidth\n");
2575 return -ENOMEM;
2576 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002577
2578 if (command) {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002579 cmd_completion = command->completion;
2580 cmd_status = &command->status;
2581 command->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002582
2583 /* Enqueue pointer can be left pointing to the link TRB,
2584 * we must handle that
2585 */
Matt Evansf5960b62011-06-01 10:22:55 +10002586 if (TRB_TYPE_LINK_LE32(command->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002587 command->command_trb =
2588 xhci->cmd_ring->enq_seg->next->trbs;
2589
Sarah Sharp913a8a32009-09-04 10:53:13 -07002590 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2591 } else {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002592 cmd_completion = &virt_dev->cmd_completion;
2593 cmd_status = &virt_dev->cmd_status;
2594 }
Andiry Xu1d680642010-03-12 17:10:04 +08002595 init_completion(cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002596
Elric Fu6e4468b2012-06-27 16:31:52 +08002597 cmd_trb = xhci->cmd_ring->dequeue;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002598 if (!ctx_change)
Sarah Sharp913a8a32009-09-04 10:53:13 -07002599 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2600 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002601 else
Sarah Sharp913a8a32009-09-04 10:53:13 -07002602 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002603 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002604 if (ret < 0) {
Sarah Sharpc01591b2009-12-09 15:58:58 -08002605 if (command)
2606 list_del(&command->cmd_list);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002607 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002608 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002609 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002610 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2611 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002612 return -ENOMEM;
2613 }
2614 xhci_ring_cmd_db(xhci);
2615 spin_unlock_irqrestore(&xhci->lock, flags);
2616
2617 /* Wait for the configure endpoint command to complete */
2618 timeleft = wait_for_completion_interruptible_timeout(
Sarah Sharp913a8a32009-09-04 10:53:13 -07002619 cmd_completion,
Elric Fu6e4468b2012-06-27 16:31:52 +08002620 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002621 if (timeleft <= 0) {
2622 xhci_warn(xhci, "%s while waiting for %s command\n",
2623 timeleft == 0 ? "Timeout" : "Signal",
2624 ctx_change == 0 ?
2625 "configure endpoint" :
2626 "evaluate context");
Elric Fu6e4468b2012-06-27 16:31:52 +08002627 /* cancel the configure endpoint command */
2628 ret = xhci_cancel_cmd(xhci, command, cmd_trb);
2629 if (ret < 0)
2630 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002631 return -ETIME;
2632 }
2633
2634 if (!ctx_change)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002635 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2636 else
2637 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2638
2639 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2640 spin_lock_irqsave(&xhci->lock, flags);
2641 /* If the command failed, remove the reserved resources.
2642 * Otherwise, clean up the estimate to include dropped eps.
2643 */
2644 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002645 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002646 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002647 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002648 spin_unlock_irqrestore(&xhci->lock, flags);
2649 }
2650 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002651}
2652
Sarah Sharpf88ba782009-05-14 11:44:22 -07002653/* Called after one or more calls to xhci_add_endpoint() or
2654 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2655 * to call xhci_reset_bandwidth().
2656 *
2657 * Since we are in the middle of changing either configuration or
2658 * installing a new alt setting, the USB core won't allow URBs to be
2659 * enqueued for any endpoint on the old config or interface. Nothing
2660 * else should be touching the xhci->devs[slot_id] structure, so we
2661 * don't need to take the xhci->lock for manipulating that.
2662 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002663int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2664{
2665 int i;
2666 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002667 struct xhci_hcd *xhci;
2668 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002669 struct xhci_input_control_ctx *ctrl_ctx;
2670 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002671
Andiry Xu64927732010-10-14 07:22:45 -07002672 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002673 if (ret <= 0)
2674 return ret;
2675 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002676 if (xhci->xhc_state & XHCI_STATE_DYING)
2677 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002678
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002679 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002680 virt_dev = xhci->devs[udev->slot_id];
2681
2682 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
John Yound115b042009-07-27 12:05:15 -07002683 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002684 if (!ctrl_ctx) {
2685 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2686 __func__);
2687 return -ENOMEM;
2688 }
Matt Evans28ccd292011-03-29 13:40:46 +11002689 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2690 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2691 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002692
2693 /* Don't issue the command if there's no endpoints to update. */
2694 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2695 ctrl_ctx->drop_flags == 0)
2696 return 0;
2697
Sarah Sharpf94e01862009-04-27 19:58:38 -07002698 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002699 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2700 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002701 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002702
Sarah Sharp913a8a32009-09-04 10:53:13 -07002703 ret = xhci_configure_endpoint(xhci, udev, NULL,
2704 false, false);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002705 if (ret) {
2706 /* Callee should call reset_bandwidth() */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002707 return ret;
2708 }
2709
2710 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002711 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002712 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002713
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002714 /* Free any rings that were dropped, but not changed. */
2715 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002716 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2717 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002718 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2719 }
John Yound115b042009-07-27 12:05:15 -07002720 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002721 /*
2722 * Install any rings for completely new endpoints or changed endpoints,
2723 * and free or cache any old rings from changed endpoints.
2724 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002725 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002726 if (!virt_dev->eps[i].new_ring)
2727 continue;
2728 /* Only cache or free the old ring if it exists.
2729 * It may not if this is the first add of an endpoint.
2730 */
2731 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002732 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002733 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002734 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2735 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002736 }
2737
Sarah Sharpf94e01862009-04-27 19:58:38 -07002738 return ret;
2739}
2740
2741void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2742{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002743 struct xhci_hcd *xhci;
2744 struct xhci_virt_device *virt_dev;
2745 int i, ret;
2746
Andiry Xu64927732010-10-14 07:22:45 -07002747 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002748 if (ret <= 0)
2749 return;
2750 xhci = hcd_to_xhci(hcd);
2751
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002752 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002753 virt_dev = xhci->devs[udev->slot_id];
2754 /* Free any rings allocated for added endpoints */
2755 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002756 if (virt_dev->eps[i].new_ring) {
2757 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2758 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002759 }
2760 }
John Yound115b042009-07-27 12:05:15 -07002761 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002762}
2763
Sarah Sharp5270b952009-09-04 10:53:11 -07002764static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002765 struct xhci_container_ctx *in_ctx,
2766 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002767 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002768 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002769{
Matt Evans28ccd292011-03-29 13:40:46 +11002770 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2771 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002772 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002773 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002774
Sarah Sharp913a8a32009-09-04 10:53:13 -07002775 xhci_dbg(xhci, "Input Context:\n");
2776 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002777}
2778
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002779static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002780 unsigned int slot_id, unsigned int ep_index,
2781 struct xhci_dequeue_state *deq_state)
2782{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002783 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002784 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002785 struct xhci_ep_ctx *ep_ctx;
2786 u32 added_ctxs;
2787 dma_addr_t addr;
2788
Sarah Sharp92f8e762013-04-23 17:11:14 -07002789 in_ctx = xhci->devs[slot_id]->in_ctx;
2790 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2791 if (!ctrl_ctx) {
2792 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2793 __func__);
2794 return;
2795 }
2796
Sarah Sharp913a8a32009-09-04 10:53:13 -07002797 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2798 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002799 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2800 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2801 deq_state->new_deq_ptr);
2802 if (addr == 0) {
2803 xhci_warn(xhci, "WARN Cannot submit config ep after "
2804 "reset ep command\n");
2805 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2806 deq_state->new_deq_seg,
2807 deq_state->new_deq_ptr);
2808 return;
2809 }
Matt Evans28ccd292011-03-29 13:40:46 +11002810 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002811
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002812 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002813 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002814 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2815 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002816}
2817
Sarah Sharp82d10092009-08-07 14:04:52 -07002818void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002819 struct usb_device *udev, unsigned int ep_index)
Sarah Sharp82d10092009-08-07 14:04:52 -07002820{
2821 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002822 struct xhci_virt_ep *ep;
Sarah Sharp82d10092009-08-07 14:04:52 -07002823
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002824 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2825 "Cleaning up stalled endpoint ring");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002826 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002827 /* We need to move the HW's dequeue pointer past this TD,
2828 * or it will attempt to resend it on the next doorbell ring.
2829 */
2830 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002831 ep_index, ep->stopped_stream, ep->stopped_td,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002832 &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002833
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002834 /* HW with the reset endpoint quirk will use the saved dequeue state to
2835 * issue a configure endpoint command later.
2836 */
2837 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002838 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2839 "Queueing new dequeue state");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002840 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002841 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002842 } else {
2843 /* Better hope no one uses the input context between now and the
2844 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002845 * XXX: No idea how this hardware will react when stream rings
2846 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002847 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002848 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2849 "Setting up input context for "
2850 "configure endpoint command");
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002851 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2852 ep_index, &deq_state);
2853 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002854}
2855
Sarah Sharpa1587d92009-07-27 12:03:15 -07002856/* Deal with stalled endpoints. The core should have sent the control message
2857 * to clear the halt condition. However, we need to make the xHCI hardware
2858 * reset its sequence number, since a device will expect a sequence number of
2859 * zero after the halt condition is cleared.
2860 * Context: in_interrupt
2861 */
2862void xhci_endpoint_reset(struct usb_hcd *hcd,
2863 struct usb_host_endpoint *ep)
2864{
2865 struct xhci_hcd *xhci;
2866 struct usb_device *udev;
2867 unsigned int ep_index;
2868 unsigned long flags;
2869 int ret;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002870 struct xhci_virt_ep *virt_ep;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002871
2872 xhci = hcd_to_xhci(hcd);
2873 udev = (struct usb_device *) ep->hcpriv;
2874 /* Called with a root hub endpoint (or an endpoint that wasn't added
2875 * with xhci_add_endpoint()
2876 */
2877 if (!ep->hcpriv)
2878 return;
2879 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002880 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
2881 if (!virt_ep->stopped_td) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002882 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2883 "Endpoint 0x%x not halted, refusing to reset.",
2884 ep->desc.bEndpointAddress);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002885 return;
2886 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002887 if (usb_endpoint_xfer_control(&ep->desc)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002888 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2889 "Control endpoint stall already handled.");
Sarah Sharp82d10092009-08-07 14:04:52 -07002890 return;
2891 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07002892
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002893 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2894 "Queueing reset endpoint command");
Sarah Sharpa1587d92009-07-27 12:03:15 -07002895 spin_lock_irqsave(&xhci->lock, flags);
2896 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002897 /*
2898 * Can't change the ring dequeue pointer until it's transitioned to the
2899 * stopped state, which is only upon a successful reset endpoint
2900 * command. Better hope that last command worked!
2901 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002902 if (!ret) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002903 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
2904 kfree(virt_ep->stopped_td);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002905 xhci_ring_cmd_db(xhci);
2906 }
Sarah Sharp1624ae12010-05-06 13:40:08 -07002907 virt_ep->stopped_td = NULL;
2908 virt_ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07002909 virt_ep->stopped_stream = 0;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002910 spin_unlock_irqrestore(&xhci->lock, flags);
2911
2912 if (ret)
2913 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
2914}
2915
Sarah Sharp8df75f42010-04-02 15:34:16 -07002916static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2917 struct usb_device *udev, struct usb_host_endpoint *ep,
2918 unsigned int slot_id)
2919{
2920 int ret;
2921 unsigned int ep_index;
2922 unsigned int ep_state;
2923
2924 if (!ep)
2925 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002926 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002927 if (ret <= 0)
2928 return -EINVAL;
Alan Stern842f1692010-04-30 12:44:46 -04002929 if (ep->ss_ep_comp.bmAttributes == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002930 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2931 " descriptor for ep 0x%x does not support streams\n",
2932 ep->desc.bEndpointAddress);
2933 return -EINVAL;
2934 }
2935
2936 ep_index = xhci_get_endpoint_index(&ep->desc);
2937 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2938 if (ep_state & EP_HAS_STREAMS ||
2939 ep_state & EP_GETTING_STREAMS) {
2940 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2941 "already has streams set up.\n",
2942 ep->desc.bEndpointAddress);
2943 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2944 "dynamic stream context array reallocation.\n");
2945 return -EINVAL;
2946 }
2947 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2948 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2949 "endpoint 0x%x; URBs are pending.\n",
2950 ep->desc.bEndpointAddress);
2951 return -EINVAL;
2952 }
2953 return 0;
2954}
2955
2956static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2957 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2958{
2959 unsigned int max_streams;
2960
2961 /* The stream context array size must be a power of two */
2962 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2963 /*
2964 * Find out how many primary stream array entries the host controller
2965 * supports. Later we may use secondary stream arrays (similar to 2nd
2966 * level page entries), but that's an optional feature for xHCI host
2967 * controllers. xHCs must support at least 4 stream IDs.
2968 */
2969 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2970 if (*num_stream_ctxs > max_streams) {
2971 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2972 max_streams);
2973 *num_stream_ctxs = max_streams;
2974 *num_streams = max_streams;
2975 }
2976}
2977
2978/* Returns an error code if one of the endpoint already has streams.
2979 * This does not change any data structures, it only checks and gathers
2980 * information.
2981 */
2982static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2983 struct usb_device *udev,
2984 struct usb_host_endpoint **eps, unsigned int num_eps,
2985 unsigned int *num_streams, u32 *changed_ep_bitmask)
2986{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002987 unsigned int max_streams;
2988 unsigned int endpoint_flag;
2989 int i;
2990 int ret;
2991
2992 for (i = 0; i < num_eps; i++) {
2993 ret = xhci_check_streams_endpoint(xhci, udev,
2994 eps[i], udev->slot_id);
2995 if (ret < 0)
2996 return ret;
2997
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002998 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002999 if (max_streams < (*num_streams - 1)) {
3000 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
3001 eps[i]->desc.bEndpointAddress,
3002 max_streams);
3003 *num_streams = max_streams+1;
3004 }
3005
3006 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
3007 if (*changed_ep_bitmask & endpoint_flag)
3008 return -EINVAL;
3009 *changed_ep_bitmask |= endpoint_flag;
3010 }
3011 return 0;
3012}
3013
3014static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
3015 struct usb_device *udev,
3016 struct usb_host_endpoint **eps, unsigned int num_eps)
3017{
3018 u32 changed_ep_bitmask = 0;
3019 unsigned int slot_id;
3020 unsigned int ep_index;
3021 unsigned int ep_state;
3022 int i;
3023
3024 slot_id = udev->slot_id;
3025 if (!xhci->devs[slot_id])
3026 return 0;
3027
3028 for (i = 0; i < num_eps; i++) {
3029 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3030 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3031 /* Are streams already being freed for the endpoint? */
3032 if (ep_state & EP_GETTING_NO_STREAMS) {
3033 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003034 "endpoint 0x%x, "
3035 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003036 eps[i]->desc.bEndpointAddress);
3037 return 0;
3038 }
3039 /* Are there actually any streams to free? */
3040 if (!(ep_state & EP_HAS_STREAMS) &&
3041 !(ep_state & EP_GETTING_STREAMS)) {
3042 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003043 "endpoint 0x%x, "
3044 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003045 eps[i]->desc.bEndpointAddress);
3046 xhci_warn(xhci, "WARN xhci_free_streams() called "
3047 "with non-streams endpoint\n");
3048 return 0;
3049 }
3050 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3051 }
3052 return changed_ep_bitmask;
3053}
3054
3055/*
3056 * The USB device drivers use this function (though the HCD interface in USB
3057 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3058 * coordinate mass storage command queueing across multiple endpoints (basically
3059 * a stream ID == a task ID).
3060 *
3061 * Setting up streams involves allocating the same size stream context array
3062 * for each endpoint and issuing a configure endpoint command for all endpoints.
3063 *
3064 * Don't allow the call to succeed if one endpoint only supports one stream
3065 * (which means it doesn't support streams at all).
3066 *
3067 * Drivers may get less stream IDs than they asked for, if the host controller
3068 * hardware or endpoints claim they can't support the number of requested
3069 * stream IDs.
3070 */
3071int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
3072 struct usb_host_endpoint **eps, unsigned int num_eps,
3073 unsigned int num_streams, gfp_t mem_flags)
3074{
3075 int i, ret;
3076 struct xhci_hcd *xhci;
3077 struct xhci_virt_device *vdev;
3078 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003079 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003080 unsigned int ep_index;
3081 unsigned int num_stream_ctxs;
3082 unsigned long flags;
3083 u32 changed_ep_bitmask = 0;
3084
3085 if (!eps)
3086 return -EINVAL;
3087
3088 /* Add one to the number of streams requested to account for
3089 * stream 0 that is reserved for xHCI usage.
3090 */
3091 num_streams += 1;
3092 xhci = hcd_to_xhci(hcd);
3093 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3094 num_streams);
3095
3096 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
3097 if (!config_cmd) {
3098 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3099 return -ENOMEM;
3100 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07003101 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
3102 if (!ctrl_ctx) {
3103 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3104 __func__);
3105 xhci_free_command(xhci, config_cmd);
3106 return -ENOMEM;
3107 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003108
3109 /* Check to make sure all endpoints are not already configured for
3110 * streams. While we're at it, find the maximum number of streams that
3111 * all the endpoints will support and check for duplicate endpoints.
3112 */
3113 spin_lock_irqsave(&xhci->lock, flags);
3114 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3115 num_eps, &num_streams, &changed_ep_bitmask);
3116 if (ret < 0) {
3117 xhci_free_command(xhci, config_cmd);
3118 spin_unlock_irqrestore(&xhci->lock, flags);
3119 return ret;
3120 }
3121 if (num_streams <= 1) {
3122 xhci_warn(xhci, "WARN: endpoints can't handle "
3123 "more than one stream.\n");
3124 xhci_free_command(xhci, config_cmd);
3125 spin_unlock_irqrestore(&xhci->lock, flags);
3126 return -EINVAL;
3127 }
3128 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003129 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003130 * xhci_urb_enqueue() will reject all URBs.
3131 */
3132 for (i = 0; i < num_eps; i++) {
3133 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3134 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3135 }
3136 spin_unlock_irqrestore(&xhci->lock, flags);
3137
3138 /* Setup internal data structures and allocate HW data structures for
3139 * streams (but don't install the HW structures in the input context
3140 * until we're sure all memory allocation succeeded).
3141 */
3142 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3143 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3144 num_stream_ctxs, num_streams);
3145
3146 for (i = 0; i < num_eps; i++) {
3147 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3148 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3149 num_stream_ctxs,
3150 num_streams, mem_flags);
3151 if (!vdev->eps[ep_index].stream_info)
3152 goto cleanup;
3153 /* Set maxPstreams in endpoint context and update deq ptr to
3154 * point to stream context array. FIXME
3155 */
3156 }
3157
3158 /* Set up the input context for a configure endpoint command. */
3159 for (i = 0; i < num_eps; i++) {
3160 struct xhci_ep_ctx *ep_ctx;
3161
3162 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3163 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3164
3165 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3166 vdev->out_ctx, ep_index);
3167 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3168 vdev->eps[ep_index].stream_info);
3169 }
3170 /* Tell the HW to drop its old copy of the endpoint context info
3171 * and add the updated copy from the input context.
3172 */
3173 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003174 vdev->out_ctx, ctrl_ctx,
3175 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003176
3177 /* Issue and wait for the configure endpoint command */
3178 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3179 false, false);
3180
3181 /* xHC rejected the configure endpoint command for some reason, so we
3182 * leave the old ring intact and free our internal streams data
3183 * structure.
3184 */
3185 if (ret < 0)
3186 goto cleanup;
3187
3188 spin_lock_irqsave(&xhci->lock, flags);
3189 for (i = 0; i < num_eps; i++) {
3190 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3191 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3192 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3193 udev->slot_id, ep_index);
3194 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3195 }
3196 xhci_free_command(xhci, config_cmd);
3197 spin_unlock_irqrestore(&xhci->lock, flags);
3198
3199 /* Subtract 1 for stream 0, which drivers can't use */
3200 return num_streams - 1;
3201
3202cleanup:
3203 /* If it didn't work, free the streams! */
3204 for (i = 0; i < num_eps; i++) {
3205 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3206 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003207 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003208 /* FIXME Unset maxPstreams in endpoint context and
3209 * update deq ptr to point to normal string ring.
3210 */
3211 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3212 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3213 xhci_endpoint_zero(xhci, vdev, eps[i]);
3214 }
3215 xhci_free_command(xhci, config_cmd);
3216 return -ENOMEM;
3217}
3218
3219/* Transition the endpoint from using streams to being a "normal" endpoint
3220 * without streams.
3221 *
3222 * Modify the endpoint context state, submit a configure endpoint command,
3223 * and free all endpoint rings for streams if that completes successfully.
3224 */
3225int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3226 struct usb_host_endpoint **eps, unsigned int num_eps,
3227 gfp_t mem_flags)
3228{
3229 int i, ret;
3230 struct xhci_hcd *xhci;
3231 struct xhci_virt_device *vdev;
3232 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003233 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003234 unsigned int ep_index;
3235 unsigned long flags;
3236 u32 changed_ep_bitmask;
3237
3238 xhci = hcd_to_xhci(hcd);
3239 vdev = xhci->devs[udev->slot_id];
3240
3241 /* Set up a configure endpoint command to remove the streams rings */
3242 spin_lock_irqsave(&xhci->lock, flags);
3243 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3244 udev, eps, num_eps);
3245 if (changed_ep_bitmask == 0) {
3246 spin_unlock_irqrestore(&xhci->lock, flags);
3247 return -EINVAL;
3248 }
3249
3250 /* Use the xhci_command structure from the first endpoint. We may have
3251 * allocated too many, but the driver may call xhci_free_streams() for
3252 * each endpoint it grouped into one call to xhci_alloc_streams().
3253 */
3254 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3255 command = vdev->eps[ep_index].stream_info->free_streams_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003256 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3257 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003258 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003259 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3260 __func__);
3261 return -EINVAL;
3262 }
3263
Sarah Sharp8df75f42010-04-02 15:34:16 -07003264 for (i = 0; i < num_eps; i++) {
3265 struct xhci_ep_ctx *ep_ctx;
3266
3267 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3268 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3269 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3270 EP_GETTING_NO_STREAMS;
3271
3272 xhci_endpoint_copy(xhci, command->in_ctx,
3273 vdev->out_ctx, ep_index);
3274 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3275 &vdev->eps[ep_index]);
3276 }
3277 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003278 vdev->out_ctx, ctrl_ctx,
3279 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003280 spin_unlock_irqrestore(&xhci->lock, flags);
3281
3282 /* Issue and wait for the configure endpoint command,
3283 * which must succeed.
3284 */
3285 ret = xhci_configure_endpoint(xhci, udev, command,
3286 false, true);
3287
3288 /* xHC rejected the configure endpoint command for some reason, so we
3289 * leave the streams rings intact.
3290 */
3291 if (ret < 0)
3292 return ret;
3293
3294 spin_lock_irqsave(&xhci->lock, flags);
3295 for (i = 0; i < num_eps; i++) {
3296 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3297 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003298 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003299 /* FIXME Unset maxPstreams in endpoint context and
3300 * update deq ptr to point to normal string ring.
3301 */
3302 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3303 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3304 }
3305 spin_unlock_irqrestore(&xhci->lock, flags);
3306
3307 return 0;
3308}
3309
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003310/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003311 * Deletes endpoint resources for endpoints that were active before a Reset
3312 * Device command, or a Disable Slot command. The Reset Device command leaves
3313 * the control endpoint intact, whereas the Disable Slot command deletes it.
3314 *
3315 * Must be called with xhci->lock held.
3316 */
3317void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3318 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3319{
3320 int i;
3321 unsigned int num_dropped_eps = 0;
3322 unsigned int drop_flags = 0;
3323
3324 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3325 if (virt_dev->eps[i].ring) {
3326 drop_flags |= 1 << i;
3327 num_dropped_eps++;
3328 }
3329 }
3330 xhci->num_active_eps -= num_dropped_eps;
3331 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003332 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3333 "Dropped %u ep ctxs, flags = 0x%x, "
3334 "%u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003335 num_dropped_eps, drop_flags,
3336 xhci->num_active_eps);
3337}
3338
3339/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003340 * This submits a Reset Device Command, which will set the device state to 0,
3341 * set the device address to 0, and disable all the endpoints except the default
3342 * control endpoint. The USB core should come back and call
3343 * xhci_address_device(), and then re-set up the configuration. If this is
3344 * called because of a usb_reset_and_verify_device(), then the old alternate
3345 * settings will be re-installed through the normal bandwidth allocation
3346 * functions.
3347 *
3348 * Wait for the Reset Device command to finish. Remove all structures
3349 * associated with the endpoints that were disabled. Clear the input device
3350 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003351 *
3352 * If the virt_dev to be reset does not exist or does not match the udev,
3353 * it means the device is lost, possibly due to the xHC restore error and
3354 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3355 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003356 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003357int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003358{
3359 int ret, i;
3360 unsigned long flags;
3361 struct xhci_hcd *xhci;
3362 unsigned int slot_id;
3363 struct xhci_virt_device *virt_dev;
3364 struct xhci_command *reset_device_cmd;
3365 int timeleft;
3366 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003367 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003368 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003369
Andiry Xuf0615c42010-10-14 07:22:48 -07003370 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003371 if (ret <= 0)
3372 return ret;
3373 xhci = hcd_to_xhci(hcd);
3374 slot_id = udev->slot_id;
3375 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003376 if (!virt_dev) {
3377 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3378 "not exist. Re-allocate the device\n", slot_id);
3379 ret = xhci_alloc_dev(hcd, udev);
3380 if (ret == 1)
3381 return 0;
3382 else
3383 return -EINVAL;
3384 }
3385
3386 if (virt_dev->udev != udev) {
3387 /* If the virt_dev and the udev does not match, this virt_dev
3388 * may belong to another udev.
3389 * Re-allocate the device.
3390 */
3391 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3392 "not match the udev. Re-allocate the device\n",
3393 slot_id);
3394 ret = xhci_alloc_dev(hcd, udev);
3395 if (ret == 1)
3396 return 0;
3397 else
3398 return -EINVAL;
3399 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003400
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003401 /* If device is not setup, there is no point in resetting it */
3402 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3403 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3404 SLOT_STATE_DISABLED)
3405 return 0;
3406
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003407 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3408 /* Allocate the command structure that holds the struct completion.
3409 * Assume we're in process context, since the normal device reset
3410 * process has to wait for the device anyway. Storage devices are
3411 * reset as part of error handling, so use GFP_NOIO instead of
3412 * GFP_KERNEL.
3413 */
3414 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3415 if (!reset_device_cmd) {
3416 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3417 return -ENOMEM;
3418 }
3419
3420 /* Attempt to submit the Reset Device command to the command ring */
3421 spin_lock_irqsave(&xhci->lock, flags);
3422 reset_device_cmd->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003423
3424 /* Enqueue pointer can be left pointing to the link TRB,
3425 * we must handle that
3426 */
Matt Evansf5960b62011-06-01 10:22:55 +10003427 if (TRB_TYPE_LINK_LE32(reset_device_cmd->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003428 reset_device_cmd->command_trb =
3429 xhci->cmd_ring->enq_seg->next->trbs;
3430
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003431 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3432 ret = xhci_queue_reset_device(xhci, slot_id);
3433 if (ret) {
3434 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3435 list_del(&reset_device_cmd->cmd_list);
3436 spin_unlock_irqrestore(&xhci->lock, flags);
3437 goto command_cleanup;
3438 }
3439 xhci_ring_cmd_db(xhci);
3440 spin_unlock_irqrestore(&xhci->lock, flags);
3441
3442 /* Wait for the Reset Device command to finish */
3443 timeleft = wait_for_completion_interruptible_timeout(
3444 reset_device_cmd->completion,
3445 USB_CTRL_SET_TIMEOUT);
3446 if (timeleft <= 0) {
3447 xhci_warn(xhci, "%s while waiting for reset device command\n",
3448 timeleft == 0 ? "Timeout" : "Signal");
3449 spin_lock_irqsave(&xhci->lock, flags);
3450 /* The timeout might have raced with the event ring handler, so
3451 * only delete from the list if the item isn't poisoned.
3452 */
3453 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3454 list_del(&reset_device_cmd->cmd_list);
3455 spin_unlock_irqrestore(&xhci->lock, flags);
3456 ret = -ETIME;
3457 goto command_cleanup;
3458 }
3459
3460 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3461 * unless we tried to reset a slot ID that wasn't enabled,
3462 * or the device wasn't in the addressed or configured state.
3463 */
3464 ret = reset_device_cmd->status;
3465 switch (ret) {
3466 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3467 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003468 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003469 slot_id,
3470 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003471 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003472 /* Don't treat this as an error. May change my mind later. */
3473 ret = 0;
3474 goto command_cleanup;
3475 case COMP_SUCCESS:
3476 xhci_dbg(xhci, "Successful reset device command.\n");
3477 break;
3478 default:
3479 if (xhci_is_vendor_info_code(xhci, ret))
3480 break;
3481 xhci_warn(xhci, "Unknown completion code %u for "
3482 "reset device command.\n", ret);
3483 ret = -EINVAL;
3484 goto command_cleanup;
3485 }
3486
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003487 /* Free up host controller endpoint resources */
3488 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3489 spin_lock_irqsave(&xhci->lock, flags);
3490 /* Don't delete the default control endpoint resources */
3491 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3492 spin_unlock_irqrestore(&xhci->lock, flags);
3493 }
3494
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003495 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3496 last_freed_endpoint = 1;
3497 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003498 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3499
3500 if (ep->ep_state & EP_HAS_STREAMS) {
3501 xhci_free_stream_info(xhci, ep->stream_info);
3502 ep->stream_info = NULL;
3503 ep->ep_state &= ~EP_HAS_STREAMS;
3504 }
3505
3506 if (ep->ring) {
3507 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3508 last_freed_endpoint = i;
3509 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003510 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3511 xhci_drop_ep_from_interval_table(xhci,
3512 &virt_dev->eps[i].bw_info,
3513 virt_dev->bw_table,
3514 udev,
3515 &virt_dev->eps[i],
3516 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003517 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003518 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003519 /* If necessary, update the number of active TTs on this root port */
3520 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3521
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003522 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3523 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3524 ret = 0;
3525
3526command_cleanup:
3527 xhci_free_command(xhci, reset_device_cmd);
3528 return ret;
3529}
3530
3531/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003532 * At this point, the struct usb_device is about to go away, the device has
3533 * disconnected, and all traffic has been stopped and the endpoints have been
3534 * disabled. Free any HC data structures associated with that device.
3535 */
3536void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3537{
3538 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003539 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003540 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003541 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003542 int i, ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003543
Andiry Xu64927732010-10-14 07:22:45 -07003544 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003545 /* If the host is halted due to driver unload, we still need to free the
3546 * device.
3547 */
3548 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003549 return;
Andiry Xu64927732010-10-14 07:22:45 -07003550
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003551 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003552
3553 /* Stop any wayward timer functions (which may grab the lock) */
3554 for (i = 0; i < 31; ++i) {
3555 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3556 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3557 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003558
Andiry Xu65580b432011-09-23 14:19:52 -07003559 if (udev->usb2_hw_lpm_enabled) {
3560 xhci_set_usb2_hardware_lpm(hcd, udev, 0);
3561 udev->usb2_hw_lpm_enabled = 0;
3562 }
3563
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003564 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003565 /* Don't disable the slot if the host controller is dead. */
3566 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003567 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3568 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003569 xhci_free_virt_device(xhci, udev->slot_id);
3570 spin_unlock_irqrestore(&xhci->lock, flags);
3571 return;
3572 }
3573
Sarah Sharp23e3be12009-04-29 19:05:20 -07003574 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003575 spin_unlock_irqrestore(&xhci->lock, flags);
3576 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3577 return;
3578 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003579 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003580 spin_unlock_irqrestore(&xhci->lock, flags);
3581 /*
3582 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003583 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003584 */
3585}
3586
3587/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003588 * Checks if we have enough host controller resources for the default control
3589 * endpoint.
3590 *
3591 * Must be called with xhci->lock held.
3592 */
3593static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3594{
3595 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003596 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3597 "Not enough ep ctxs: "
3598 "%u active, need to add 1, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003599 xhci->num_active_eps, xhci->limit_active_eps);
3600 return -ENOMEM;
3601 }
3602 xhci->num_active_eps += 1;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003603 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3604 "Adding 1 ep ctx, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003605 xhci->num_active_eps);
3606 return 0;
3607}
3608
3609
3610/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003611 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3612 * timed out, or allocating memory failed. Returns 1 on success.
3613 */
3614int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3615{
3616 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3617 unsigned long flags;
3618 int timeleft;
3619 int ret;
Elric Fu6e4468b2012-06-27 16:31:52 +08003620 union xhci_trb *cmd_trb;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003621
3622 spin_lock_irqsave(&xhci->lock, flags);
Elric Fu6e4468b2012-06-27 16:31:52 +08003623 cmd_trb = xhci->cmd_ring->dequeue;
Sarah Sharp23e3be12009-04-29 19:05:20 -07003624 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003625 if (ret) {
3626 spin_unlock_irqrestore(&xhci->lock, flags);
3627 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3628 return 0;
3629 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003630 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003631 spin_unlock_irqrestore(&xhci->lock, flags);
3632
3633 /* XXX: how much time for xHC slot assignment? */
3634 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Elric Fu6e4468b2012-06-27 16:31:52 +08003635 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003636 if (timeleft <= 0) {
3637 xhci_warn(xhci, "%s while waiting for a slot\n",
3638 timeleft == 0 ? "Timeout" : "Signal");
Elric Fu6e4468b2012-06-27 16:31:52 +08003639 /* cancel the enable slot request */
3640 return xhci_cancel_cmd(xhci, NULL, cmd_trb);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003641 }
3642
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003643 if (!xhci->slot_id) {
3644 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003645 return 0;
3646 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003647
3648 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3649 spin_lock_irqsave(&xhci->lock, flags);
3650 ret = xhci_reserve_host_control_ep_resources(xhci);
3651 if (ret) {
3652 spin_unlock_irqrestore(&xhci->lock, flags);
3653 xhci_warn(xhci, "Not enough host resources, "
3654 "active endpoint contexts = %u\n",
3655 xhci->num_active_eps);
3656 goto disable_slot;
3657 }
3658 spin_unlock_irqrestore(&xhci->lock, flags);
3659 }
3660 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003661 * xhci_discover_or_reset_device(), which may be called as part of
3662 * mass storage driver error handling.
3663 */
3664 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003665 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003666 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003667 }
3668 udev->slot_id = xhci->slot_id;
3669 /* Is this a LS or FS device under a HS hub? */
3670 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003671 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003672
3673disable_slot:
3674 /* Disable slot, if we can do it without mem alloc */
3675 spin_lock_irqsave(&xhci->lock, flags);
3676 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3677 xhci_ring_cmd_db(xhci);
3678 spin_unlock_irqrestore(&xhci->lock, flags);
3679 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003680}
3681
3682/*
3683 * Issue an Address Device command (which will issue a SetAddress request to
3684 * the device).
3685 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3686 * we should only issue and wait on one address command at the same time.
3687 *
3688 * We add one to the device address issued by the hardware because the USB core
3689 * uses address 1 for the root hubs (even though they're not really devices).
3690 */
3691int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3692{
3693 unsigned long flags;
3694 int timeleft;
3695 struct xhci_virt_device *virt_dev;
3696 int ret = 0;
3697 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003698 struct xhci_slot_ctx *slot_ctx;
3699 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003700 u64 temp_64;
Elric Fu6e4468b2012-06-27 16:31:52 +08003701 union xhci_trb *cmd_trb;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003702
3703 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003704 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3705 "Bad Slot ID %d", udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003706 return -EINVAL;
3707 }
3708
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003709 virt_dev = xhci->devs[udev->slot_id];
3710
Matt Evans7ed603e2011-03-29 13:40:56 +11003711 if (WARN_ON(!virt_dev)) {
3712 /*
3713 * In plug/unplug torture test with an NEC controller,
3714 * a zero-dereference was observed once due to virt_dev = 0.
3715 * Print useful debug rather than crash if it is observed again!
3716 */
3717 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3718 udev->slot_id);
3719 return -EINVAL;
3720 }
3721
Andiry Xuf0615c42010-10-14 07:22:48 -07003722 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003723 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3724 if (!ctrl_ctx) {
3725 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3726 __func__);
3727 return -EINVAL;
3728 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003729 /*
3730 * If this is the first Set Address since device plug-in or
3731 * virt_device realloaction after a resume with an xHCI power loss,
3732 * then set up the slot context.
3733 */
3734 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003735 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003736 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003737 else
3738 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003739 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3740 ctrl_ctx->drop_flags = 0;
3741
Sarah Sharp66e49d82009-07-27 12:03:46 -07003742 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003743 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003744 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
3745 slot_ctx->dev_info >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003746
Sarah Sharpf88ba782009-05-14 11:44:22 -07003747 spin_lock_irqsave(&xhci->lock, flags);
Elric Fu6e4468b2012-06-27 16:31:52 +08003748 cmd_trb = xhci->cmd_ring->dequeue;
John Yound115b042009-07-27 12:05:15 -07003749 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3750 udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003751 if (ret) {
3752 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003753 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3754 "FIXME: allocate a command ring segment");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003755 return ret;
3756 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003757 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003758 spin_unlock_irqrestore(&xhci->lock, flags);
3759
3760 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3761 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Elric Fu6e4468b2012-06-27 16:31:52 +08003762 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003763 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3764 * the SetAddress() "recovery interval" required by USB and aborting the
3765 * command on a timeout.
3766 */
3767 if (timeleft <= 0) {
Andiry Xucd681762011-09-23 14:19:55 -07003768 xhci_warn(xhci, "%s while waiting for address device command\n",
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003769 timeleft == 0 ? "Timeout" : "Signal");
Elric Fu6e4468b2012-06-27 16:31:52 +08003770 /* cancel the address device command */
3771 ret = xhci_cancel_cmd(xhci, NULL, cmd_trb);
3772 if (ret < 0)
3773 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003774 return -ETIME;
3775 }
3776
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003777 switch (virt_dev->cmd_status) {
3778 case COMP_CTX_STATE:
3779 case COMP_EBADSLT:
3780 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3781 udev->slot_id);
3782 ret = -EINVAL;
3783 break;
3784 case COMP_TX_ERR:
3785 dev_warn(&udev->dev, "Device not responding to set address.\n");
3786 ret = -EPROTO;
3787 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003788 case COMP_DEV_ERR:
3789 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3790 "device command.\n");
3791 ret = -ENODEV;
3792 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003793 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003794 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3795 "Successful Address Device command");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003796 break;
3797 default:
3798 xhci_err(xhci, "ERROR: unexpected command completion "
3799 "code 0x%x.\n", virt_dev->cmd_status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003800 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003801 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003802 trace_xhci_address_ctx(xhci, virt_dev->out_ctx, 1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003803 ret = -EINVAL;
3804 break;
3805 }
3806 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003807 return ret;
3808 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003809 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003810 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3811 "Op regs DCBAA ptr = %#016llx", temp_64);
3812 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3813 "Slot ID %d dcbaa entry @%p = %#016llx",
3814 udev->slot_id,
3815 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3816 (unsigned long long)
3817 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3818 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3819 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003820 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003821 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003822 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003823 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
3824 slot_ctx->dev_info >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003825 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003826 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003827 /*
3828 * USB core uses address 1 for the roothubs, so we add one to the
3829 * address given back to us by the HC.
3830 */
John Yound115b042009-07-27 12:05:15 -07003831 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003832 trace_xhci_address_ctx(xhci, virt_dev->out_ctx,
3833 slot_ctx->dev_info >> 27);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003834 /* Use kernel assigned address for devices; store xHC assigned
3835 * address locally. */
Matt Evans28ccd292011-03-29 13:40:46 +11003836 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3837 + 1;
Sarah Sharpf94e01862009-04-27 19:58:38 -07003838 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003839 ctrl_ctx->add_flags = 0;
3840 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003841
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003842 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3843 "Internal device address = %d", virt_dev->address);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003844
3845 return 0;
3846}
3847
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003848/*
3849 * Transfer the port index into real index in the HW port status
3850 * registers. Caculate offset between the port's PORTSC register
3851 * and port status base. Divide the number of per port register
3852 * to get the real index. The raw port number bases 1.
3853 */
3854int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3855{
3856 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3857 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3858 __le32 __iomem *addr;
3859 int raw_port;
3860
3861 if (hcd->speed != HCD_USB3)
3862 addr = xhci->usb2_ports[port1 - 1];
3863 else
3864 addr = xhci->usb3_ports[port1 - 1];
3865
3866 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3867 return raw_port;
3868}
3869
Mathias Nymana558ccd2013-05-23 17:14:30 +03003870/*
3871 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3872 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3873 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003874static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003875 struct usb_device *udev, u16 max_exit_latency)
3876{
3877 struct xhci_virt_device *virt_dev;
3878 struct xhci_command *command;
3879 struct xhci_input_control_ctx *ctrl_ctx;
3880 struct xhci_slot_ctx *slot_ctx;
3881 unsigned long flags;
3882 int ret;
3883
3884 spin_lock_irqsave(&xhci->lock, flags);
3885 if (max_exit_latency == xhci->devs[udev->slot_id]->current_mel) {
3886 spin_unlock_irqrestore(&xhci->lock, flags);
3887 return 0;
3888 }
3889
3890 /* Attempt to issue an Evaluate Context command to change the MEL. */
3891 virt_dev = xhci->devs[udev->slot_id];
3892 command = xhci->lpm_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003893 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3894 if (!ctrl_ctx) {
3895 spin_unlock_irqrestore(&xhci->lock, flags);
3896 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3897 __func__);
3898 return -ENOMEM;
3899 }
3900
Mathias Nymana558ccd2013-05-23 17:14:30 +03003901 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
3902 spin_unlock_irqrestore(&xhci->lock, flags);
3903
Mathias Nymana558ccd2013-05-23 17:14:30 +03003904 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
3905 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
3906 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
3907 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
3908
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03003909 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
3910 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03003911 xhci_dbg(xhci, "Slot %u Input Context:\n", udev->slot_id);
3912 xhci_dbg_ctx(xhci, command->in_ctx, 0);
3913
3914 /* Issue and wait for the evaluate context command. */
3915 ret = xhci_configure_endpoint(xhci, udev, command,
3916 true, true);
3917 xhci_dbg(xhci, "Slot %u Output Context:\n", udev->slot_id);
3918 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 0);
3919
3920 if (!ret) {
3921 spin_lock_irqsave(&xhci->lock, flags);
3922 virt_dev->current_mel = max_exit_latency;
3923 spin_unlock_irqrestore(&xhci->lock, flags);
3924 }
3925 return ret;
3926}
3927
Alan Stern84ebc102013-03-27 16:14:46 -04003928#ifdef CONFIG_PM_RUNTIME
Andiry Xu95743232011-09-23 14:19:51 -07003929
3930/* BESL to HIRD Encoding array for USB2 LPM */
3931static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3932 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3933
3934/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003935static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3936 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003937{
Andiry Xuf99298b2011-12-12 16:45:28 +08003938 int u2del, besl, besl_host;
3939 int besl_device = 0;
3940 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07003941
Andiry Xuf99298b2011-12-12 16:45:28 +08003942 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
3943 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3944
3945 if (field & USB_BESL_SUPPORT) {
3946 for (besl_host = 0; besl_host < 16; besl_host++) {
3947 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07003948 break;
3949 }
Andiry Xuf99298b2011-12-12 16:45:28 +08003950 /* Use baseline BESL value as default */
3951 if (field & USB_BESL_BASELINE_VALID)
3952 besl_device = USB_GET_BESL_BASELINE(field);
3953 else if (field & USB_BESL_DEEP_VALID)
3954 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07003955 } else {
3956 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08003957 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07003958 else
Andiry Xuf99298b2011-12-12 16:45:28 +08003959 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07003960 }
3961
Andiry Xuf99298b2011-12-12 16:45:28 +08003962 besl = besl_host + besl_device;
3963 if (besl > 15)
3964 besl = 15;
3965
3966 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07003967}
3968
Mathias Nymana558ccd2013-05-23 17:14:30 +03003969/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
3970static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
3971{
3972 u32 field;
3973 int l1;
3974 int besld = 0;
3975 int hirdm = 0;
3976
3977 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3978
3979 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03003980 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03003981
3982 /* device has preferred BESLD */
3983 if (field & USB_BESL_DEEP_VALID) {
3984 besld = USB_GET_BESL_DEEP(field);
3985 hirdm = 1;
3986 }
3987
3988 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
3989}
3990
Andiry Xu95743232011-09-23 14:19:51 -07003991static int xhci_usb2_software_lpm_test(struct usb_hcd *hcd,
3992 struct usb_device *udev)
3993{
3994 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3995 struct dev_info *dev_info;
3996 __le32 __iomem **port_array;
3997 __le32 __iomem *addr, *pm_addr;
3998 u32 temp, dev_id;
3999 unsigned int port_num;
4000 unsigned long flags;
Andiry Xuf99298b2011-12-12 16:45:28 +08004001 int hird;
Andiry Xu95743232011-09-23 14:19:51 -07004002 int ret;
4003
4004 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
4005 !udev->lpm_capable)
4006 return -EINVAL;
4007
4008 /* we only support lpm for non-hub device connected to root hub yet */
4009 if (!udev->parent || udev->parent->parent ||
4010 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4011 return -EINVAL;
4012
4013 spin_lock_irqsave(&xhci->lock, flags);
4014
4015 /* Look for devices in lpm_failed_devs list */
4016 dev_id = le16_to_cpu(udev->descriptor.idVendor) << 16 |
4017 le16_to_cpu(udev->descriptor.idProduct);
4018 list_for_each_entry(dev_info, &xhci->lpm_failed_devs, list) {
4019 if (dev_info->dev_id == dev_id) {
4020 ret = -EINVAL;
4021 goto finish;
4022 }
4023 }
4024
4025 port_array = xhci->usb2_ports;
4026 port_num = udev->portnum - 1;
4027
4028 if (port_num > HCS_MAX_PORTS(xhci->hcs_params1)) {
4029 xhci_dbg(xhci, "invalid port number %d\n", udev->portnum);
4030 ret = -EINVAL;
4031 goto finish;
4032 }
4033
4034 /*
4035 * Test USB 2.0 software LPM.
4036 * FIXME: some xHCI 1.0 hosts may implement a new register to set up
4037 * hardware-controlled USB 2.0 LPM. See section 5.4.11 and 4.23.5.1.1.1
4038 * in the June 2011 errata release.
4039 */
4040 xhci_dbg(xhci, "test port %d software LPM\n", port_num);
4041 /*
4042 * Set L1 Device Slot and HIRD/BESL.
4043 * Check device's USB 2.0 extension descriptor to determine whether
4044 * HIRD or BESL shoule be used. See USB2.0 LPM errata.
4045 */
Mathias Nymanb6e76372013-05-23 17:14:29 +03004046 pm_addr = port_array[port_num] + PORTPMSC;
Andiry Xuf99298b2011-12-12 16:45:28 +08004047 hird = xhci_calculate_hird_besl(xhci, udev);
Andiry Xu95743232011-09-23 14:19:51 -07004048 temp = PORT_L1DS(udev->slot_id) | PORT_HIRD(hird);
4049 xhci_writel(xhci, temp, pm_addr);
4050
4051 /* Set port link state to U2(L1) */
4052 addr = port_array[port_num];
4053 xhci_set_link_state(xhci, port_array, port_num, XDEV_U2);
4054
4055 /* wait for ACK */
4056 spin_unlock_irqrestore(&xhci->lock, flags);
4057 msleep(10);
4058 spin_lock_irqsave(&xhci->lock, flags);
4059
4060 /* Check L1 Status */
Sarah Sharp2611bd12012-10-25 13:27:51 -07004061 ret = xhci_handshake(xhci, pm_addr,
4062 PORT_L1S_MASK, PORT_L1S_SUCCESS, 125);
Andiry Xu95743232011-09-23 14:19:51 -07004063 if (ret != -ETIMEDOUT) {
4064 /* enter L1 successfully */
4065 temp = xhci_readl(xhci, addr);
4066 xhci_dbg(xhci, "port %d entered L1 state, port status 0x%x\n",
4067 port_num, temp);
4068 ret = 0;
4069 } else {
4070 temp = xhci_readl(xhci, pm_addr);
4071 xhci_dbg(xhci, "port %d software lpm failed, L1 status %d\n",
4072 port_num, temp & PORT_L1S_MASK);
4073 ret = -EINVAL;
4074 }
4075
4076 /* Resume the port */
4077 xhci_set_link_state(xhci, port_array, port_num, XDEV_U0);
4078
4079 spin_unlock_irqrestore(&xhci->lock, flags);
4080 msleep(10);
4081 spin_lock_irqsave(&xhci->lock, flags);
4082
4083 /* Clear PLC */
4084 xhci_test_and_clear_bit(xhci, port_array, port_num, PORT_PLC);
4085
4086 /* Check PORTSC to make sure the device is in the right state */
4087 if (!ret) {
4088 temp = xhci_readl(xhci, addr);
4089 xhci_dbg(xhci, "resumed port %d status 0x%x\n", port_num, temp);
4090 if (!(temp & PORT_CONNECT) || !(temp & PORT_PE) ||
4091 (temp & PORT_PLS_MASK) != XDEV_U0) {
4092 xhci_dbg(xhci, "port L1 resume fail\n");
4093 ret = -EINVAL;
4094 }
4095 }
4096
4097 if (ret) {
4098 /* Insert dev to lpm_failed_devs list */
4099 xhci_warn(xhci, "device LPM test failed, may disconnect and "
4100 "re-enumerate\n");
4101 dev_info = kzalloc(sizeof(struct dev_info), GFP_ATOMIC);
4102 if (!dev_info) {
4103 ret = -ENOMEM;
4104 goto finish;
4105 }
4106 dev_info->dev_id = dev_id;
4107 INIT_LIST_HEAD(&dev_info->list);
4108 list_add(&dev_info->list, &xhci->lpm_failed_devs);
4109 } else {
4110 xhci_ring_device(xhci, udev->slot_id);
4111 }
4112
4113finish:
4114 spin_unlock_irqrestore(&xhci->lock, flags);
4115 return ret;
4116}
4117
Andiry Xu65580b432011-09-23 14:19:52 -07004118int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4119 struct usb_device *udev, int enable)
4120{
4121 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4122 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004123 __le32 __iomem *pm_addr, *hlpm_addr;
4124 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004125 unsigned int port_num;
4126 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004127 int hird, exit_latency;
4128 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004129
4130 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
4131 !udev->lpm_capable)
4132 return -EPERM;
4133
4134 if (!udev->parent || udev->parent->parent ||
4135 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4136 return -EPERM;
4137
4138 if (udev->usb2_hw_lpm_capable != 1)
4139 return -EPERM;
4140
4141 spin_lock_irqsave(&xhci->lock, flags);
4142
4143 port_array = xhci->usb2_ports;
4144 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004145 pm_addr = port_array[port_num] + PORTPMSC;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004146 pm_val = xhci_readl(xhci, pm_addr);
4147 hlpm_addr = port_array[port_num] + PORTHLPMC;
4148 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004149
4150 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
4151 enable ? "enable" : "disable", port_num);
4152
Andiry Xu65580b432011-09-23 14:19:52 -07004153 if (enable) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004154 /* Host supports BESL timeout instead of HIRD */
4155 if (udev->usb2_hw_lpm_besl_capable) {
4156 /* if device doesn't have a preferred BESL value use a
4157 * default one which works with mixed HIRD and BESL
4158 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4159 */
4160 if ((field & USB_BESL_SUPPORT) &&
4161 (field & USB_BESL_BASELINE_VALID))
4162 hird = USB_GET_BESL_BASELINE(field);
4163 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004164 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004165
4166 exit_latency = xhci_besl_encoding[hird];
4167 spin_unlock_irqrestore(&xhci->lock, flags);
4168
4169 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4170 * input context for link powermanagement evaluate
4171 * context commands. It is protected by hcd->bandwidth
4172 * mutex and is shared by all devices. We need to set
4173 * the max ext latency in USB 2 BESL LPM as well, so
4174 * use the same mutex and xhci_change_max_exit_latency()
4175 */
4176 mutex_lock(hcd->bandwidth_mutex);
4177 ret = xhci_change_max_exit_latency(xhci, udev,
4178 exit_latency);
4179 mutex_unlock(hcd->bandwidth_mutex);
4180
4181 if (ret < 0)
4182 return ret;
4183 spin_lock_irqsave(&xhci->lock, flags);
4184
4185 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
4186 xhci_writel(xhci, hlpm_val, hlpm_addr);
4187 /* flush write */
4188 xhci_readl(xhci, hlpm_addr);
4189 } else {
4190 hird = xhci_calculate_hird_besl(xhci, udev);
4191 }
4192
4193 pm_val &= ~PORT_HIRD_MASK;
4194 pm_val |= PORT_HIRD(hird) | PORT_RWE;
4195 xhci_writel(xhci, pm_val, pm_addr);
4196 pm_val = xhci_readl(xhci, pm_addr);
4197 pm_val |= PORT_HLE;
4198 xhci_writel(xhci, pm_val, pm_addr);
4199 /* flush write */
4200 xhci_readl(xhci, pm_addr);
Andiry Xu65580b432011-09-23 14:19:52 -07004201 } else {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004202 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK);
4203 xhci_writel(xhci, pm_val, pm_addr);
4204 /* flush write */
4205 xhci_readl(xhci, pm_addr);
4206 if (udev->usb2_hw_lpm_besl_capable) {
4207 spin_unlock_irqrestore(&xhci->lock, flags);
4208 mutex_lock(hcd->bandwidth_mutex);
4209 xhci_change_max_exit_latency(xhci, udev, 0);
4210 mutex_unlock(hcd->bandwidth_mutex);
4211 return 0;
4212 }
Andiry Xu65580b432011-09-23 14:19:52 -07004213 }
4214
4215 spin_unlock_irqrestore(&xhci->lock, flags);
4216 return 0;
4217}
4218
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004219/* check if a usb2 port supports a given extened capability protocol
4220 * only USB2 ports extended protocol capability values are cached.
4221 * Return 1 if capability is supported
4222 */
4223static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4224 unsigned capability)
4225{
4226 u32 port_offset, port_count;
4227 int i;
4228
4229 for (i = 0; i < xhci->num_ext_caps; i++) {
4230 if (xhci->ext_caps[i] & capability) {
4231 /* port offsets starts at 1 */
4232 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4233 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4234 if (port >= port_offset &&
4235 port < port_offset + port_count)
4236 return 1;
4237 }
4238 }
4239 return 0;
4240}
4241
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004242int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4243{
4244 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4245 int ret;
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004246 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004247
4248 ret = xhci_usb2_software_lpm_test(hcd, udev);
4249 if (!ret) {
4250 xhci_dbg(xhci, "software LPM test succeed\n");
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004251 if (xhci->hw_lpm_support == 1 &&
4252 xhci_check_usb2_port_capability(xhci, portnum, XHCI_HLC)) {
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004253 udev->usb2_hw_lpm_capable = 1;
Mathias Nyman17f34862013-05-23 17:14:31 +03004254 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4255 udev->l1_params.besl = XHCI_DEFAULT_BESL;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004256 if (xhci_check_usb2_port_capability(xhci, portnum,
4257 XHCI_BLC))
4258 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004259 ret = xhci_set_usb2_hardware_lpm(hcd, udev, 1);
4260 if (!ret)
4261 udev->usb2_hw_lpm_enabled = 1;
4262 }
4263 }
4264
4265 return 0;
4266}
4267
4268#else
4269
4270int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4271 struct usb_device *udev, int enable)
4272{
4273 return 0;
4274}
4275
4276int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4277{
4278 return 0;
4279}
4280
Alan Stern84ebc102013-03-27 16:14:46 -04004281#endif /* CONFIG_PM_RUNTIME */
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004282
Sarah Sharp3b3db022012-05-09 10:55:03 -07004283/*---------------------- USB 3.0 Link PM functions ------------------------*/
4284
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004285#ifdef CONFIG_PM
Sarah Sharpe3567d22012-05-16 13:36:24 -07004286/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4287static unsigned long long xhci_service_interval_to_ns(
4288 struct usb_endpoint_descriptor *desc)
4289{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004290 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004291}
4292
Sarah Sharp3b3db022012-05-09 10:55:03 -07004293static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4294 enum usb3_link_state state)
4295{
4296 unsigned long long sel;
4297 unsigned long long pel;
4298 unsigned int max_sel_pel;
4299 char *state_name;
4300
4301 switch (state) {
4302 case USB3_LPM_U1:
4303 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4304 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4305 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4306 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4307 state_name = "U1";
4308 break;
4309 case USB3_LPM_U2:
4310 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4311 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4312 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4313 state_name = "U2";
4314 break;
4315 default:
4316 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4317 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004318 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004319 }
4320
4321 if (sel <= max_sel_pel && pel <= max_sel_pel)
4322 return USB3_LPM_DEVICE_INITIATED;
4323
4324 if (sel > max_sel_pel)
4325 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4326 "due to long SEL %llu ms\n",
4327 state_name, sel);
4328 else
4329 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004330 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004331 state_name, pel);
4332 return USB3_LPM_DISABLED;
4333}
4334
Sarah Sharpe3567d22012-05-16 13:36:24 -07004335/* Returns the hub-encoded U1 timeout value.
4336 * The U1 timeout should be the maximum of the following values:
4337 * - For control endpoints, U1 system exit latency (SEL) * 3
4338 * - For bulk endpoints, U1 SEL * 5
4339 * - For interrupt endpoints:
4340 * - Notification EPs, U1 SEL * 3
4341 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4342 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4343 */
4344static u16 xhci_calculate_intel_u1_timeout(struct usb_device *udev,
4345 struct usb_endpoint_descriptor *desc)
4346{
4347 unsigned long long timeout_ns;
4348 int ep_type;
4349 int intr_type;
4350
4351 ep_type = usb_endpoint_type(desc);
4352 switch (ep_type) {
4353 case USB_ENDPOINT_XFER_CONTROL:
4354 timeout_ns = udev->u1_params.sel * 3;
4355 break;
4356 case USB_ENDPOINT_XFER_BULK:
4357 timeout_ns = udev->u1_params.sel * 5;
4358 break;
4359 case USB_ENDPOINT_XFER_INT:
4360 intr_type = usb_endpoint_interrupt_type(desc);
4361 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4362 timeout_ns = udev->u1_params.sel * 3;
4363 break;
4364 }
4365 /* Otherwise the calculation is the same as isoc eps */
4366 case USB_ENDPOINT_XFER_ISOC:
4367 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004368 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004369 if (timeout_ns < udev->u1_params.sel * 2)
4370 timeout_ns = udev->u1_params.sel * 2;
4371 break;
4372 default:
4373 return 0;
4374 }
4375
4376 /* The U1 timeout is encoded in 1us intervals. */
Sarah Sharpc88db162012-05-21 08:44:33 -07004377 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004378 /* Don't return a timeout of zero, because that's USB3_LPM_DISABLED. */
4379 if (timeout_ns == USB3_LPM_DISABLED)
4380 timeout_ns++;
4381
4382 /* If the necessary timeout value is bigger than what we can set in the
4383 * USB 3.0 hub, we have to disable hub-initiated U1.
4384 */
4385 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4386 return timeout_ns;
4387 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4388 "due to long timeout %llu ms\n", timeout_ns);
4389 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4390}
4391
4392/* Returns the hub-encoded U2 timeout value.
4393 * The U2 timeout should be the maximum of:
4394 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4395 * - largest bInterval of any active periodic endpoint (to avoid going
4396 * into lower power link states between intervals).
4397 * - the U2 Exit Latency of the device
4398 */
4399static u16 xhci_calculate_intel_u2_timeout(struct usb_device *udev,
4400 struct usb_endpoint_descriptor *desc)
4401{
4402 unsigned long long timeout_ns;
4403 unsigned long long u2_del_ns;
4404
4405 timeout_ns = 10 * 1000 * 1000;
4406
4407 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4408 (xhci_service_interval_to_ns(desc) > timeout_ns))
4409 timeout_ns = xhci_service_interval_to_ns(desc);
4410
Oliver Neukum966e7a82012-10-17 12:17:50 +02004411 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004412 if (u2_del_ns > timeout_ns)
4413 timeout_ns = u2_del_ns;
4414
4415 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004416 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004417 /* If the necessary timeout value is bigger than what we can set in the
4418 * USB 3.0 hub, we have to disable hub-initiated U2.
4419 */
4420 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4421 return timeout_ns;
4422 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4423 "due to long timeout %llu ms\n", timeout_ns);
4424 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4425}
4426
Sarah Sharp3b3db022012-05-09 10:55:03 -07004427static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4428 struct usb_device *udev,
4429 struct usb_endpoint_descriptor *desc,
4430 enum usb3_link_state state,
4431 u16 *timeout)
4432{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004433 if (state == USB3_LPM_U1) {
4434 if (xhci->quirks & XHCI_INTEL_HOST)
4435 return xhci_calculate_intel_u1_timeout(udev, desc);
4436 } else {
4437 if (xhci->quirks & XHCI_INTEL_HOST)
4438 return xhci_calculate_intel_u2_timeout(udev, desc);
4439 }
4440
Sarah Sharp3b3db022012-05-09 10:55:03 -07004441 return USB3_LPM_DISABLED;
4442}
4443
4444static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4445 struct usb_device *udev,
4446 struct usb_endpoint_descriptor *desc,
4447 enum usb3_link_state state,
4448 u16 *timeout)
4449{
4450 u16 alt_timeout;
4451
4452 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4453 desc, state, timeout);
4454
4455 /* If we found we can't enable hub-initiated LPM, or
4456 * the U1 or U2 exit latency was too high to allow
4457 * device-initiated LPM as well, just stop searching.
4458 */
4459 if (alt_timeout == USB3_LPM_DISABLED ||
4460 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4461 *timeout = alt_timeout;
4462 return -E2BIG;
4463 }
4464 if (alt_timeout > *timeout)
4465 *timeout = alt_timeout;
4466 return 0;
4467}
4468
4469static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4470 struct usb_device *udev,
4471 struct usb_host_interface *alt,
4472 enum usb3_link_state state,
4473 u16 *timeout)
4474{
4475 int j;
4476
4477 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4478 if (xhci_update_timeout_for_endpoint(xhci, udev,
4479 &alt->endpoint[j].desc, state, timeout))
4480 return -E2BIG;
4481 continue;
4482 }
4483 return 0;
4484}
4485
Sarah Sharpe3567d22012-05-16 13:36:24 -07004486static int xhci_check_intel_tier_policy(struct usb_device *udev,
4487 enum usb3_link_state state)
4488{
4489 struct usb_device *parent;
4490 unsigned int num_hubs;
4491
4492 if (state == USB3_LPM_U2)
4493 return 0;
4494
4495 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4496 for (parent = udev->parent, num_hubs = 0; parent->parent;
4497 parent = parent->parent)
4498 num_hubs++;
4499
4500 if (num_hubs < 2)
4501 return 0;
4502
4503 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4504 " below second-tier hub.\n");
4505 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4506 "to decrease power consumption.\n");
4507 return -E2BIG;
4508}
4509
Sarah Sharp3b3db022012-05-09 10:55:03 -07004510static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4511 struct usb_device *udev,
4512 enum usb3_link_state state)
4513{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004514 if (xhci->quirks & XHCI_INTEL_HOST)
4515 return xhci_check_intel_tier_policy(udev, state);
Sarah Sharp3b3db022012-05-09 10:55:03 -07004516 return -EINVAL;
4517}
4518
4519/* Returns the U1 or U2 timeout that should be enabled.
4520 * If the tier check or timeout setting functions return with a non-zero exit
4521 * code, that means the timeout value has been finalized and we shouldn't look
4522 * at any more endpoints.
4523 */
4524static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4525 struct usb_device *udev, enum usb3_link_state state)
4526{
4527 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4528 struct usb_host_config *config;
4529 char *state_name;
4530 int i;
4531 u16 timeout = USB3_LPM_DISABLED;
4532
4533 if (state == USB3_LPM_U1)
4534 state_name = "U1";
4535 else if (state == USB3_LPM_U2)
4536 state_name = "U2";
4537 else {
4538 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4539 state);
4540 return timeout;
4541 }
4542
4543 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4544 return timeout;
4545
4546 /* Gather some information about the currently installed configuration
4547 * and alternate interface settings.
4548 */
4549 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4550 state, &timeout))
4551 return timeout;
4552
4553 config = udev->actconfig;
4554 if (!config)
4555 return timeout;
4556
4557 for (i = 0; i < USB_MAXINTERFACES; i++) {
4558 struct usb_driver *driver;
4559 struct usb_interface *intf = config->interface[i];
4560
4561 if (!intf)
4562 continue;
4563
4564 /* Check if any currently bound drivers want hub-initiated LPM
4565 * disabled.
4566 */
4567 if (intf->dev.driver) {
4568 driver = to_usb_driver(intf->dev.driver);
4569 if (driver && driver->disable_hub_initiated_lpm) {
4570 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4571 "at request of driver %s\n",
4572 state_name, driver->name);
4573 return xhci_get_timeout_no_hub_lpm(udev, state);
4574 }
4575 }
4576
4577 /* Not sure how this could happen... */
4578 if (!intf->cur_altsetting)
4579 continue;
4580
4581 if (xhci_update_timeout_for_interface(xhci, udev,
4582 intf->cur_altsetting,
4583 state, &timeout))
4584 return timeout;
4585 }
4586 return timeout;
4587}
4588
Sarah Sharp3b3db022012-05-09 10:55:03 -07004589static int calculate_max_exit_latency(struct usb_device *udev,
4590 enum usb3_link_state state_changed,
4591 u16 hub_encoded_timeout)
4592{
4593 unsigned long long u1_mel_us = 0;
4594 unsigned long long u2_mel_us = 0;
4595 unsigned long long mel_us = 0;
4596 bool disabling_u1;
4597 bool disabling_u2;
4598 bool enabling_u1;
4599 bool enabling_u2;
4600
4601 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4602 hub_encoded_timeout == USB3_LPM_DISABLED);
4603 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4604 hub_encoded_timeout == USB3_LPM_DISABLED);
4605
4606 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4607 hub_encoded_timeout != USB3_LPM_DISABLED);
4608 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4609 hub_encoded_timeout != USB3_LPM_DISABLED);
4610
4611 /* If U1 was already enabled and we're not disabling it,
4612 * or we're going to enable U1, account for the U1 max exit latency.
4613 */
4614 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4615 enabling_u1)
4616 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4617 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4618 enabling_u2)
4619 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4620
4621 if (u1_mel_us > u2_mel_us)
4622 mel_us = u1_mel_us;
4623 else
4624 mel_us = u2_mel_us;
4625 /* xHCI host controller max exit latency field is only 16 bits wide. */
4626 if (mel_us > MAX_EXIT) {
4627 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4628 "is too big.\n", mel_us);
4629 return -E2BIG;
4630 }
4631 return mel_us;
4632}
4633
4634/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
4635int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4636 struct usb_device *udev, enum usb3_link_state state)
4637{
4638 struct xhci_hcd *xhci;
4639 u16 hub_encoded_timeout;
4640 int mel;
4641 int ret;
4642
4643 xhci = hcd_to_xhci(hcd);
4644 /* The LPM timeout values are pretty host-controller specific, so don't
4645 * enable hub-initiated timeouts unless the vendor has provided
4646 * information about their timeout algorithm.
4647 */
4648 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4649 !xhci->devs[udev->slot_id])
4650 return USB3_LPM_DISABLED;
4651
4652 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4653 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4654 if (mel < 0) {
4655 /* Max Exit Latency is too big, disable LPM. */
4656 hub_encoded_timeout = USB3_LPM_DISABLED;
4657 mel = 0;
4658 }
4659
4660 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4661 if (ret)
4662 return ret;
4663 return hub_encoded_timeout;
4664}
4665
4666int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4667 struct usb_device *udev, enum usb3_link_state state)
4668{
4669 struct xhci_hcd *xhci;
4670 u16 mel;
4671 int ret;
4672
4673 xhci = hcd_to_xhci(hcd);
4674 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4675 !xhci->devs[udev->slot_id])
4676 return 0;
4677
4678 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
4679 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4680 if (ret)
4681 return ret;
4682 return 0;
4683}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004684#else /* CONFIG_PM */
4685
4686int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4687 struct usb_device *udev, enum usb3_link_state state)
4688{
4689 return USB3_LPM_DISABLED;
4690}
4691
4692int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4693 struct usb_device *udev, enum usb3_link_state state)
4694{
4695 return 0;
4696}
4697#endif /* CONFIG_PM */
4698
Sarah Sharp3b3db022012-05-09 10:55:03 -07004699/*-------------------------------------------------------------------------*/
4700
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004701/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4702 * internal data structures for the device.
4703 */
4704int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
4705 struct usb_tt *tt, gfp_t mem_flags)
4706{
4707 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4708 struct xhci_virt_device *vdev;
4709 struct xhci_command *config_cmd;
4710 struct xhci_input_control_ctx *ctrl_ctx;
4711 struct xhci_slot_ctx *slot_ctx;
4712 unsigned long flags;
4713 unsigned think_time;
4714 int ret;
4715
4716 /* Ignore root hubs */
4717 if (!hdev->parent)
4718 return 0;
4719
4720 vdev = xhci->devs[hdev->slot_id];
4721 if (!vdev) {
4722 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4723 return -EINVAL;
4724 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004725 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004726 if (!config_cmd) {
4727 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
4728 return -ENOMEM;
4729 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07004730 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
4731 if (!ctrl_ctx) {
4732 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4733 __func__);
4734 xhci_free_command(xhci, config_cmd);
4735 return -ENOMEM;
4736 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004737
4738 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004739 if (hdev->speed == USB_SPEED_HIGH &&
4740 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4741 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4742 xhci_free_command(xhci, config_cmd);
4743 spin_unlock_irqrestore(&xhci->lock, flags);
4744 return -ENOMEM;
4745 }
4746
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004747 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004748 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004749 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004750 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004751 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004752 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004753 if (xhci->hci_version > 0x95) {
4754 xhci_dbg(xhci, "xHCI version %x needs hub "
4755 "TT think time and number of ports\n",
4756 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004757 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004758 /* Set TT think time - convert from ns to FS bit times.
4759 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4760 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004761 *
4762 * xHCI 1.0: this field shall be 0 if the device is not a
4763 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004764 */
4765 think_time = tt->think_time;
4766 if (think_time != 0)
4767 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004768 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4769 slot_ctx->tt_info |=
4770 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004771 } else {
4772 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4773 "TT think time or number of ports\n",
4774 (unsigned int) xhci->hci_version);
4775 }
4776 slot_ctx->dev_state = 0;
4777 spin_unlock_irqrestore(&xhci->lock, flags);
4778
4779 xhci_dbg(xhci, "Set up %s for hub device.\n",
4780 (xhci->hci_version > 0x95) ?
4781 "configure endpoint" : "evaluate context");
4782 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
4783 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
4784
4785 /* Issue and wait for the configure endpoint or
4786 * evaluate context command.
4787 */
4788 if (xhci->hci_version > 0x95)
4789 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4790 false, false);
4791 else
4792 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4793 true, false);
4794
4795 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
4796 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
4797
4798 xhci_free_command(xhci, config_cmd);
4799 return ret;
4800}
4801
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004802int xhci_get_frame(struct usb_hcd *hcd)
4803{
4804 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4805 /* EHCI mods by the periodic size. Why? */
4806 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
4807}
4808
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004809int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4810{
4811 struct xhci_hcd *xhci;
4812 struct device *dev = hcd->self.controller;
4813 int retval;
4814 u32 temp;
4815
Andiry Xufdaf8b32012-03-05 17:49:38 +08004816 /* Accept arbitrarily long scatter-gather lists */
4817 hcd->self.sg_tablesize = ~0;
Hans de Goede19181bc2012-07-04 09:18:02 +02004818 /* XHCI controllers don't stop the ep queue on short packets :| */
4819 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004820
4821 if (usb_hcd_is_primary_hcd(hcd)) {
4822 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
4823 if (!xhci)
4824 return -ENOMEM;
4825 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
4826 xhci->main_hcd = hcd;
4827 /* Mark the first roothub as being USB 2.0.
4828 * The xHCI driver will register the USB 3.0 roothub.
4829 */
4830 hcd->speed = HCD_USB2;
4831 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4832 /*
4833 * USB 2.0 roothub under xHCI has an integrated TT,
4834 * (rate matching hub) as opposed to having an OHCI/UHCI
4835 * companion controller.
4836 */
4837 hcd->has_tt = 1;
4838 } else {
4839 /* xHCI private pointer was set in xhci_pci_probe for the second
4840 * registered roothub.
4841 */
4842 xhci = hcd_to_xhci(hcd);
4843 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4844 if (HCC_64BIT_ADDR(temp)) {
4845 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4846 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4847 } else {
4848 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4849 }
4850 return 0;
4851 }
4852
4853 xhci->cap_regs = hcd->regs;
4854 xhci->op_regs = hcd->regs +
4855 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
4856 xhci->run_regs = hcd->regs +
4857 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
4858 /* Cache read-only capability registers */
4859 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
4860 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
4861 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
4862 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
4863 xhci->hci_version = HC_VERSION(xhci->hcc_params);
4864 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4865 xhci_print_registers(xhci);
4866
4867 get_quirks(dev, xhci);
4868
George Cherian07f3cb72013-07-01 10:59:12 +05304869 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4870 * success event after a short transfer. This quirk will ignore such
4871 * spurious event.
4872 */
4873 if (xhci->hci_version > 0x96)
4874 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4875
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004876 /* Make sure the HC is halted. */
4877 retval = xhci_halt(xhci);
4878 if (retval)
4879 goto error;
4880
4881 xhci_dbg(xhci, "Resetting HCD\n");
4882 /* Reset the internal HC memory state and registers. */
4883 retval = xhci_reset(xhci);
4884 if (retval)
4885 goto error;
4886 xhci_dbg(xhci, "Reset complete\n");
4887
4888 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4889 if (HCC_64BIT_ADDR(temp)) {
4890 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4891 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4892 } else {
4893 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4894 }
4895
4896 xhci_dbg(xhci, "Calling HCD init\n");
4897 /* Initialize HCD and host controller data structures. */
4898 retval = xhci_init(hcd);
4899 if (retval)
4900 goto error;
4901 xhci_dbg(xhci, "Called HCD init\n");
4902 return 0;
4903error:
4904 kfree(xhci);
4905 return retval;
4906}
4907
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004908MODULE_DESCRIPTION(DRIVER_DESC);
4909MODULE_AUTHOR(DRIVER_AUTHOR);
4910MODULE_LICENSE("GPL");
4911
4912static int __init xhci_hcd_init(void)
4913{
Sebastian Andrzej Siewior0cc47d52011-09-23 14:20:02 -07004914 int retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004915
4916 retval = xhci_register_pci();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004917 if (retval < 0) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03004918 pr_debug("Problem registering PCI driver.\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004919 return retval;
4920 }
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004921 retval = xhci_register_plat();
4922 if (retval < 0) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03004923 pr_debug("Problem registering platform driver.\n");
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004924 goto unreg_pci;
4925 }
Sarah Sharp98441972009-05-14 11:44:18 -07004926 /*
4927 * Check the compiler generated sizes of structures that must be laid
4928 * out in specific ways for hardware access.
4929 */
4930 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4931 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4932 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4933 /* xhci_device_control has eight fields, and also
4934 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4935 */
Sarah Sharp98441972009-05-14 11:44:18 -07004936 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4937 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4938 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4939 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4940 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4941 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4942 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004943 return 0;
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004944unreg_pci:
4945 xhci_unregister_pci();
4946 return retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004947}
4948module_init(xhci_hcd_init);
4949
4950static void __exit xhci_hcd_cleanup(void)
4951{
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004952 xhci_unregister_pci();
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004953 xhci_unregister_plat();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004954}
4955module_exit(xhci_hcd_cleanup);