blob: fa7b6f43642fe27ce11e1fbd9f7887b891188072 [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 */
Tony Camuso58b1d792013-04-05 14:27:07 -0400421 xhci_dbg(xhci, "Compliance mode detected->port %d\n",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500422 i + 1);
Tony Camuso58b1d792013-04-05 14:27:07 -0400423 xhci_dbg(xhci, "Attempting compliance mode recovery\n");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500424 hcd = xhci->shared_hcd;
425
426 if (hcd->state == HC_STATE_SUSPENDED)
427 usb_hcd_resume_root_hub(hcd);
428
429 usb_hcd_poll_rh_status(hcd);
430 }
431 }
432
433 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
434 mod_timer(&xhci->comp_mode_recovery_timer,
435 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
436}
437
438/*
439 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
440 * that causes ports behind that hardware to enter compliance mode sometimes.
441 * The quirk creates a timer that polls every 2 seconds the link state of
442 * each host controller's port and recovers it by issuing a Warm reset
443 * if Compliance mode is detected, otherwise the port will become "dead" (no
444 * device connections or disconnections will be detected anymore). Becasue no
445 * status event is generated when entering compliance mode (per xhci spec),
446 * this quirk is needed on systems that have the failing hardware installed.
447 */
448static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
449{
450 xhci->port_status_u0 = 0;
451 init_timer(&xhci->comp_mode_recovery_timer);
452
453 xhci->comp_mode_recovery_timer.data = (unsigned long) xhci;
454 xhci->comp_mode_recovery_timer.function = compliance_mode_recovery;
455 xhci->comp_mode_recovery_timer.expires = jiffies +
456 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
457
458 set_timer_slack(&xhci->comp_mode_recovery_timer,
459 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
460 add_timer(&xhci->comp_mode_recovery_timer);
Tony Camuso58b1d792013-04-05 14:27:07 -0400461 xhci_dbg(xhci, "Compliance mode recovery timer initialized\n");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500462}
463
464/*
465 * This function identifies the systems that have installed the SN65LVPE502CP
466 * USB3.0 re-driver and that need the Compliance Mode Quirk.
467 * Systems:
468 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
469 */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700470bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500471{
472 const char *dmi_product_name, *dmi_sys_vendor;
473
474 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
475 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530476 if (!dmi_product_name || !dmi_sys_vendor)
477 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500478
479 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
480 return false;
481
482 if (strstr(dmi_product_name, "Z420") ||
483 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500484 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600485 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500486 return true;
487
488 return false;
489}
490
491static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
492{
493 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
494}
495
496
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700497/*
498 * Initialize memory for HCD and xHC (one-time init).
499 *
500 * Program the PAGESIZE register, initialize the device context array, create
501 * device contexts (?), set up a command ring segment (or two?), create event
502 * ring (one for now).
503 */
504int xhci_init(struct usb_hcd *hcd)
505{
506 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
507 int retval = 0;
508
509 xhci_dbg(xhci, "xhci_init\n");
510 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700511 if (xhci->hci_version == 0x95 && link_quirk) {
Sarah Sharpb0567b32009-08-07 14:04:36 -0700512 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
513 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
514 } else {
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700515 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700516 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700517 retval = xhci_mem_init(xhci, GFP_KERNEL);
518 xhci_dbg(xhci, "Finished xhci_init\n");
519
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500520 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700521 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500522 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
523 compliance_mode_recovery_timer_init(xhci);
524 }
525
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700526 return retval;
527}
528
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700529/*-------------------------------------------------------------------------*/
530
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700531
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800532static int xhci_run_finished(struct xhci_hcd *xhci)
533{
534 if (xhci_start(xhci)) {
535 xhci_halt(xhci);
536 return -ENODEV;
537 }
538 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800539 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800540
541 if (xhci->quirks & XHCI_NEC_HOST)
542 xhci_ring_cmd_db(xhci);
543
544 xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n");
545 return 0;
546}
547
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700548/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700549 * Start the HC after it was halted.
550 *
551 * This function is called by the USB core when the HC driver is added.
552 * Its opposite is xhci_stop().
553 *
554 * xhci_init() must be called once before this function can be called.
555 * Reset the HC, enable device slot contexts, program DCBAAP, and
556 * set command ring pointer and event ring pointer.
557 *
558 * Setup MSI-X vectors and enable interrupts.
559 */
560int xhci_run(struct usb_hcd *hcd)
561{
562 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700563 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700564 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700565 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700566
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800567 /* Start the xHCI host controller running only after the USB 2.0 roothub
568 * is setup.
569 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700570
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700571 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800572 if (!usb_hcd_is_primary_hcd(hcd))
573 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700574
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700575 xhci_dbg(xhci, "xhci_run\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700576
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700577 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700578 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700579 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700580
Sarah Sharp66e49d82009-07-27 12:03:46 -0700581 xhci_dbg(xhci, "Command ring memory map follows:\n");
582 xhci_debug_ring(xhci, xhci->cmd_ring);
583 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
584 xhci_dbg_cmd_ptrs(xhci);
585
586 xhci_dbg(xhci, "ERST memory map follows:\n");
587 xhci_dbg_erst(xhci, &xhci->erst);
588 xhci_dbg(xhci, "Event ring:\n");
589 xhci_debug_ring(xhci, xhci->event_ring);
590 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
591 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
592 temp_64 &= ~ERST_PTR_MASK;
593 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
594
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700595 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
596 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700597 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700598 temp |= (u32) 160;
599 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
600
601 /* Set the HCD state before we enable the irqs */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700602 temp = xhci_readl(xhci, &xhci->op_regs->command);
603 temp |= (CMD_EIE);
604 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
605 temp);
606 xhci_writel(xhci, temp, &xhci->op_regs->command);
607
608 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700609 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
610 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700611 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
612 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800613 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700614
Sarah Sharp02386342010-05-24 13:25:28 -0700615 if (xhci->quirks & XHCI_NEC_HOST)
616 xhci_queue_vendor_command(xhci, 0, 0, 0,
617 TRB_TYPE(TRB_NEC_GET_FW));
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700618
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800619 xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700620 return 0;
621}
622
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800623static void xhci_only_stop_hcd(struct usb_hcd *hcd)
624{
625 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
626
627 spin_lock_irq(&xhci->lock);
628 xhci_halt(xhci);
629
630 /* The shared_hcd is going to be deallocated shortly (the USB core only
631 * calls this function when allocation fails in usb_add_hcd(), or
632 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
633 */
634 xhci->shared_hcd = NULL;
635 spin_unlock_irq(&xhci->lock);
636}
637
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700638/*
639 * Stop xHCI driver.
640 *
641 * This function is called by the USB core when the HC driver is removed.
642 * Its opposite is xhci_run().
643 *
644 * Disable device contexts, disable IRQs, and quiesce the HC.
645 * Reset the HC, finish any completed transactions, and cleanup memory.
646 */
647void xhci_stop(struct usb_hcd *hcd)
648{
649 u32 temp;
650 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
651
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800652 if (!usb_hcd_is_primary_hcd(hcd)) {
653 xhci_only_stop_hcd(xhci->shared_hcd);
654 return;
655 }
656
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700657 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800658 /* Make sure the xHC is halted for a USB3 roothub
659 * (xhci_stop() could be called as part of failed init).
660 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700661 xhci_halt(xhci);
662 xhci_reset(xhci);
663 spin_unlock_irq(&xhci->lock);
664
Zhang Rui40a9fb12010-12-17 13:17:04 -0800665 xhci_cleanup_msix(xhci);
666
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500667 /* Deleting Compliance Mode Recovery Timer */
668 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400669 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500670 del_timer_sync(&xhci->comp_mode_recovery_timer);
Tony Camuso58b1d792013-04-05 14:27:07 -0400671 xhci_dbg(xhci, "%s: compliance mode recovery timer deleted\n",
672 __func__);
673 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500674
Andiry Xuc41136b2011-03-22 17:08:14 +0800675 if (xhci->quirks & XHCI_AMD_PLL_FIX)
676 usb_amd_dev_put();
677
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700678 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
679 temp = xhci_readl(xhci, &xhci->op_regs->status);
680 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
681 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
682 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
683 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800684 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700685
686 xhci_dbg(xhci, "cleaning up memory\n");
687 xhci_mem_cleanup(xhci);
688 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
689 xhci_readl(xhci, &xhci->op_regs->status));
690}
691
692/*
693 * Shutdown HC (not bus-specific)
694 *
695 * This is called when the machine is rebooting or halting. We assume that the
696 * machine will be powered off, and the HC's internal state will be reset.
697 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800698 *
699 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700700 */
701void xhci_shutdown(struct usb_hcd *hcd)
702{
703 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
704
Dan Carpenter052c7f92012-08-13 19:57:03 +0300705 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Sarah Sharpe95829f2012-07-23 18:59:30 +0300706 usb_disable_xhci_ports(to_pci_dev(hcd->self.controller));
707
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700708 spin_lock_irq(&xhci->lock);
709 xhci_halt(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700710 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700711
Zhang Rui40a9fb12010-12-17 13:17:04 -0800712 xhci_cleanup_msix(xhci);
713
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700714 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
715 xhci_readl(xhci, &xhci->op_regs->status));
716}
717
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700718#ifdef CONFIG_PM
Andiry Xu5535b1d2010-10-14 07:23:06 -0700719static void xhci_save_registers(struct xhci_hcd *xhci)
720{
721 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
722 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
723 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
724 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700725 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
726 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
727 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700728 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
729 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700730}
731
732static void xhci_restore_registers(struct xhci_hcd *xhci)
733{
734 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
735 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
736 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
737 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700738 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
739 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
Sarah Sharpfb3d85b2012-03-16 13:27:39 -0700740 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700741 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
742 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700743}
744
Sarah Sharp89821322010-11-12 11:59:31 -0800745static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
746{
747 u64 val_64;
748
749 /* step 2: initialize command ring buffer */
750 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
751 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
752 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
753 xhci->cmd_ring->dequeue) &
754 (u64) ~CMD_RING_RSVD_BITS) |
755 xhci->cmd_ring->cycle_state;
756 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
757 (long unsigned long) val_64);
758 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
759}
760
761/*
762 * The whole command ring must be cleared to zero when we suspend the host.
763 *
764 * The host doesn't save the command ring pointer in the suspend well, so we
765 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
766 * aligned, because of the reserved bits in the command ring dequeue pointer
767 * register. Therefore, we can't just set the dequeue pointer back in the
768 * middle of the ring (TRBs are 16-byte aligned).
769 */
770static void xhci_clear_command_ring(struct xhci_hcd *xhci)
771{
772 struct xhci_ring *ring;
773 struct xhci_segment *seg;
774
775 ring = xhci->cmd_ring;
776 seg = ring->deq_seg;
777 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800778 memset(seg->trbs, 0,
779 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
780 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
781 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800782 seg = seg->next;
783 } while (seg != ring->deq_seg);
784
785 /* Reset the software enqueue and dequeue pointers */
786 ring->deq_seg = ring->first_seg;
787 ring->dequeue = ring->first_seg->trbs;
788 ring->enq_seg = ring->deq_seg;
789 ring->enqueue = ring->dequeue;
790
Andiry Xub008df62012-03-05 17:49:34 +0800791 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800792 /*
793 * Ring is now zeroed, so the HW should look for change of ownership
794 * when the cycle bit is set to 1.
795 */
796 ring->cycle_state = 1;
797
798 /*
799 * Reset the hardware dequeue pointer.
800 * Yes, this will need to be re-written after resume, but we're paranoid
801 * and want to make sure the hardware doesn't access bogus memory
802 * because, say, the BIOS or an SMI started the host without changing
803 * the command ring pointers.
804 */
805 xhci_set_cmd_ring_deq(xhci);
806}
807
Andiry Xu5535b1d2010-10-14 07:23:06 -0700808/*
809 * Stop HC (not bus-specific)
810 *
811 * This is called when the machine transition into S3/S4 mode.
812 *
813 */
814int xhci_suspend(struct xhci_hcd *xhci)
815{
816 int rc = 0;
817 struct usb_hcd *hcd = xhci_to_hcd(xhci);
818 u32 command;
819
Felipe Balbi77b84762012-10-19 10:55:16 +0300820 if (hcd->state != HC_STATE_SUSPENDED ||
821 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
822 return -EINVAL;
823
Sarah Sharpc52804a2012-11-27 12:30:23 -0800824 /* Don't poll the roothubs on bus suspend. */
825 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
826 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
827 del_timer_sync(&hcd->rh_timer);
828
Andiry Xu5535b1d2010-10-14 07:23:06 -0700829 spin_lock_irq(&xhci->lock);
830 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800831 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700832 /* step 1: stop endpoint */
833 /* skipped assuming that port suspend has done */
834
835 /* step 2: clear Run/Stop bit */
836 command = xhci_readl(xhci, &xhci->op_regs->command);
837 command &= ~CMD_RUN;
838 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700839 if (xhci_handshake(xhci, &xhci->op_regs->status,
Michael Spanga6e097d2012-09-14 13:05:49 -0400840 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC)) {
Andiry Xu5535b1d2010-10-14 07:23:06 -0700841 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
842 spin_unlock_irq(&xhci->lock);
843 return -ETIMEDOUT;
844 }
Sarah Sharp89821322010-11-12 11:59:31 -0800845 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700846
847 /* step 3: save registers */
848 xhci_save_registers(xhci);
849
850 /* step 4: set CSS flag */
851 command = xhci_readl(xhci, &xhci->op_regs->command);
852 command |= CMD_CSS;
853 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700854 if (xhci_handshake(xhci, &xhci->op_regs->status,
855 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800856 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d2010-10-14 07:23:06 -0700857 spin_unlock_irq(&xhci->lock);
858 return -ETIMEDOUT;
859 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700860 spin_unlock_irq(&xhci->lock);
861
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500862 /*
863 * Deleting Compliance Mode Recovery Timer because the xHCI Host
864 * is about to be suspended.
865 */
866 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
867 (!(xhci_all_ports_seen_u0(xhci)))) {
868 del_timer_sync(&xhci->comp_mode_recovery_timer);
Tony Camuso58b1d792013-04-05 14:27:07 -0400869 xhci_dbg(xhci, "%s: compliance mode recovery timer deleted\n",
870 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500871 }
872
Andiry Xu00292272010-12-27 17:39:02 +0800873 /* step 5: remove core well power */
874 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700875 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800876
Andiry Xu5535b1d2010-10-14 07:23:06 -0700877 return rc;
878}
879
880/*
881 * start xHC (not bus-specific)
882 *
883 * This is called when the machine transition from S3/S4 mode.
884 *
885 */
886int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
887{
888 u32 command, temp = 0;
889 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800890 struct usb_hcd *secondary_hcd;
Alan Sternf69e3122011-11-03 11:37:10 -0400891 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500892 bool comp_timer_running = false;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700893
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800894 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300895 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800896 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800897 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
898 time_before(jiffies,
899 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d2010-10-14 07:23:06 -0700900 msleep(100);
901
Alan Sternf69e3122011-11-03 11:37:10 -0400902 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
903 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
904
Andiry Xu5535b1d2010-10-14 07:23:06 -0700905 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200906 if (xhci->quirks & XHCI_RESET_ON_RESUME)
907 hibernated = true;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700908
909 if (!hibernated) {
910 /* step 1: restore register */
911 xhci_restore_registers(xhci);
912 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800913 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700914 /* step 3: restore state and start state*/
915 /* step 3: set CRS flag */
916 command = xhci_readl(xhci, &xhci->op_regs->command);
917 command |= CMD_CRS;
918 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700919 if (xhci_handshake(xhci, &xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +0800920 STS_RESTORE, 0, 10 * 1000)) {
921 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d2010-10-14 07:23:06 -0700922 spin_unlock_irq(&xhci->lock);
923 return -ETIMEDOUT;
924 }
925 temp = xhci_readl(xhci, &xhci->op_regs->status);
926 }
927
928 /* If restore operation fails, re-initialize the HC during resume */
929 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -0500930
931 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
932 !(xhci_all_ports_seen_u0(xhci))) {
933 del_timer_sync(&xhci->comp_mode_recovery_timer);
934 xhci_dbg(xhci, "Compliance Mode Recovery Timer deleted!\n");
935 }
936
Sarah Sharpfedd3832011-04-12 17:43:19 -0700937 /* Let the USB core know _both_ roothubs lost power. */
938 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
939 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700940
941 xhci_dbg(xhci, "Stop HCD\n");
942 xhci_halt(xhci);
943 xhci_reset(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700944 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +0800945 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700946
Andiry Xu5535b1d2010-10-14 07:23:06 -0700947 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
948 temp = xhci_readl(xhci, &xhci->op_regs->status);
949 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
950 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
951 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
952 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800953 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700954
955 xhci_dbg(xhci, "cleaning up memory\n");
956 xhci_mem_cleanup(xhci);
957 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
958 xhci_readl(xhci, &xhci->op_regs->status));
959
Sarah Sharp65b22f92010-12-17 12:35:05 -0800960 /* USB core calls the PCI reinit and start functions twice:
961 * first with the primary HCD, and then with the secondary HCD.
962 * If we don't do the same, the host will never be started.
963 */
964 if (!usb_hcd_is_primary_hcd(hcd))
965 secondary_hcd = hcd;
966 else
967 secondary_hcd = xhci->shared_hcd;
968
969 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
970 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700971 if (retval)
972 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -0500973 comp_timer_running = true;
974
Sarah Sharp65b22f92010-12-17 12:35:05 -0800975 xhci_dbg(xhci, "Start the primary HCD\n");
976 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800977 if (!retval) {
Alan Sternf69e3122011-11-03 11:37:10 -0400978 xhci_dbg(xhci, "Start the secondary HCD\n");
979 retval = xhci_run(secondary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800980 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700981 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb3209372011-03-07 11:24:07 -0800982 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e3122011-11-03 11:37:10 -0400983 goto done;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700984 }
985
Andiry Xu5535b1d2010-10-14 07:23:06 -0700986 /* step 4: set Run/Stop bit */
987 command = xhci_readl(xhci, &xhci->op_regs->command);
988 command |= CMD_RUN;
989 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd12012-10-25 13:27:51 -0700990 xhci_handshake(xhci, &xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d2010-10-14 07:23:06 -0700991 0, 250 * 1000);
992
993 /* step 5: walk topology and initialize portsc,
994 * portpmsc and portli
995 */
996 /* this is done in bus_resume */
997
998 /* step 6: restart each of the previously
999 * Running endpoints by ringing their doorbells
1000 */
1001
Andiry Xu5535b1d2010-10-14 07:23:06 -07001002 spin_unlock_irq(&xhci->lock);
Alan Sternf69e3122011-11-03 11:37:10 -04001003
1004 done:
1005 if (retval == 0) {
1006 usb_hcd_resume_root_hub(hcd);
1007 usb_hcd_resume_root_hub(xhci->shared_hcd);
1008 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001009
1010 /*
1011 * If system is subject to the Quirk, Compliance Mode Timer needs to
1012 * be re-initialized Always after a system resume. Ports are subject
1013 * to suffer the Compliance Mode issue again. It doesn't matter if
1014 * ports have entered previously to U0 before system's suspension.
1015 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001016 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001017 compliance_mode_recovery_timer_init(xhci);
1018
Sarah Sharpc52804a2012-11-27 12:30:23 -08001019 /* Re-enable port polling. */
1020 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
1021 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1022 usb_hcd_poll_rh_status(hcd);
1023
Alan Sternf69e3122011-11-03 11:37:10 -04001024 return retval;
Andiry Xu5535b1d2010-10-14 07:23:06 -07001025}
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001026#endif /* CONFIG_PM */
1027
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001028/*-------------------------------------------------------------------------*/
1029
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001030/**
1031 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1032 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1033 * value to right shift 1 for the bitmask.
1034 *
1035 * Index = (epnum * 2) + direction - 1,
1036 * where direction = 0 for OUT, 1 for IN.
1037 * For control endpoints, the IN index is used (OUT index is unused), so
1038 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1039 */
1040unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1041{
1042 unsigned int index;
1043 if (usb_endpoint_xfer_control(desc))
1044 index = (unsigned int) (usb_endpoint_num(desc)*2);
1045 else
1046 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1047 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1048 return index;
1049}
1050
Julius Werner01c5f442013-04-15 15:55:04 -07001051/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1052 * address from the XHCI endpoint index.
1053 */
1054unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1055{
1056 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1057 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1058 return direction | number;
1059}
1060
Sarah Sharpf94e01862009-04-27 19:58:38 -07001061/* Find the flag for this endpoint (for use in the control context). Use the
1062 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1063 * bit 1, etc.
1064 */
1065unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
1066{
1067 return 1 << (xhci_get_endpoint_index(desc) + 1);
1068}
1069
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001070/* Find the flag for this endpoint (for use in the control context). Use the
1071 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1072 * bit 1, etc.
1073 */
1074unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
1075{
1076 return 1 << (ep_index + 1);
1077}
1078
Sarah Sharpf94e01862009-04-27 19:58:38 -07001079/* Compute the last valid endpoint context index. Basically, this is the
1080 * endpoint index plus one. For slot contexts with more than valid endpoint,
1081 * we find the most significant bit set in the added contexts flags.
1082 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1083 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1084 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001085unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001086{
1087 return fls(added_ctxs) - 1;
1088}
1089
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001090/* Returns 1 if the arguments are OK;
1091 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1092 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001093static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001094 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1095 const char *func) {
1096 struct xhci_hcd *xhci;
1097 struct xhci_virt_device *virt_dev;
1098
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001099 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001100 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001101 return -EINVAL;
1102 }
1103 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001104 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001105 return 0;
1106 }
Andiry Xu64927732010-10-14 07:22:45 -07001107
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001108 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001109 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001110 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001111 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1112 func);
Andiry Xu64927732010-10-14 07:22:45 -07001113 return -EINVAL;
1114 }
1115
1116 virt_dev = xhci->devs[udev->slot_id];
1117 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001118 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001119 "virt_dev does not match\n", func);
1120 return -EINVAL;
1121 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001122 }
Andiry Xu64927732010-10-14 07:22:45 -07001123
Sarah Sharp203a8662013-07-24 10:27:13 -07001124 if (xhci->xhc_state & XHCI_STATE_HALTED)
1125 return -ENODEV;
1126
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001127 return 1;
1128}
1129
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001130static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001131 struct usb_device *udev, struct xhci_command *command,
1132 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001133
1134/*
1135 * Full speed devices may have a max packet size greater than 8 bytes, but the
1136 * USB core doesn't know that until it reads the first 8 bytes of the
1137 * descriptor. If the usb_device's max packet size changes after that point,
1138 * we need to issue an evaluate context command and wait on it.
1139 */
1140static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1141 unsigned int ep_index, struct urb *urb)
1142{
1143 struct xhci_container_ctx *in_ctx;
1144 struct xhci_container_ctx *out_ctx;
1145 struct xhci_input_control_ctx *ctrl_ctx;
1146 struct xhci_ep_ctx *ep_ctx;
1147 int max_packet_size;
1148 int hw_max_packet_size;
1149 int ret = 0;
1150
1151 out_ctx = xhci->devs[slot_id]->out_ctx;
1152 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001153 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001154 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001155 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001156 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1157 "Max Packet Size for ep 0 changed.");
1158 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1159 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001160 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001161 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1162 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001163 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001164 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1165 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001166
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001167 /* Set up the input context flags for the command */
1168 /* FIXME: This won't work if a non-default control endpoint
1169 * changes max packet sizes.
1170 */
Sarah Sharp92f8e762013-04-23 17:11:14 -07001171 in_ctx = xhci->devs[slot_id]->in_ctx;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001172 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001173 if (!ctrl_ctx) {
1174 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1175 __func__);
1176 return -ENOMEM;
1177 }
1178 /* Set up the modified control endpoint 0 */
1179 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1180 xhci->devs[slot_id]->out_ctx, ep_index);
1181
1182 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
1183 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1184 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1185
Matt Evans28ccd292011-03-29 13:40:46 +11001186 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001187 ctrl_ctx->drop_flags = 0;
1188
1189 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1190 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1191 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1192 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1193
Sarah Sharp913a8a32009-09-04 10:53:13 -07001194 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1195 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001196
1197 /* Clean up the input context for later use by bandwidth
1198 * functions.
1199 */
Matt Evans28ccd292011-03-29 13:40:46 +11001200 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001201 }
1202 return ret;
1203}
1204
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001205/*
1206 * non-error returns are a promise to giveback() the urb later
1207 * we drop ownership so next owner (or urb unlink) can get it
1208 */
1209int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1210{
1211 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001212 struct xhci_td *buffer;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001213 unsigned long flags;
1214 int ret = 0;
1215 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001216 struct urb_priv *urb_priv;
1217 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001218
Andiry Xu64927732010-10-14 07:22:45 -07001219 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1220 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001221 return -EINVAL;
1222
1223 slot_id = urb->dev->slot_id;
1224 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001225
Alan Stern541c7d42010-06-22 16:39:10 -04001226 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001227 if (!in_interrupt())
1228 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1229 ret = -ESHUTDOWN;
1230 goto exit;
1231 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001232
1233 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1234 size = urb->number_of_packets;
1235 else
1236 size = 1;
1237
1238 urb_priv = kzalloc(sizeof(struct urb_priv) +
1239 size * sizeof(struct xhci_td *), mem_flags);
1240 if (!urb_priv)
1241 return -ENOMEM;
1242
Andiry Xu2ffdea22011-09-02 11:05:57 -07001243 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1244 if (!buffer) {
1245 kfree(urb_priv);
1246 return -ENOMEM;
1247 }
1248
Andiry Xu8e51adc2010-07-22 15:23:31 -07001249 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001250 urb_priv->td[i] = buffer;
1251 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001252 }
1253
1254 urb_priv->length = size;
1255 urb_priv->td_cnt = 0;
1256 urb->hcpriv = urb_priv;
1257
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001258 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1259 /* Check to see if the max packet size for the default control
1260 * endpoint changed during FS device enumeration
1261 */
1262 if (urb->dev->speed == USB_SPEED_FULL) {
1263 ret = xhci_check_maxpacket(xhci, slot_id,
1264 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001265 if (ret < 0) {
1266 xhci_urb_free_priv(xhci, urb_priv);
1267 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001268 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001269 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001270 }
1271
Sarah Sharpb11069f2009-07-27 12:03:23 -07001272 /* We have a spinlock and interrupts disabled, so we must pass
1273 * atomic context to this function, which may allocate memory.
1274 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001275 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001276 if (xhci->xhc_state & XHCI_STATE_DYING)
1277 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001278 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001279 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001280 if (ret)
1281 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001282 spin_unlock_irqrestore(&xhci->lock, flags);
1283 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1284 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001285 if (xhci->xhc_state & XHCI_STATE_DYING)
1286 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001287 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1288 EP_GETTING_STREAMS) {
1289 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1290 "is transitioning to using streams.\n");
1291 ret = -EINVAL;
1292 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1293 EP_GETTING_NO_STREAMS) {
1294 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1295 "is transitioning to "
1296 "not having streams.\n");
1297 ret = -EINVAL;
1298 } else {
1299 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1300 slot_id, ep_index);
1301 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001302 if (ret)
1303 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001304 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001305 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1306 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001307 if (xhci->xhc_state & XHCI_STATE_DYING)
1308 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001309 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1310 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001311 if (ret)
1312 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001313 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001314 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001315 spin_lock_irqsave(&xhci->lock, flags);
1316 if (xhci->xhc_state & XHCI_STATE_DYING)
1317 goto dying;
1318 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1319 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001320 if (ret)
1321 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001322 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001323 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001324exit:
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001325 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001326dying:
1327 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1328 "non-responsive xHCI host.\n",
1329 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001330 ret = -ESHUTDOWN;
1331free_priv:
1332 xhci_urb_free_priv(xhci, urb_priv);
1333 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001334 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001335 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001336}
1337
Sarah Sharp021bff92010-07-29 22:12:20 -07001338/* Get the right ring for the given URB.
1339 * If the endpoint supports streams, boundary check the URB's stream ID.
1340 * If the endpoint doesn't support streams, return the singular endpoint ring.
1341 */
1342static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1343 struct urb *urb)
1344{
1345 unsigned int slot_id;
1346 unsigned int ep_index;
1347 unsigned int stream_id;
1348 struct xhci_virt_ep *ep;
1349
1350 slot_id = urb->dev->slot_id;
1351 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1352 stream_id = urb->stream_id;
1353 ep = &xhci->devs[slot_id]->eps[ep_index];
1354 /* Common case: no streams */
1355 if (!(ep->ep_state & EP_HAS_STREAMS))
1356 return ep->ring;
1357
1358 if (stream_id == 0) {
1359 xhci_warn(xhci,
1360 "WARN: Slot ID %u, ep index %u has streams, "
1361 "but URB has no stream ID.\n",
1362 slot_id, ep_index);
1363 return NULL;
1364 }
1365
1366 if (stream_id < ep->stream_info->num_streams)
1367 return ep->stream_info->stream_rings[stream_id];
1368
1369 xhci_warn(xhci,
1370 "WARN: Slot ID %u, ep index %u has "
1371 "stream IDs 1 to %u allocated, "
1372 "but stream ID %u is requested.\n",
1373 slot_id, ep_index,
1374 ep->stream_info->num_streams - 1,
1375 stream_id);
1376 return NULL;
1377}
1378
Sarah Sharpae636742009-04-29 19:02:31 -07001379/*
1380 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1381 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1382 * should pick up where it left off in the TD, unless a Set Transfer Ring
1383 * Dequeue Pointer is issued.
1384 *
1385 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1386 * the ring. Since the ring is a contiguous structure, they can't be physically
1387 * removed. Instead, there are two options:
1388 *
1389 * 1) If the HC is in the middle of processing the URB to be canceled, we
1390 * simply move the ring's dequeue pointer past those TRBs using the Set
1391 * Transfer Ring Dequeue Pointer command. This will be the common case,
1392 * when drivers timeout on the last submitted URB and attempt to cancel.
1393 *
1394 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1395 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1396 * HC will need to invalidate the any TRBs it has cached after the stop
1397 * endpoint command, as noted in the xHCI 0.95 errata.
1398 *
1399 * 3) The TD may have completed by the time the Stop Endpoint Command
1400 * completes, so software needs to handle that case too.
1401 *
1402 * This function should protect against the TD enqueueing code ringing the
1403 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1404 * It also needs to account for multiple cancellations on happening at the same
1405 * time for the same endpoint.
1406 *
1407 * Note that this function can be called in any context, or so says
1408 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001409 */
1410int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1411{
Sarah Sharpae636742009-04-29 19:02:31 -07001412 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001413 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001414 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001415 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001416 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001417 struct xhci_td *td;
1418 unsigned int ep_index;
1419 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001420 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07001421
1422 xhci = hcd_to_xhci(hcd);
1423 spin_lock_irqsave(&xhci->lock, flags);
1424 /* Make sure the URB hasn't completed or been unlinked already */
1425 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1426 if (ret || !urb->hcpriv)
1427 goto done;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001428 temp = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001429 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001430 xhci_dbg(xhci, "HW died, freeing TD.\n");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001431 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001432 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1433 td = urb_priv->td[i];
1434 if (!list_empty(&td->td_list))
1435 list_del_init(&td->td_list);
1436 if (!list_empty(&td->cancelled_td_list))
1437 list_del_init(&td->cancelled_td_list);
1438 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001439
1440 usb_hcd_unlink_urb_from_ep(hcd, urb);
1441 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001442 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001443 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001444 return ret;
1445 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001446 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1447 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001448 xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on "
1449 "non-responsive xHCI host.\n",
1450 urb->ep->desc.bEndpointAddress, urb);
1451 /* Let the stop endpoint command watchdog timer (which set this
1452 * state) finish cleaning up the endpoint TD lists. We must
1453 * have caught it in the middle of dropping a lock and giving
1454 * back an URB.
1455 */
1456 goto done;
1457 }
Sarah Sharpae636742009-04-29 19:02:31 -07001458
Sarah Sharpae636742009-04-29 19:02:31 -07001459 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001460 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001461 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1462 if (!ep_ring) {
1463 ret = -EINVAL;
1464 goto done;
1465 }
1466
Andiry Xu8e51adc2010-07-22 15:23:31 -07001467 urb_priv = urb->hcpriv;
Sarah Sharp79688ac2011-12-19 16:56:04 -08001468 i = urb_priv->td_cnt;
1469 if (i < urb_priv->length)
1470 xhci_dbg(xhci, "Cancel URB %p, dev %s, ep 0x%x, "
1471 "starting at offset 0x%llx\n",
1472 urb, urb->dev->devpath,
1473 urb->ep->desc.bEndpointAddress,
1474 (unsigned long long) xhci_trb_virt_to_dma(
1475 urb_priv->td[i]->start_seg,
1476 urb_priv->td[i]->first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001477
Sarah Sharp79688ac2011-12-19 16:56:04 -08001478 for (; i < urb_priv->length; i++) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001479 td = urb_priv->td[i];
1480 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1481 }
1482
Sarah Sharpae636742009-04-29 19:02:31 -07001483 /* Queue a stop endpoint command, but only if this is
1484 * the first cancellation to be handled.
1485 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001486 if (!(ep->ep_state & EP_HALT_PENDING)) {
1487 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001488 ep->stop_cmds_pending++;
1489 ep->stop_cmd_timer.expires = jiffies +
1490 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1491 add_timer(&ep->stop_cmd_timer);
Andiry Xube88fe42010-10-14 07:22:57 -07001492 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001493 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001494 }
1495done:
1496 spin_unlock_irqrestore(&xhci->lock, flags);
1497 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001498}
1499
Sarah Sharpf94e01862009-04-27 19:58:38 -07001500/* Drop an endpoint from a new bandwidth configuration for this device.
1501 * Only one call to this function is allowed per endpoint before
1502 * check_bandwidth() or reset_bandwidth() must be called.
1503 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1504 * add the endpoint to the schedule with possibly new parameters denoted by a
1505 * different endpoint descriptor in usb_host_endpoint.
1506 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1507 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001508 *
1509 * The USB core will not allow URBs to be queued to an endpoint that is being
1510 * disabled, so there's no need for mutual exclusion to protect
1511 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001512 */
1513int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1514 struct usb_host_endpoint *ep)
1515{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001516 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001517 struct xhci_container_ctx *in_ctx, *out_ctx;
1518 struct xhci_input_control_ctx *ctrl_ctx;
1519 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001520 unsigned int last_ctx;
1521 unsigned int ep_index;
1522 struct xhci_ep_ctx *ep_ctx;
1523 u32 drop_flag;
1524 u32 new_add_flags, new_drop_flags, new_slot_info;
1525 int ret;
1526
Andiry Xu64927732010-10-14 07:22:45 -07001527 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001528 if (ret <= 0)
1529 return ret;
1530 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001531 if (xhci->xhc_state & XHCI_STATE_DYING)
1532 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001533
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001534 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001535 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1536 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1537 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1538 __func__, drop_flag);
1539 return 0;
1540 }
1541
Sarah Sharpf94e01862009-04-27 19:58:38 -07001542 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001543 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1544 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001545 if (!ctrl_ctx) {
1546 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1547 __func__);
1548 return 0;
1549 }
1550
Sarah Sharpf94e01862009-04-27 19:58:38 -07001551 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001552 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001553 /* If the HC already knows the endpoint is disabled,
1554 * or the HCD has noted it is disabled, ignore this request
1555 */
Matt Evansf5960b62011-06-01 10:22:55 +10001556 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1557 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001558 le32_to_cpu(ctrl_ctx->drop_flags) &
1559 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001560 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1561 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001562 return 0;
1563 }
1564
Matt Evans28ccd292011-03-29 13:40:46 +11001565 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1566 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001567
Matt Evans28ccd292011-03-29 13:40:46 +11001568 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1569 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001570
Matt Evans28ccd292011-03-29 13:40:46 +11001571 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
John Yound115b042009-07-27 12:05:15 -07001572 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001573 /* Update the last valid endpoint context, if we deleted the last one */
Matt Evans28ccd292011-03-29 13:40:46 +11001574 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1575 LAST_CTX(last_ctx)) {
1576 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1577 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001578 }
Matt Evans28ccd292011-03-29 13:40:46 +11001579 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001580
1581 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1582
Sarah Sharpf94e01862009-04-27 19:58:38 -07001583 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1584 (unsigned int) ep->desc.bEndpointAddress,
1585 udev->slot_id,
1586 (unsigned int) new_drop_flags,
1587 (unsigned int) new_add_flags,
1588 (unsigned int) new_slot_info);
1589 return 0;
1590}
1591
1592/* Add an endpoint to a new possible bandwidth configuration for this device.
1593 * Only one call to this function is allowed per endpoint before
1594 * check_bandwidth() or reset_bandwidth() must be called.
1595 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1596 * add the endpoint to the schedule with possibly new parameters denoted by a
1597 * different endpoint descriptor in usb_host_endpoint.
1598 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1599 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001600 *
1601 * The USB core will not allow URBs to be queued to an endpoint until the
1602 * configuration or alt setting is installed in the device, so there's no need
1603 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001604 */
1605int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1606 struct usb_host_endpoint *ep)
1607{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001608 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001609 struct xhci_container_ctx *in_ctx, *out_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001610 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001611 struct xhci_slot_ctx *slot_ctx;
1612 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001613 u32 added_ctxs;
1614 unsigned int last_ctx;
1615 u32 new_add_flags, new_drop_flags, new_slot_info;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001616 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001617 int ret = 0;
1618
Andiry Xu64927732010-10-14 07:22:45 -07001619 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001620 if (ret <= 0) {
1621 /* So we won't queue a reset ep command for a root hub */
1622 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001623 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001624 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001625 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001626 if (xhci->xhc_state & XHCI_STATE_DYING)
1627 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001628
1629 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1630 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1631 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1632 /* FIXME when we have to issue an evaluate endpoint command to
1633 * deal with ep0 max packet size changing once we get the
1634 * descriptors
1635 */
1636 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1637 __func__, added_ctxs);
1638 return 0;
1639 }
1640
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001641 virt_dev = xhci->devs[udev->slot_id];
1642 in_ctx = virt_dev->in_ctx;
1643 out_ctx = virt_dev->out_ctx;
John Yound115b042009-07-27 12:05:15 -07001644 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001645 if (!ctrl_ctx) {
1646 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1647 __func__);
1648 return 0;
1649 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001650
Sarah Sharp92f8e762013-04-23 17:11:14 -07001651 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001652 /* If this endpoint is already in use, and the upper layers are trying
1653 * to add it again without dropping it, reject the addition.
1654 */
1655 if (virt_dev->eps[ep_index].ring &&
1656 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1657 xhci_get_endpoint_flag(&ep->desc))) {
1658 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1659 "without dropping it.\n",
1660 (unsigned int) ep->desc.bEndpointAddress);
1661 return -EINVAL;
1662 }
1663
Sarah Sharpf94e01862009-04-27 19:58:38 -07001664 /* If the HCD has already noted the endpoint is enabled,
1665 * ignore this request.
1666 */
Matt Evans28ccd292011-03-29 13:40:46 +11001667 if (le32_to_cpu(ctrl_ctx->add_flags) &
1668 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001669 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1670 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001671 return 0;
1672 }
1673
Sarah Sharpf88ba782009-05-14 11:44:22 -07001674 /*
1675 * Configuration and alternate setting changes must be done in
1676 * process context, not interrupt context (or so documenation
1677 * for usb_set_interface() and usb_set_configuration() claim).
1678 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001679 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001680 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1681 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001682 return -ENOMEM;
1683 }
1684
Matt Evans28ccd292011-03-29 13:40:46 +11001685 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1686 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001687
1688 /* If xhci_endpoint_disable() was called for this endpoint, but the
1689 * xHC hasn't been notified yet through the check_bandwidth() call,
1690 * this re-adds a new state for the endpoint from the new endpoint
1691 * descriptors. We must drop and re-add this endpoint, so we leave the
1692 * drop flags alone.
1693 */
Matt Evans28ccd292011-03-29 13:40:46 +11001694 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001695
John Yound115b042009-07-27 12:05:15 -07001696 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001697 /* Update the last valid endpoint context, if we just added one past */
Matt Evans28ccd292011-03-29 13:40:46 +11001698 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1699 LAST_CTX(last_ctx)) {
1700 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1701 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001702 }
Matt Evans28ccd292011-03-29 13:40:46 +11001703 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001704
Sarah Sharpa1587d92009-07-27 12:03:15 -07001705 /* Store the usb_device pointer for later use */
1706 ep->hcpriv = udev;
1707
Sarah Sharpf94e01862009-04-27 19:58:38 -07001708 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1709 (unsigned int) ep->desc.bEndpointAddress,
1710 udev->slot_id,
1711 (unsigned int) new_drop_flags,
1712 (unsigned int) new_add_flags,
1713 (unsigned int) new_slot_info);
1714 return 0;
1715}
1716
John Yound115b042009-07-27 12:05:15 -07001717static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001718{
John Yound115b042009-07-27 12:05:15 -07001719 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001720 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001721 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001722 int i;
1723
Sarah Sharp92f8e762013-04-23 17:11:14 -07001724 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1725 if (!ctrl_ctx) {
1726 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1727 __func__);
1728 return;
1729 }
1730
Sarah Sharpf94e01862009-04-27 19:58:38 -07001731 /* When a device's add flag and drop flag are zero, any subsequent
1732 * configure endpoint command will leave that endpoint's state
1733 * untouched. Make sure we don't leave any old state in the input
1734 * endpoint contexts.
1735 */
John Yound115b042009-07-27 12:05:15 -07001736 ctrl_ctx->drop_flags = 0;
1737 ctrl_ctx->add_flags = 0;
1738 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001739 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001740 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001741 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001742 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001743 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001744 ep_ctx->ep_info = 0;
1745 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001746 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001747 ep_ctx->tx_info = 0;
1748 }
1749}
1750
Sarah Sharpf2217e82009-08-07 14:04:43 -07001751static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001752 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001753{
1754 int ret;
1755
Sarah Sharp913a8a32009-09-04 10:53:13 -07001756 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001757 case COMP_ENOMEM:
1758 dev_warn(&udev->dev, "Not enough host controller resources "
1759 "for new device state.\n");
1760 ret = -ENOMEM;
1761 /* FIXME: can we allocate more resources for the HC? */
1762 break;
1763 case COMP_BW_ERR:
Hans de Goede71d85722012-01-04 23:29:18 +01001764 case COMP_2ND_BW_ERR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001765 dev_warn(&udev->dev, "Not enough bandwidth "
1766 "for new device state.\n");
1767 ret = -ENOSPC;
1768 /* FIXME: can we go back to the old state? */
1769 break;
1770 case COMP_TRB_ERR:
1771 /* the HCD set up something wrong */
1772 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1773 "add flag = 1, "
1774 "and endpoint is not disabled.\n");
1775 ret = -EINVAL;
1776 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001777 case COMP_DEV_ERR:
1778 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1779 "configure command.\n");
1780 ret = -ENODEV;
1781 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001782 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001783 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1784 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001785 ret = 0;
1786 break;
1787 default:
1788 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001789 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001790 ret = -EINVAL;
1791 break;
1792 }
1793 return ret;
1794}
1795
1796static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001797 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001798{
1799 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001800 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001801
Sarah Sharp913a8a32009-09-04 10:53:13 -07001802 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001803 case COMP_EINVAL:
1804 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1805 "context command.\n");
1806 ret = -EINVAL;
1807 break;
1808 case COMP_EBADSLT:
1809 dev_warn(&udev->dev, "WARN: slot not enabled for"
1810 "evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001811 ret = -EINVAL;
1812 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001813 case COMP_CTX_STATE:
1814 dev_warn(&udev->dev, "WARN: invalid context state for "
1815 "evaluate context command.\n");
1816 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1817 ret = -EINVAL;
1818 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001819 case COMP_DEV_ERR:
1820 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
1821 "context command.\n");
1822 ret = -ENODEV;
1823 break;
Alex He1bb73a82011-05-05 18:14:12 +08001824 case COMP_MEL_ERR:
1825 /* Max Exit Latency too large error */
1826 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1827 ret = -EINVAL;
1828 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001829 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001830 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1831 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001832 ret = 0;
1833 break;
1834 default:
1835 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001836 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001837 ret = -EINVAL;
1838 break;
1839 }
1840 return ret;
1841}
1842
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001843static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001844 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001845{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001846 u32 valid_add_flags;
1847 u32 valid_drop_flags;
1848
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001849 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1850 * (bit 1). The default control endpoint is added during the Address
1851 * Device command and is never removed until the slot is disabled.
1852 */
1853 valid_add_flags = ctrl_ctx->add_flags >> 2;
1854 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1855
1856 /* Use hweight32 to count the number of ones in the add flags, or
1857 * number of endpoints added. Don't count endpoints that are changed
1858 * (both added and dropped).
1859 */
1860 return hweight32(valid_add_flags) -
1861 hweight32(valid_add_flags & valid_drop_flags);
1862}
1863
1864static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001865 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001866{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001867 u32 valid_add_flags;
1868 u32 valid_drop_flags;
1869
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001870 valid_add_flags = ctrl_ctx->add_flags >> 2;
1871 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1872
1873 return hweight32(valid_drop_flags) -
1874 hweight32(valid_add_flags & valid_drop_flags);
1875}
1876
1877/*
1878 * We need to reserve the new number of endpoints before the configure endpoint
1879 * command completes. We can't subtract the dropped endpoints from the number
1880 * of active endpoints until the command completes because we can oversubscribe
1881 * the host in this case:
1882 *
1883 * - the first configure endpoint command drops more endpoints than it adds
1884 * - a second configure endpoint command that adds more endpoints is queued
1885 * - the first configure endpoint command fails, so the config is unchanged
1886 * - the second command may succeed, even though there isn't enough resources
1887 *
1888 * Must be called with xhci->lock held.
1889 */
1890static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001891 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001892{
1893 u32 added_eps;
1894
Sarah Sharp92f8e762013-04-23 17:11:14 -07001895 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001896 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
1897 xhci_dbg(xhci, "Not enough ep ctxs: "
1898 "%u active, need to add %u, limit is %u.\n",
1899 xhci->num_active_eps, added_eps,
1900 xhci->limit_active_eps);
1901 return -ENOMEM;
1902 }
1903 xhci->num_active_eps += added_eps;
1904 xhci_dbg(xhci, "Adding %u ep ctxs, %u now active.\n", added_eps,
1905 xhci->num_active_eps);
1906 return 0;
1907}
1908
1909/*
1910 * The configure endpoint was failed by the xHC for some other reason, so we
1911 * need to revert the resources that failed configuration would have used.
1912 *
1913 * Must be called with xhci->lock held.
1914 */
1915static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001916 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001917{
1918 u32 num_failed_eps;
1919
Sarah Sharp92f8e762013-04-23 17:11:14 -07001920 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001921 xhci->num_active_eps -= num_failed_eps;
1922 xhci_dbg(xhci, "Removing %u failed ep ctxs, %u now active.\n",
1923 num_failed_eps,
1924 xhci->num_active_eps);
1925}
1926
1927/*
1928 * Now that the command has completed, clean up the active endpoint count by
1929 * subtracting out the endpoints that were dropped (but not changed).
1930 *
1931 * Must be called with xhci->lock held.
1932 */
1933static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001934 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001935{
1936 u32 num_dropped_eps;
1937
Sarah Sharp92f8e762013-04-23 17:11:14 -07001938 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001939 xhci->num_active_eps -= num_dropped_eps;
1940 if (num_dropped_eps)
1941 xhci_dbg(xhci, "Removing %u dropped ep ctxs, %u now active.\n",
1942 num_dropped_eps,
1943 xhci->num_active_eps);
1944}
1945
Felipe Balbied384bd2012-08-07 14:10:03 +03001946static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001947{
1948 switch (udev->speed) {
1949 case USB_SPEED_LOW:
1950 case USB_SPEED_FULL:
1951 return FS_BLOCK;
1952 case USB_SPEED_HIGH:
1953 return HS_BLOCK;
1954 case USB_SPEED_SUPER:
1955 return SS_BLOCK;
1956 case USB_SPEED_UNKNOWN:
1957 case USB_SPEED_WIRELESS:
1958 default:
1959 /* Should never happen */
1960 return 1;
1961 }
1962}
1963
Felipe Balbied384bd2012-08-07 14:10:03 +03001964static unsigned int
1965xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001966{
1967 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1968 return LS_OVERHEAD;
1969 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1970 return FS_OVERHEAD;
1971 return HS_OVERHEAD;
1972}
1973
1974/* If we are changing a LS/FS device under a HS hub,
1975 * make sure (if we are activating a new TT) that the HS bus has enough
1976 * bandwidth for this new TT.
1977 */
1978static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
1979 struct xhci_virt_device *virt_dev,
1980 int old_active_eps)
1981{
1982 struct xhci_interval_bw_table *bw_table;
1983 struct xhci_tt_bw_info *tt_info;
1984
1985 /* Find the bandwidth table for the root port this TT is attached to. */
1986 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
1987 tt_info = virt_dev->tt_info;
1988 /* If this TT already had active endpoints, the bandwidth for this TT
1989 * has already been added. Removing all periodic endpoints (and thus
1990 * making the TT enactive) will only decrease the bandwidth used.
1991 */
1992 if (old_active_eps)
1993 return 0;
1994 if (old_active_eps == 0 && tt_info->active_eps != 0) {
1995 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
1996 return -ENOMEM;
1997 return 0;
1998 }
1999 /* Not sure why we would have no new active endpoints...
2000 *
2001 * Maybe because of an Evaluate Context change for a hub update or a
2002 * control endpoint 0 max packet size change?
2003 * FIXME: skip the bandwidth calculation in that case.
2004 */
2005 return 0;
2006}
2007
Sarah Sharp2b698992011-09-13 16:41:13 -07002008static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2009 struct xhci_virt_device *virt_dev)
2010{
2011 unsigned int bw_reserved;
2012
2013 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2014 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2015 return -ENOMEM;
2016
2017 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2018 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2019 return -ENOMEM;
2020
2021 return 0;
2022}
2023
Sarah Sharpc29eea62011-09-02 11:05:52 -07002024/*
2025 * This algorithm is a very conservative estimate of the worst-case scheduling
2026 * scenario for any one interval. The hardware dynamically schedules the
2027 * packets, so we can't tell which microframe could be the limiting factor in
2028 * the bandwidth scheduling. This only takes into account periodic endpoints.
2029 *
2030 * Obviously, we can't solve an NP complete problem to find the minimum worst
2031 * case scenario. Instead, we come up with an estimate that is no less than
2032 * the worst case bandwidth used for any one microframe, but may be an
2033 * over-estimate.
2034 *
2035 * We walk the requirements for each endpoint by interval, starting with the
2036 * smallest interval, and place packets in the schedule where there is only one
2037 * possible way to schedule packets for that interval. In order to simplify
2038 * this algorithm, we record the largest max packet size for each interval, and
2039 * assume all packets will be that size.
2040 *
2041 * For interval 0, we obviously must schedule all packets for each interval.
2042 * The bandwidth for interval 0 is just the amount of data to be transmitted
2043 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2044 * the number of packets).
2045 *
2046 * For interval 1, we have two possible microframes to schedule those packets
2047 * in. For this algorithm, if we can schedule the same number of packets for
2048 * each possible scheduling opportunity (each microframe), we will do so. The
2049 * remaining number of packets will be saved to be transmitted in the gaps in
2050 * the next interval's scheduling sequence.
2051 *
2052 * As we move those remaining packets to be scheduled with interval 2 packets,
2053 * we have to double the number of remaining packets to transmit. This is
2054 * because the intervals are actually powers of 2, and we would be transmitting
2055 * the previous interval's packets twice in this interval. We also have to be
2056 * sure that when we look at the largest max packet size for this interval, we
2057 * also look at the largest max packet size for the remaining packets and take
2058 * the greater of the two.
2059 *
2060 * The algorithm continues to evenly distribute packets in each scheduling
2061 * opportunity, and push the remaining packets out, until we get to the last
2062 * interval. Then those packets and their associated overhead are just added
2063 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002064 */
2065static int xhci_check_bw_table(struct xhci_hcd *xhci,
2066 struct xhci_virt_device *virt_dev,
2067 int old_active_eps)
2068{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002069 unsigned int bw_reserved;
2070 unsigned int max_bandwidth;
2071 unsigned int bw_used;
2072 unsigned int block_size;
2073 struct xhci_interval_bw_table *bw_table;
2074 unsigned int packet_size = 0;
2075 unsigned int overhead = 0;
2076 unsigned int packets_transmitted = 0;
2077 unsigned int packets_remaining = 0;
2078 unsigned int i;
2079
Sarah Sharp2b698992011-09-13 16:41:13 -07002080 if (virt_dev->udev->speed == USB_SPEED_SUPER)
2081 return xhci_check_ss_bw(xhci, virt_dev);
2082
Sarah Sharpc29eea62011-09-02 11:05:52 -07002083 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2084 max_bandwidth = HS_BW_LIMIT;
2085 /* Convert percent of bus BW reserved to blocks reserved */
2086 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2087 } else {
2088 max_bandwidth = FS_BW_LIMIT;
2089 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2090 }
2091
2092 bw_table = virt_dev->bw_table;
2093 /* We need to translate the max packet size and max ESIT payloads into
2094 * the units the hardware uses.
2095 */
2096 block_size = xhci_get_block_size(virt_dev->udev);
2097
2098 /* If we are manipulating a LS/FS device under a HS hub, double check
2099 * that the HS bus has enough bandwidth if we are activing a new TT.
2100 */
2101 if (virt_dev->tt_info) {
2102 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
2103 virt_dev->real_port);
2104 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2105 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2106 "newly activated TT.\n");
2107 return -ENOMEM;
2108 }
2109 xhci_dbg(xhci, "Recalculating BW for TT slot %u port %u\n",
2110 virt_dev->tt_info->slot_id,
2111 virt_dev->tt_info->ttport);
2112 } else {
2113 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
2114 virt_dev->real_port);
2115 }
2116
2117 /* Add in how much bandwidth will be used for interval zero, or the
2118 * rounded max ESIT payload + number of packets * largest overhead.
2119 */
2120 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2121 bw_table->interval_bw[0].num_packets *
2122 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2123
2124 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2125 unsigned int bw_added;
2126 unsigned int largest_mps;
2127 unsigned int interval_overhead;
2128
2129 /*
2130 * How many packets could we transmit in this interval?
2131 * If packets didn't fit in the previous interval, we will need
2132 * to transmit that many packets twice within this interval.
2133 */
2134 packets_remaining = 2 * packets_remaining +
2135 bw_table->interval_bw[i].num_packets;
2136
2137 /* Find the largest max packet size of this or the previous
2138 * interval.
2139 */
2140 if (list_empty(&bw_table->interval_bw[i].endpoints))
2141 largest_mps = 0;
2142 else {
2143 struct xhci_virt_ep *virt_ep;
2144 struct list_head *ep_entry;
2145
2146 ep_entry = bw_table->interval_bw[i].endpoints.next;
2147 virt_ep = list_entry(ep_entry,
2148 struct xhci_virt_ep, bw_endpoint_list);
2149 /* Convert to blocks, rounding up */
2150 largest_mps = DIV_ROUND_UP(
2151 virt_ep->bw_info.max_packet_size,
2152 block_size);
2153 }
2154 if (largest_mps > packet_size)
2155 packet_size = largest_mps;
2156
2157 /* Use the larger overhead of this or the previous interval. */
2158 interval_overhead = xhci_get_largest_overhead(
2159 &bw_table->interval_bw[i]);
2160 if (interval_overhead > overhead)
2161 overhead = interval_overhead;
2162
2163 /* How many packets can we evenly distribute across
2164 * (1 << (i + 1)) possible scheduling opportunities?
2165 */
2166 packets_transmitted = packets_remaining >> (i + 1);
2167
2168 /* Add in the bandwidth used for those scheduled packets */
2169 bw_added = packets_transmitted * (overhead + packet_size);
2170
2171 /* How many packets do we have remaining to transmit? */
2172 packets_remaining = packets_remaining % (1 << (i + 1));
2173
2174 /* What largest max packet size should those packets have? */
2175 /* If we've transmitted all packets, don't carry over the
2176 * largest packet size.
2177 */
2178 if (packets_remaining == 0) {
2179 packet_size = 0;
2180 overhead = 0;
2181 } else if (packets_transmitted > 0) {
2182 /* Otherwise if we do have remaining packets, and we've
2183 * scheduled some packets in this interval, take the
2184 * largest max packet size from endpoints with this
2185 * interval.
2186 */
2187 packet_size = largest_mps;
2188 overhead = interval_overhead;
2189 }
2190 /* Otherwise carry over packet_size and overhead from the last
2191 * time we had a remainder.
2192 */
2193 bw_used += bw_added;
2194 if (bw_used > max_bandwidth) {
2195 xhci_warn(xhci, "Not enough bandwidth. "
2196 "Proposed: %u, Max: %u\n",
2197 bw_used, max_bandwidth);
2198 return -ENOMEM;
2199 }
2200 }
2201 /*
2202 * Ok, we know we have some packets left over after even-handedly
2203 * scheduling interval 15. We don't know which microframes they will
2204 * fit into, so we over-schedule and say they will be scheduled every
2205 * microframe.
2206 */
2207 if (packets_remaining > 0)
2208 bw_used += overhead + packet_size;
2209
2210 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2211 unsigned int port_index = virt_dev->real_port - 1;
2212
2213 /* OK, we're manipulating a HS device attached to a
2214 * root port bandwidth domain. Include the number of active TTs
2215 * in the bandwidth used.
2216 */
2217 bw_used += TT_HS_OVERHEAD *
2218 xhci->rh_bw[port_index].num_active_tts;
2219 }
2220
2221 xhci_dbg(xhci, "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2222 "Available: %u " "percent\n",
2223 bw_used, max_bandwidth, bw_reserved,
2224 (max_bandwidth - bw_used - bw_reserved) * 100 /
2225 max_bandwidth);
2226
2227 bw_used += bw_reserved;
2228 if (bw_used > max_bandwidth) {
2229 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2230 bw_used, max_bandwidth);
2231 return -ENOMEM;
2232 }
2233
2234 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002235 return 0;
2236}
2237
2238static bool xhci_is_async_ep(unsigned int ep_type)
2239{
2240 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2241 ep_type != ISOC_IN_EP &&
2242 ep_type != INT_IN_EP);
2243}
2244
Sarah Sharp2b698992011-09-13 16:41:13 -07002245static bool xhci_is_sync_in_ep(unsigned int ep_type)
2246{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002247 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002248}
2249
2250static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2251{
2252 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2253
2254 if (ep_bw->ep_interval == 0)
2255 return SS_OVERHEAD_BURST +
2256 (ep_bw->mult * ep_bw->num_packets *
2257 (SS_OVERHEAD + mps));
2258 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2259 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2260 1 << ep_bw->ep_interval);
2261
2262}
2263
Sarah Sharp2e279802011-09-02 11:05:50 -07002264void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2265 struct xhci_bw_info *ep_bw,
2266 struct xhci_interval_bw_table *bw_table,
2267 struct usb_device *udev,
2268 struct xhci_virt_ep *virt_ep,
2269 struct xhci_tt_bw_info *tt_info)
2270{
2271 struct xhci_interval_bw *interval_bw;
2272 int normalized_interval;
2273
Sarah Sharp2b698992011-09-13 16:41:13 -07002274 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002275 return;
2276
Sarah Sharp2b698992011-09-13 16:41:13 -07002277 if (udev->speed == USB_SPEED_SUPER) {
2278 if (xhci_is_sync_in_ep(ep_bw->type))
2279 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2280 xhci_get_ss_bw_consumed(ep_bw);
2281 else
2282 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2283 xhci_get_ss_bw_consumed(ep_bw);
2284 return;
2285 }
2286
2287 /* SuperSpeed endpoints never get added to intervals in the table, so
2288 * this check is only valid for HS/FS/LS devices.
2289 */
2290 if (list_empty(&virt_ep->bw_endpoint_list))
2291 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002292 /* For LS/FS devices, we need to translate the interval expressed in
2293 * microframes to frames.
2294 */
2295 if (udev->speed == USB_SPEED_HIGH)
2296 normalized_interval = ep_bw->ep_interval;
2297 else
2298 normalized_interval = ep_bw->ep_interval - 3;
2299
2300 if (normalized_interval == 0)
2301 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2302 interval_bw = &bw_table->interval_bw[normalized_interval];
2303 interval_bw->num_packets -= ep_bw->num_packets;
2304 switch (udev->speed) {
2305 case USB_SPEED_LOW:
2306 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2307 break;
2308 case USB_SPEED_FULL:
2309 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2310 break;
2311 case USB_SPEED_HIGH:
2312 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2313 break;
2314 case USB_SPEED_SUPER:
2315 case USB_SPEED_UNKNOWN:
2316 case USB_SPEED_WIRELESS:
2317 /* Should never happen because only LS/FS/HS endpoints will get
2318 * added to the endpoint list.
2319 */
2320 return;
2321 }
2322 if (tt_info)
2323 tt_info->active_eps -= 1;
2324 list_del_init(&virt_ep->bw_endpoint_list);
2325}
2326
2327static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2328 struct xhci_bw_info *ep_bw,
2329 struct xhci_interval_bw_table *bw_table,
2330 struct usb_device *udev,
2331 struct xhci_virt_ep *virt_ep,
2332 struct xhci_tt_bw_info *tt_info)
2333{
2334 struct xhci_interval_bw *interval_bw;
2335 struct xhci_virt_ep *smaller_ep;
2336 int normalized_interval;
2337
2338 if (xhci_is_async_ep(ep_bw->type))
2339 return;
2340
Sarah Sharp2b698992011-09-13 16:41:13 -07002341 if (udev->speed == USB_SPEED_SUPER) {
2342 if (xhci_is_sync_in_ep(ep_bw->type))
2343 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2344 xhci_get_ss_bw_consumed(ep_bw);
2345 else
2346 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2347 xhci_get_ss_bw_consumed(ep_bw);
2348 return;
2349 }
2350
Sarah Sharp2e279802011-09-02 11:05:50 -07002351 /* For LS/FS devices, we need to translate the interval expressed in
2352 * microframes to frames.
2353 */
2354 if (udev->speed == USB_SPEED_HIGH)
2355 normalized_interval = ep_bw->ep_interval;
2356 else
2357 normalized_interval = ep_bw->ep_interval - 3;
2358
2359 if (normalized_interval == 0)
2360 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2361 interval_bw = &bw_table->interval_bw[normalized_interval];
2362 interval_bw->num_packets += ep_bw->num_packets;
2363 switch (udev->speed) {
2364 case USB_SPEED_LOW:
2365 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2366 break;
2367 case USB_SPEED_FULL:
2368 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2369 break;
2370 case USB_SPEED_HIGH:
2371 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2372 break;
2373 case USB_SPEED_SUPER:
2374 case USB_SPEED_UNKNOWN:
2375 case USB_SPEED_WIRELESS:
2376 /* Should never happen because only LS/FS/HS endpoints will get
2377 * added to the endpoint list.
2378 */
2379 return;
2380 }
2381
2382 if (tt_info)
2383 tt_info->active_eps += 1;
2384 /* Insert the endpoint into the list, largest max packet size first. */
2385 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2386 bw_endpoint_list) {
2387 if (ep_bw->max_packet_size >=
2388 smaller_ep->bw_info.max_packet_size) {
2389 /* Add the new ep before the smaller endpoint */
2390 list_add_tail(&virt_ep->bw_endpoint_list,
2391 &smaller_ep->bw_endpoint_list);
2392 return;
2393 }
2394 }
2395 /* Add the new endpoint at the end of the list. */
2396 list_add_tail(&virt_ep->bw_endpoint_list,
2397 &interval_bw->endpoints);
2398}
2399
2400void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2401 struct xhci_virt_device *virt_dev,
2402 int old_active_eps)
2403{
2404 struct xhci_root_port_bw_info *rh_bw_info;
2405 if (!virt_dev->tt_info)
2406 return;
2407
2408 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2409 if (old_active_eps == 0 &&
2410 virt_dev->tt_info->active_eps != 0) {
2411 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002412 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002413 } else if (old_active_eps != 0 &&
2414 virt_dev->tt_info->active_eps == 0) {
2415 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002416 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002417 }
2418}
2419
2420static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2421 struct xhci_virt_device *virt_dev,
2422 struct xhci_container_ctx *in_ctx)
2423{
2424 struct xhci_bw_info ep_bw_info[31];
2425 int i;
2426 struct xhci_input_control_ctx *ctrl_ctx;
2427 int old_active_eps = 0;
2428
Sarah Sharp2e279802011-09-02 11:05:50 -07002429 if (virt_dev->tt_info)
2430 old_active_eps = virt_dev->tt_info->active_eps;
2431
2432 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002433 if (!ctrl_ctx) {
2434 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2435 __func__);
2436 return -ENOMEM;
2437 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002438
2439 for (i = 0; i < 31; i++) {
2440 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2441 continue;
2442
2443 /* Make a copy of the BW info in case we need to revert this */
2444 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2445 sizeof(ep_bw_info[i]));
2446 /* Drop the endpoint from the interval table if the endpoint is
2447 * being dropped or changed.
2448 */
2449 if (EP_IS_DROPPED(ctrl_ctx, i))
2450 xhci_drop_ep_from_interval_table(xhci,
2451 &virt_dev->eps[i].bw_info,
2452 virt_dev->bw_table,
2453 virt_dev->udev,
2454 &virt_dev->eps[i],
2455 virt_dev->tt_info);
2456 }
2457 /* Overwrite the information stored in the endpoints' bw_info */
2458 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2459 for (i = 0; i < 31; i++) {
2460 /* Add any changed or added endpoints to the interval table */
2461 if (EP_IS_ADDED(ctrl_ctx, i))
2462 xhci_add_ep_to_interval_table(xhci,
2463 &virt_dev->eps[i].bw_info,
2464 virt_dev->bw_table,
2465 virt_dev->udev,
2466 &virt_dev->eps[i],
2467 virt_dev->tt_info);
2468 }
2469
2470 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2471 /* Ok, this fits in the bandwidth we have.
2472 * Update the number of active TTs.
2473 */
2474 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2475 return 0;
2476 }
2477
2478 /* We don't have enough bandwidth for this, revert the stored info. */
2479 for (i = 0; i < 31; i++) {
2480 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2481 continue;
2482
2483 /* Drop the new copies of any added or changed endpoints from
2484 * the interval table.
2485 */
2486 if (EP_IS_ADDED(ctrl_ctx, i)) {
2487 xhci_drop_ep_from_interval_table(xhci,
2488 &virt_dev->eps[i].bw_info,
2489 virt_dev->bw_table,
2490 virt_dev->udev,
2491 &virt_dev->eps[i],
2492 virt_dev->tt_info);
2493 }
2494 /* Revert the endpoint back to its old information */
2495 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2496 sizeof(ep_bw_info[i]));
2497 /* Add any changed or dropped endpoints back into the table */
2498 if (EP_IS_DROPPED(ctrl_ctx, i))
2499 xhci_add_ep_to_interval_table(xhci,
2500 &virt_dev->eps[i].bw_info,
2501 virt_dev->bw_table,
2502 virt_dev->udev,
2503 &virt_dev->eps[i],
2504 virt_dev->tt_info);
2505 }
2506 return -ENOMEM;
2507}
2508
2509
Sarah Sharpf2217e82009-08-07 14:04:43 -07002510/* Issue a configure endpoint command or evaluate context command
2511 * and wait for it to finish.
2512 */
2513static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002514 struct usb_device *udev,
2515 struct xhci_command *command,
2516 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002517{
2518 int ret;
2519 int timeleft;
2520 unsigned long flags;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002521 struct xhci_container_ctx *in_ctx;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002522 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002523 struct completion *cmd_completion;
Matt Evans28ccd292011-03-29 13:40:46 +11002524 u32 *cmd_status;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002525 struct xhci_virt_device *virt_dev;
Elric Fu6e4468b2012-06-27 16:31:52 +08002526 union xhci_trb *cmd_trb;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002527
2528 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002529 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002530
Sarah Sharp750645f2011-09-02 11:05:43 -07002531 if (command)
2532 in_ctx = command->in_ctx;
2533 else
2534 in_ctx = virt_dev->in_ctx;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002535 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2536 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002537 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002538 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2539 __func__);
2540 return -ENOMEM;
2541 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002542
2543 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002544 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002545 spin_unlock_irqrestore(&xhci->lock, flags);
2546 xhci_warn(xhci, "Not enough host resources, "
2547 "active endpoint contexts = %u\n",
2548 xhci->num_active_eps);
2549 return -ENOMEM;
2550 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002551 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2552 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2553 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002554 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002555 spin_unlock_irqrestore(&xhci->lock, flags);
2556 xhci_warn(xhci, "Not enough bandwidth\n");
2557 return -ENOMEM;
2558 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002559
2560 if (command) {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002561 cmd_completion = command->completion;
2562 cmd_status = &command->status;
2563 command->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002564
2565 /* Enqueue pointer can be left pointing to the link TRB,
2566 * we must handle that
2567 */
Matt Evansf5960b62011-06-01 10:22:55 +10002568 if (TRB_TYPE_LINK_LE32(command->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002569 command->command_trb =
2570 xhci->cmd_ring->enq_seg->next->trbs;
2571
Sarah Sharp913a8a32009-09-04 10:53:13 -07002572 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2573 } else {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002574 cmd_completion = &virt_dev->cmd_completion;
2575 cmd_status = &virt_dev->cmd_status;
2576 }
Andiry Xu1d680642010-03-12 17:10:04 +08002577 init_completion(cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002578
Elric Fu6e4468b2012-06-27 16:31:52 +08002579 cmd_trb = xhci->cmd_ring->dequeue;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002580 if (!ctx_change)
Sarah Sharp913a8a32009-09-04 10:53:13 -07002581 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2582 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002583 else
Sarah Sharp913a8a32009-09-04 10:53:13 -07002584 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002585 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002586 if (ret < 0) {
Sarah Sharpc01591b2009-12-09 15:58:58 -08002587 if (command)
2588 list_del(&command->cmd_list);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002589 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002590 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002591 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002592 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2593 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002594 return -ENOMEM;
2595 }
2596 xhci_ring_cmd_db(xhci);
2597 spin_unlock_irqrestore(&xhci->lock, flags);
2598
2599 /* Wait for the configure endpoint command to complete */
2600 timeleft = wait_for_completion_interruptible_timeout(
Sarah Sharp913a8a32009-09-04 10:53:13 -07002601 cmd_completion,
Elric Fu6e4468b2012-06-27 16:31:52 +08002602 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002603 if (timeleft <= 0) {
2604 xhci_warn(xhci, "%s while waiting for %s command\n",
2605 timeleft == 0 ? "Timeout" : "Signal",
2606 ctx_change == 0 ?
2607 "configure endpoint" :
2608 "evaluate context");
Elric Fu6e4468b2012-06-27 16:31:52 +08002609 /* cancel the configure endpoint command */
2610 ret = xhci_cancel_cmd(xhci, command, cmd_trb);
2611 if (ret < 0)
2612 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002613 return -ETIME;
2614 }
2615
2616 if (!ctx_change)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002617 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2618 else
2619 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2620
2621 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2622 spin_lock_irqsave(&xhci->lock, flags);
2623 /* If the command failed, remove the reserved resources.
2624 * Otherwise, clean up the estimate to include dropped eps.
2625 */
2626 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002627 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002628 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002629 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002630 spin_unlock_irqrestore(&xhci->lock, flags);
2631 }
2632 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002633}
2634
Sarah Sharpf88ba782009-05-14 11:44:22 -07002635/* Called after one or more calls to xhci_add_endpoint() or
2636 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2637 * to call xhci_reset_bandwidth().
2638 *
2639 * Since we are in the middle of changing either configuration or
2640 * installing a new alt setting, the USB core won't allow URBs to be
2641 * enqueued for any endpoint on the old config or interface. Nothing
2642 * else should be touching the xhci->devs[slot_id] structure, so we
2643 * don't need to take the xhci->lock for manipulating that.
2644 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002645int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2646{
2647 int i;
2648 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002649 struct xhci_hcd *xhci;
2650 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002651 struct xhci_input_control_ctx *ctrl_ctx;
2652 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002653
Andiry Xu64927732010-10-14 07:22:45 -07002654 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002655 if (ret <= 0)
2656 return ret;
2657 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002658 if (xhci->xhc_state & XHCI_STATE_DYING)
2659 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002660
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002661 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002662 virt_dev = xhci->devs[udev->slot_id];
2663
2664 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
John Yound115b042009-07-27 12:05:15 -07002665 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002666 if (!ctrl_ctx) {
2667 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2668 __func__);
2669 return -ENOMEM;
2670 }
Matt Evans28ccd292011-03-29 13:40:46 +11002671 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2672 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2673 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002674
2675 /* Don't issue the command if there's no endpoints to update. */
2676 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2677 ctrl_ctx->drop_flags == 0)
2678 return 0;
2679
Sarah Sharpf94e01862009-04-27 19:58:38 -07002680 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002681 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2682 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002683 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002684
Sarah Sharp913a8a32009-09-04 10:53:13 -07002685 ret = xhci_configure_endpoint(xhci, udev, NULL,
2686 false, false);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002687 if (ret) {
2688 /* Callee should call reset_bandwidth() */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002689 return ret;
2690 }
2691
2692 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002693 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002694 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002695
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002696 /* Free any rings that were dropped, but not changed. */
2697 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002698 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2699 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002700 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2701 }
John Yound115b042009-07-27 12:05:15 -07002702 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002703 /*
2704 * Install any rings for completely new endpoints or changed endpoints,
2705 * and free or cache any old rings from changed endpoints.
2706 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002707 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002708 if (!virt_dev->eps[i].new_ring)
2709 continue;
2710 /* Only cache or free the old ring if it exists.
2711 * It may not if this is the first add of an endpoint.
2712 */
2713 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002714 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002715 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002716 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2717 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002718 }
2719
Sarah Sharpf94e01862009-04-27 19:58:38 -07002720 return ret;
2721}
2722
2723void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2724{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002725 struct xhci_hcd *xhci;
2726 struct xhci_virt_device *virt_dev;
2727 int i, ret;
2728
Andiry Xu64927732010-10-14 07:22:45 -07002729 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002730 if (ret <= 0)
2731 return;
2732 xhci = hcd_to_xhci(hcd);
2733
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002734 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002735 virt_dev = xhci->devs[udev->slot_id];
2736 /* Free any rings allocated for added endpoints */
2737 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002738 if (virt_dev->eps[i].new_ring) {
2739 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2740 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002741 }
2742 }
John Yound115b042009-07-27 12:05:15 -07002743 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002744}
2745
Sarah Sharp5270b952009-09-04 10:53:11 -07002746static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002747 struct xhci_container_ctx *in_ctx,
2748 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002749 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002750 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002751{
Matt Evans28ccd292011-03-29 13:40:46 +11002752 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2753 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002754 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002755 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002756
Sarah Sharp913a8a32009-09-04 10:53:13 -07002757 xhci_dbg(xhci, "Input Context:\n");
2758 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002759}
2760
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002761static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002762 unsigned int slot_id, unsigned int ep_index,
2763 struct xhci_dequeue_state *deq_state)
2764{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002765 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002766 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002767 struct xhci_ep_ctx *ep_ctx;
2768 u32 added_ctxs;
2769 dma_addr_t addr;
2770
Sarah Sharp92f8e762013-04-23 17:11:14 -07002771 in_ctx = xhci->devs[slot_id]->in_ctx;
2772 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2773 if (!ctrl_ctx) {
2774 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2775 __func__);
2776 return;
2777 }
2778
Sarah Sharp913a8a32009-09-04 10:53:13 -07002779 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2780 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002781 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2782 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2783 deq_state->new_deq_ptr);
2784 if (addr == 0) {
2785 xhci_warn(xhci, "WARN Cannot submit config ep after "
2786 "reset ep command\n");
2787 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2788 deq_state->new_deq_seg,
2789 deq_state->new_deq_ptr);
2790 return;
2791 }
Matt Evans28ccd292011-03-29 13:40:46 +11002792 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002793
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002794 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002795 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002796 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2797 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002798}
2799
Sarah Sharp82d10092009-08-07 14:04:52 -07002800void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002801 struct usb_device *udev, unsigned int ep_index)
Sarah Sharp82d10092009-08-07 14:04:52 -07002802{
2803 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002804 struct xhci_virt_ep *ep;
Sarah Sharp82d10092009-08-07 14:04:52 -07002805
2806 xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002807 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002808 /* We need to move the HW's dequeue pointer past this TD,
2809 * or it will attempt to resend it on the next doorbell ring.
2810 */
2811 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002812 ep_index, ep->stopped_stream, ep->stopped_td,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002813 &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002814
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002815 /* HW with the reset endpoint quirk will use the saved dequeue state to
2816 * issue a configure endpoint command later.
2817 */
2818 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
2819 xhci_dbg(xhci, "Queueing new dequeue state\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002820 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002821 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002822 } else {
2823 /* Better hope no one uses the input context between now and the
2824 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002825 * XXX: No idea how this hardware will react when stream rings
2826 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002827 */
2828 xhci_dbg(xhci, "Setting up input context for "
2829 "configure endpoint command\n");
2830 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2831 ep_index, &deq_state);
2832 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002833}
2834
Sarah Sharpa1587d92009-07-27 12:03:15 -07002835/* Deal with stalled endpoints. The core should have sent the control message
2836 * to clear the halt condition. However, we need to make the xHCI hardware
2837 * reset its sequence number, since a device will expect a sequence number of
2838 * zero after the halt condition is cleared.
2839 * Context: in_interrupt
2840 */
2841void xhci_endpoint_reset(struct usb_hcd *hcd,
2842 struct usb_host_endpoint *ep)
2843{
2844 struct xhci_hcd *xhci;
2845 struct usb_device *udev;
2846 unsigned int ep_index;
2847 unsigned long flags;
2848 int ret;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002849 struct xhci_virt_ep *virt_ep;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002850
2851 xhci = hcd_to_xhci(hcd);
2852 udev = (struct usb_device *) ep->hcpriv;
2853 /* Called with a root hub endpoint (or an endpoint that wasn't added
2854 * with xhci_add_endpoint()
2855 */
2856 if (!ep->hcpriv)
2857 return;
2858 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002859 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
2860 if (!virt_ep->stopped_td) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002861 xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n",
2862 ep->desc.bEndpointAddress);
2863 return;
2864 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002865 if (usb_endpoint_xfer_control(&ep->desc)) {
2866 xhci_dbg(xhci, "Control endpoint stall already handled.\n");
2867 return;
2868 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07002869
2870 xhci_dbg(xhci, "Queueing reset endpoint command\n");
2871 spin_lock_irqsave(&xhci->lock, flags);
2872 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002873 /*
2874 * Can't change the ring dequeue pointer until it's transitioned to the
2875 * stopped state, which is only upon a successful reset endpoint
2876 * command. Better hope that last command worked!
2877 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002878 if (!ret) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002879 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
2880 kfree(virt_ep->stopped_td);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002881 xhci_ring_cmd_db(xhci);
2882 }
Sarah Sharp1624ae12010-05-06 13:40:08 -07002883 virt_ep->stopped_td = NULL;
2884 virt_ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07002885 virt_ep->stopped_stream = 0;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002886 spin_unlock_irqrestore(&xhci->lock, flags);
2887
2888 if (ret)
2889 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
2890}
2891
Sarah Sharp8df75f42010-04-02 15:34:16 -07002892static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2893 struct usb_device *udev, struct usb_host_endpoint *ep,
2894 unsigned int slot_id)
2895{
2896 int ret;
2897 unsigned int ep_index;
2898 unsigned int ep_state;
2899
2900 if (!ep)
2901 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002902 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002903 if (ret <= 0)
2904 return -EINVAL;
Alan Stern842f1692010-04-30 12:44:46 -04002905 if (ep->ss_ep_comp.bmAttributes == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002906 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2907 " descriptor for ep 0x%x does not support streams\n",
2908 ep->desc.bEndpointAddress);
2909 return -EINVAL;
2910 }
2911
2912 ep_index = xhci_get_endpoint_index(&ep->desc);
2913 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2914 if (ep_state & EP_HAS_STREAMS ||
2915 ep_state & EP_GETTING_STREAMS) {
2916 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2917 "already has streams set up.\n",
2918 ep->desc.bEndpointAddress);
2919 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2920 "dynamic stream context array reallocation.\n");
2921 return -EINVAL;
2922 }
2923 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2924 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2925 "endpoint 0x%x; URBs are pending.\n",
2926 ep->desc.bEndpointAddress);
2927 return -EINVAL;
2928 }
2929 return 0;
2930}
2931
2932static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2933 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2934{
2935 unsigned int max_streams;
2936
2937 /* The stream context array size must be a power of two */
2938 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2939 /*
2940 * Find out how many primary stream array entries the host controller
2941 * supports. Later we may use secondary stream arrays (similar to 2nd
2942 * level page entries), but that's an optional feature for xHCI host
2943 * controllers. xHCs must support at least 4 stream IDs.
2944 */
2945 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2946 if (*num_stream_ctxs > max_streams) {
2947 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2948 max_streams);
2949 *num_stream_ctxs = max_streams;
2950 *num_streams = max_streams;
2951 }
2952}
2953
2954/* Returns an error code if one of the endpoint already has streams.
2955 * This does not change any data structures, it only checks and gathers
2956 * information.
2957 */
2958static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2959 struct usb_device *udev,
2960 struct usb_host_endpoint **eps, unsigned int num_eps,
2961 unsigned int *num_streams, u32 *changed_ep_bitmask)
2962{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002963 unsigned int max_streams;
2964 unsigned int endpoint_flag;
2965 int i;
2966 int ret;
2967
2968 for (i = 0; i < num_eps; i++) {
2969 ret = xhci_check_streams_endpoint(xhci, udev,
2970 eps[i], udev->slot_id);
2971 if (ret < 0)
2972 return ret;
2973
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002974 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002975 if (max_streams < (*num_streams - 1)) {
2976 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2977 eps[i]->desc.bEndpointAddress,
2978 max_streams);
2979 *num_streams = max_streams+1;
2980 }
2981
2982 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
2983 if (*changed_ep_bitmask & endpoint_flag)
2984 return -EINVAL;
2985 *changed_ep_bitmask |= endpoint_flag;
2986 }
2987 return 0;
2988}
2989
2990static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
2991 struct usb_device *udev,
2992 struct usb_host_endpoint **eps, unsigned int num_eps)
2993{
2994 u32 changed_ep_bitmask = 0;
2995 unsigned int slot_id;
2996 unsigned int ep_index;
2997 unsigned int ep_state;
2998 int i;
2999
3000 slot_id = udev->slot_id;
3001 if (!xhci->devs[slot_id])
3002 return 0;
3003
3004 for (i = 0; i < num_eps; i++) {
3005 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3006 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3007 /* Are streams already being freed for the endpoint? */
3008 if (ep_state & EP_GETTING_NO_STREAMS) {
3009 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003010 "endpoint 0x%x, "
3011 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003012 eps[i]->desc.bEndpointAddress);
3013 return 0;
3014 }
3015 /* Are there actually any streams to free? */
3016 if (!(ep_state & EP_HAS_STREAMS) &&
3017 !(ep_state & EP_GETTING_STREAMS)) {
3018 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003019 "endpoint 0x%x, "
3020 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003021 eps[i]->desc.bEndpointAddress);
3022 xhci_warn(xhci, "WARN xhci_free_streams() called "
3023 "with non-streams endpoint\n");
3024 return 0;
3025 }
3026 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3027 }
3028 return changed_ep_bitmask;
3029}
3030
3031/*
3032 * The USB device drivers use this function (though the HCD interface in USB
3033 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3034 * coordinate mass storage command queueing across multiple endpoints (basically
3035 * a stream ID == a task ID).
3036 *
3037 * Setting up streams involves allocating the same size stream context array
3038 * for each endpoint and issuing a configure endpoint command for all endpoints.
3039 *
3040 * Don't allow the call to succeed if one endpoint only supports one stream
3041 * (which means it doesn't support streams at all).
3042 *
3043 * Drivers may get less stream IDs than they asked for, if the host controller
3044 * hardware or endpoints claim they can't support the number of requested
3045 * stream IDs.
3046 */
3047int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
3048 struct usb_host_endpoint **eps, unsigned int num_eps,
3049 unsigned int num_streams, gfp_t mem_flags)
3050{
3051 int i, ret;
3052 struct xhci_hcd *xhci;
3053 struct xhci_virt_device *vdev;
3054 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003055 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003056 unsigned int ep_index;
3057 unsigned int num_stream_ctxs;
3058 unsigned long flags;
3059 u32 changed_ep_bitmask = 0;
3060
3061 if (!eps)
3062 return -EINVAL;
3063
3064 /* Add one to the number of streams requested to account for
3065 * stream 0 that is reserved for xHCI usage.
3066 */
3067 num_streams += 1;
3068 xhci = hcd_to_xhci(hcd);
3069 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3070 num_streams);
3071
3072 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
3073 if (!config_cmd) {
3074 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3075 return -ENOMEM;
3076 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07003077 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
3078 if (!ctrl_ctx) {
3079 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3080 __func__);
3081 xhci_free_command(xhci, config_cmd);
3082 return -ENOMEM;
3083 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003084
3085 /* Check to make sure all endpoints are not already configured for
3086 * streams. While we're at it, find the maximum number of streams that
3087 * all the endpoints will support and check for duplicate endpoints.
3088 */
3089 spin_lock_irqsave(&xhci->lock, flags);
3090 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3091 num_eps, &num_streams, &changed_ep_bitmask);
3092 if (ret < 0) {
3093 xhci_free_command(xhci, config_cmd);
3094 spin_unlock_irqrestore(&xhci->lock, flags);
3095 return ret;
3096 }
3097 if (num_streams <= 1) {
3098 xhci_warn(xhci, "WARN: endpoints can't handle "
3099 "more than one stream.\n");
3100 xhci_free_command(xhci, config_cmd);
3101 spin_unlock_irqrestore(&xhci->lock, flags);
3102 return -EINVAL;
3103 }
3104 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003105 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003106 * xhci_urb_enqueue() will reject all URBs.
3107 */
3108 for (i = 0; i < num_eps; i++) {
3109 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3110 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3111 }
3112 spin_unlock_irqrestore(&xhci->lock, flags);
3113
3114 /* Setup internal data structures and allocate HW data structures for
3115 * streams (but don't install the HW structures in the input context
3116 * until we're sure all memory allocation succeeded).
3117 */
3118 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3119 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3120 num_stream_ctxs, num_streams);
3121
3122 for (i = 0; i < num_eps; i++) {
3123 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3124 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3125 num_stream_ctxs,
3126 num_streams, mem_flags);
3127 if (!vdev->eps[ep_index].stream_info)
3128 goto cleanup;
3129 /* Set maxPstreams in endpoint context and update deq ptr to
3130 * point to stream context array. FIXME
3131 */
3132 }
3133
3134 /* Set up the input context for a configure endpoint command. */
3135 for (i = 0; i < num_eps; i++) {
3136 struct xhci_ep_ctx *ep_ctx;
3137
3138 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3139 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3140
3141 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3142 vdev->out_ctx, ep_index);
3143 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3144 vdev->eps[ep_index].stream_info);
3145 }
3146 /* Tell the HW to drop its old copy of the endpoint context info
3147 * and add the updated copy from the input context.
3148 */
3149 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003150 vdev->out_ctx, ctrl_ctx,
3151 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003152
3153 /* Issue and wait for the configure endpoint command */
3154 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3155 false, false);
3156
3157 /* xHC rejected the configure endpoint command for some reason, so we
3158 * leave the old ring intact and free our internal streams data
3159 * structure.
3160 */
3161 if (ret < 0)
3162 goto cleanup;
3163
3164 spin_lock_irqsave(&xhci->lock, flags);
3165 for (i = 0; i < num_eps; i++) {
3166 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3167 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3168 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3169 udev->slot_id, ep_index);
3170 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3171 }
3172 xhci_free_command(xhci, config_cmd);
3173 spin_unlock_irqrestore(&xhci->lock, flags);
3174
3175 /* Subtract 1 for stream 0, which drivers can't use */
3176 return num_streams - 1;
3177
3178cleanup:
3179 /* If it didn't work, free the streams! */
3180 for (i = 0; i < num_eps; i++) {
3181 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3182 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003183 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003184 /* FIXME Unset maxPstreams in endpoint context and
3185 * update deq ptr to point to normal string ring.
3186 */
3187 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3188 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3189 xhci_endpoint_zero(xhci, vdev, eps[i]);
3190 }
3191 xhci_free_command(xhci, config_cmd);
3192 return -ENOMEM;
3193}
3194
3195/* Transition the endpoint from using streams to being a "normal" endpoint
3196 * without streams.
3197 *
3198 * Modify the endpoint context state, submit a configure endpoint command,
3199 * and free all endpoint rings for streams if that completes successfully.
3200 */
3201int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3202 struct usb_host_endpoint **eps, unsigned int num_eps,
3203 gfp_t mem_flags)
3204{
3205 int i, ret;
3206 struct xhci_hcd *xhci;
3207 struct xhci_virt_device *vdev;
3208 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003209 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003210 unsigned int ep_index;
3211 unsigned long flags;
3212 u32 changed_ep_bitmask;
3213
3214 xhci = hcd_to_xhci(hcd);
3215 vdev = xhci->devs[udev->slot_id];
3216
3217 /* Set up a configure endpoint command to remove the streams rings */
3218 spin_lock_irqsave(&xhci->lock, flags);
3219 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3220 udev, eps, num_eps);
3221 if (changed_ep_bitmask == 0) {
3222 spin_unlock_irqrestore(&xhci->lock, flags);
3223 return -EINVAL;
3224 }
3225
3226 /* Use the xhci_command structure from the first endpoint. We may have
3227 * allocated too many, but the driver may call xhci_free_streams() for
3228 * each endpoint it grouped into one call to xhci_alloc_streams().
3229 */
3230 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3231 command = vdev->eps[ep_index].stream_info->free_streams_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003232 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3233 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003234 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003235 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3236 __func__);
3237 return -EINVAL;
3238 }
3239
Sarah Sharp8df75f42010-04-02 15:34:16 -07003240 for (i = 0; i < num_eps; i++) {
3241 struct xhci_ep_ctx *ep_ctx;
3242
3243 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3244 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3245 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3246 EP_GETTING_NO_STREAMS;
3247
3248 xhci_endpoint_copy(xhci, command->in_ctx,
3249 vdev->out_ctx, ep_index);
3250 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3251 &vdev->eps[ep_index]);
3252 }
3253 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003254 vdev->out_ctx, ctrl_ctx,
3255 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003256 spin_unlock_irqrestore(&xhci->lock, flags);
3257
3258 /* Issue and wait for the configure endpoint command,
3259 * which must succeed.
3260 */
3261 ret = xhci_configure_endpoint(xhci, udev, command,
3262 false, true);
3263
3264 /* xHC rejected the configure endpoint command for some reason, so we
3265 * leave the streams rings intact.
3266 */
3267 if (ret < 0)
3268 return ret;
3269
3270 spin_lock_irqsave(&xhci->lock, flags);
3271 for (i = 0; i < num_eps; i++) {
3272 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3273 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003274 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003275 /* FIXME Unset maxPstreams in endpoint context and
3276 * update deq ptr to point to normal string ring.
3277 */
3278 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3279 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3280 }
3281 spin_unlock_irqrestore(&xhci->lock, flags);
3282
3283 return 0;
3284}
3285
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003286/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003287 * Deletes endpoint resources for endpoints that were active before a Reset
3288 * Device command, or a Disable Slot command. The Reset Device command leaves
3289 * the control endpoint intact, whereas the Disable Slot command deletes it.
3290 *
3291 * Must be called with xhci->lock held.
3292 */
3293void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3294 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3295{
3296 int i;
3297 unsigned int num_dropped_eps = 0;
3298 unsigned int drop_flags = 0;
3299
3300 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3301 if (virt_dev->eps[i].ring) {
3302 drop_flags |= 1 << i;
3303 num_dropped_eps++;
3304 }
3305 }
3306 xhci->num_active_eps -= num_dropped_eps;
3307 if (num_dropped_eps)
3308 xhci_dbg(xhci, "Dropped %u ep ctxs, flags = 0x%x, "
3309 "%u now active.\n",
3310 num_dropped_eps, drop_flags,
3311 xhci->num_active_eps);
3312}
3313
3314/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003315 * This submits a Reset Device Command, which will set the device state to 0,
3316 * set the device address to 0, and disable all the endpoints except the default
3317 * control endpoint. The USB core should come back and call
3318 * xhci_address_device(), and then re-set up the configuration. If this is
3319 * called because of a usb_reset_and_verify_device(), then the old alternate
3320 * settings will be re-installed through the normal bandwidth allocation
3321 * functions.
3322 *
3323 * Wait for the Reset Device command to finish. Remove all structures
3324 * associated with the endpoints that were disabled. Clear the input device
3325 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003326 *
3327 * If the virt_dev to be reset does not exist or does not match the udev,
3328 * it means the device is lost, possibly due to the xHC restore error and
3329 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3330 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003331 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003332int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003333{
3334 int ret, i;
3335 unsigned long flags;
3336 struct xhci_hcd *xhci;
3337 unsigned int slot_id;
3338 struct xhci_virt_device *virt_dev;
3339 struct xhci_command *reset_device_cmd;
3340 int timeleft;
3341 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003342 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003343 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003344
Andiry Xuf0615c42010-10-14 07:22:48 -07003345 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003346 if (ret <= 0)
3347 return ret;
3348 xhci = hcd_to_xhci(hcd);
3349 slot_id = udev->slot_id;
3350 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003351 if (!virt_dev) {
3352 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3353 "not exist. Re-allocate the device\n", slot_id);
3354 ret = xhci_alloc_dev(hcd, udev);
3355 if (ret == 1)
3356 return 0;
3357 else
3358 return -EINVAL;
3359 }
3360
3361 if (virt_dev->udev != udev) {
3362 /* If the virt_dev and the udev does not match, this virt_dev
3363 * may belong to another udev.
3364 * Re-allocate the device.
3365 */
3366 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3367 "not match the udev. Re-allocate the device\n",
3368 slot_id);
3369 ret = xhci_alloc_dev(hcd, udev);
3370 if (ret == 1)
3371 return 0;
3372 else
3373 return -EINVAL;
3374 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003375
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003376 /* If device is not setup, there is no point in resetting it */
3377 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3378 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3379 SLOT_STATE_DISABLED)
3380 return 0;
3381
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003382 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3383 /* Allocate the command structure that holds the struct completion.
3384 * Assume we're in process context, since the normal device reset
3385 * process has to wait for the device anyway. Storage devices are
3386 * reset as part of error handling, so use GFP_NOIO instead of
3387 * GFP_KERNEL.
3388 */
3389 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3390 if (!reset_device_cmd) {
3391 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3392 return -ENOMEM;
3393 }
3394
3395 /* Attempt to submit the Reset Device command to the command ring */
3396 spin_lock_irqsave(&xhci->lock, flags);
3397 reset_device_cmd->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003398
3399 /* Enqueue pointer can be left pointing to the link TRB,
3400 * we must handle that
3401 */
Matt Evansf5960b62011-06-01 10:22:55 +10003402 if (TRB_TYPE_LINK_LE32(reset_device_cmd->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003403 reset_device_cmd->command_trb =
3404 xhci->cmd_ring->enq_seg->next->trbs;
3405
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003406 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3407 ret = xhci_queue_reset_device(xhci, slot_id);
3408 if (ret) {
3409 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3410 list_del(&reset_device_cmd->cmd_list);
3411 spin_unlock_irqrestore(&xhci->lock, flags);
3412 goto command_cleanup;
3413 }
3414 xhci_ring_cmd_db(xhci);
3415 spin_unlock_irqrestore(&xhci->lock, flags);
3416
3417 /* Wait for the Reset Device command to finish */
3418 timeleft = wait_for_completion_interruptible_timeout(
3419 reset_device_cmd->completion,
3420 USB_CTRL_SET_TIMEOUT);
3421 if (timeleft <= 0) {
3422 xhci_warn(xhci, "%s while waiting for reset device command\n",
3423 timeleft == 0 ? "Timeout" : "Signal");
3424 spin_lock_irqsave(&xhci->lock, flags);
3425 /* The timeout might have raced with the event ring handler, so
3426 * only delete from the list if the item isn't poisoned.
3427 */
3428 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3429 list_del(&reset_device_cmd->cmd_list);
3430 spin_unlock_irqrestore(&xhci->lock, flags);
3431 ret = -ETIME;
3432 goto command_cleanup;
3433 }
3434
3435 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3436 * unless we tried to reset a slot ID that wasn't enabled,
3437 * or the device wasn't in the addressed or configured state.
3438 */
3439 ret = reset_device_cmd->status;
3440 switch (ret) {
3441 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3442 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003443 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003444 slot_id,
3445 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003446 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003447 /* Don't treat this as an error. May change my mind later. */
3448 ret = 0;
3449 goto command_cleanup;
3450 case COMP_SUCCESS:
3451 xhci_dbg(xhci, "Successful reset device command.\n");
3452 break;
3453 default:
3454 if (xhci_is_vendor_info_code(xhci, ret))
3455 break;
3456 xhci_warn(xhci, "Unknown completion code %u for "
3457 "reset device command.\n", ret);
3458 ret = -EINVAL;
3459 goto command_cleanup;
3460 }
3461
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003462 /* Free up host controller endpoint resources */
3463 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3464 spin_lock_irqsave(&xhci->lock, flags);
3465 /* Don't delete the default control endpoint resources */
3466 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3467 spin_unlock_irqrestore(&xhci->lock, flags);
3468 }
3469
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003470 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3471 last_freed_endpoint = 1;
3472 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003473 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3474
3475 if (ep->ep_state & EP_HAS_STREAMS) {
3476 xhci_free_stream_info(xhci, ep->stream_info);
3477 ep->stream_info = NULL;
3478 ep->ep_state &= ~EP_HAS_STREAMS;
3479 }
3480
3481 if (ep->ring) {
3482 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3483 last_freed_endpoint = i;
3484 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003485 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3486 xhci_drop_ep_from_interval_table(xhci,
3487 &virt_dev->eps[i].bw_info,
3488 virt_dev->bw_table,
3489 udev,
3490 &virt_dev->eps[i],
3491 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003492 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003493 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003494 /* If necessary, update the number of active TTs on this root port */
3495 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3496
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003497 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3498 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3499 ret = 0;
3500
3501command_cleanup:
3502 xhci_free_command(xhci, reset_device_cmd);
3503 return ret;
3504}
3505
3506/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003507 * At this point, the struct usb_device is about to go away, the device has
3508 * disconnected, and all traffic has been stopped and the endpoints have been
3509 * disabled. Free any HC data structures associated with that device.
3510 */
3511void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3512{
3513 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003514 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003515 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003516 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003517 int i, ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003518
Andiry Xu64927732010-10-14 07:22:45 -07003519 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003520 /* If the host is halted due to driver unload, we still need to free the
3521 * device.
3522 */
3523 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003524 return;
Andiry Xu64927732010-10-14 07:22:45 -07003525
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003526 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003527
3528 /* Stop any wayward timer functions (which may grab the lock) */
3529 for (i = 0; i < 31; ++i) {
3530 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3531 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3532 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003533
Andiry Xu65580b432011-09-23 14:19:52 -07003534 if (udev->usb2_hw_lpm_enabled) {
3535 xhci_set_usb2_hardware_lpm(hcd, udev, 0);
3536 udev->usb2_hw_lpm_enabled = 0;
3537 }
3538
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003539 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003540 /* Don't disable the slot if the host controller is dead. */
3541 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003542 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3543 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003544 xhci_free_virt_device(xhci, udev->slot_id);
3545 spin_unlock_irqrestore(&xhci->lock, flags);
3546 return;
3547 }
3548
Sarah Sharp23e3be12009-04-29 19:05:20 -07003549 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003550 spin_unlock_irqrestore(&xhci->lock, flags);
3551 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3552 return;
3553 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003554 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003555 spin_unlock_irqrestore(&xhci->lock, flags);
3556 /*
3557 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003558 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003559 */
3560}
3561
3562/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003563 * Checks if we have enough host controller resources for the default control
3564 * endpoint.
3565 *
3566 * Must be called with xhci->lock held.
3567 */
3568static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3569{
3570 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
3571 xhci_dbg(xhci, "Not enough ep ctxs: "
3572 "%u active, need to add 1, limit is %u.\n",
3573 xhci->num_active_eps, xhci->limit_active_eps);
3574 return -ENOMEM;
3575 }
3576 xhci->num_active_eps += 1;
3577 xhci_dbg(xhci, "Adding 1 ep ctx, %u now active.\n",
3578 xhci->num_active_eps);
3579 return 0;
3580}
3581
3582
3583/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003584 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3585 * timed out, or allocating memory failed. Returns 1 on success.
3586 */
3587int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3588{
3589 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3590 unsigned long flags;
3591 int timeleft;
3592 int ret;
Elric Fu6e4468b2012-06-27 16:31:52 +08003593 union xhci_trb *cmd_trb;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003594
3595 spin_lock_irqsave(&xhci->lock, flags);
Elric Fu6e4468b2012-06-27 16:31:52 +08003596 cmd_trb = xhci->cmd_ring->dequeue;
Sarah Sharp23e3be12009-04-29 19:05:20 -07003597 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003598 if (ret) {
3599 spin_unlock_irqrestore(&xhci->lock, flags);
3600 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3601 return 0;
3602 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003603 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003604 spin_unlock_irqrestore(&xhci->lock, flags);
3605
3606 /* XXX: how much time for xHC slot assignment? */
3607 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Elric Fu6e4468b2012-06-27 16:31:52 +08003608 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003609 if (timeleft <= 0) {
3610 xhci_warn(xhci, "%s while waiting for a slot\n",
3611 timeleft == 0 ? "Timeout" : "Signal");
Elric Fu6e4468b2012-06-27 16:31:52 +08003612 /* cancel the enable slot request */
3613 return xhci_cancel_cmd(xhci, NULL, cmd_trb);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003614 }
3615
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003616 if (!xhci->slot_id) {
3617 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003618 return 0;
3619 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003620
3621 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3622 spin_lock_irqsave(&xhci->lock, flags);
3623 ret = xhci_reserve_host_control_ep_resources(xhci);
3624 if (ret) {
3625 spin_unlock_irqrestore(&xhci->lock, flags);
3626 xhci_warn(xhci, "Not enough host resources, "
3627 "active endpoint contexts = %u\n",
3628 xhci->num_active_eps);
3629 goto disable_slot;
3630 }
3631 spin_unlock_irqrestore(&xhci->lock, flags);
3632 }
3633 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003634 * xhci_discover_or_reset_device(), which may be called as part of
3635 * mass storage driver error handling.
3636 */
3637 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003638 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003639 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003640 }
3641 udev->slot_id = xhci->slot_id;
3642 /* Is this a LS or FS device under a HS hub? */
3643 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003644 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003645
3646disable_slot:
3647 /* Disable slot, if we can do it without mem alloc */
3648 spin_lock_irqsave(&xhci->lock, flags);
3649 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3650 xhci_ring_cmd_db(xhci);
3651 spin_unlock_irqrestore(&xhci->lock, flags);
3652 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003653}
3654
3655/*
3656 * Issue an Address Device command (which will issue a SetAddress request to
3657 * the device).
3658 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3659 * we should only issue and wait on one address command at the same time.
3660 *
3661 * We add one to the device address issued by the hardware because the USB core
3662 * uses address 1 for the root hubs (even though they're not really devices).
3663 */
3664int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3665{
3666 unsigned long flags;
3667 int timeleft;
3668 struct xhci_virt_device *virt_dev;
3669 int ret = 0;
3670 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003671 struct xhci_slot_ctx *slot_ctx;
3672 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003673 u64 temp_64;
Elric Fu6e4468b2012-06-27 16:31:52 +08003674 union xhci_trb *cmd_trb;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003675
3676 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003677 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3678 "Bad Slot ID %d", udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003679 return -EINVAL;
3680 }
3681
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003682 virt_dev = xhci->devs[udev->slot_id];
3683
Matt Evans7ed603e2011-03-29 13:40:56 +11003684 if (WARN_ON(!virt_dev)) {
3685 /*
3686 * In plug/unplug torture test with an NEC controller,
3687 * a zero-dereference was observed once due to virt_dev = 0.
3688 * Print useful debug rather than crash if it is observed again!
3689 */
3690 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3691 udev->slot_id);
3692 return -EINVAL;
3693 }
3694
Andiry Xuf0615c42010-10-14 07:22:48 -07003695 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003696 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3697 if (!ctrl_ctx) {
3698 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3699 __func__);
3700 return -EINVAL;
3701 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003702 /*
3703 * If this is the first Set Address since device plug-in or
3704 * virt_device realloaction after a resume with an xHCI power loss,
3705 * then set up the slot context.
3706 */
3707 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003708 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003709 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003710 else
3711 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003712 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3713 ctrl_ctx->drop_flags = 0;
3714
Sarah Sharp66e49d82009-07-27 12:03:46 -07003715 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003716 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003717
Sarah Sharpf88ba782009-05-14 11:44:22 -07003718 spin_lock_irqsave(&xhci->lock, flags);
Elric Fu6e4468b2012-06-27 16:31:52 +08003719 cmd_trb = xhci->cmd_ring->dequeue;
John Yound115b042009-07-27 12:05:15 -07003720 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3721 udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003722 if (ret) {
3723 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003724 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3725 "FIXME: allocate a command ring segment");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003726 return ret;
3727 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003728 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003729 spin_unlock_irqrestore(&xhci->lock, flags);
3730
3731 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3732 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Elric Fu6e4468b2012-06-27 16:31:52 +08003733 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003734 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3735 * the SetAddress() "recovery interval" required by USB and aborting the
3736 * command on a timeout.
3737 */
3738 if (timeleft <= 0) {
Andiry Xucd681762011-09-23 14:19:55 -07003739 xhci_warn(xhci, "%s while waiting for address device command\n",
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003740 timeleft == 0 ? "Timeout" : "Signal");
Elric Fu6e4468b2012-06-27 16:31:52 +08003741 /* cancel the address device command */
3742 ret = xhci_cancel_cmd(xhci, NULL, cmd_trb);
3743 if (ret < 0)
3744 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003745 return -ETIME;
3746 }
3747
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003748 switch (virt_dev->cmd_status) {
3749 case COMP_CTX_STATE:
3750 case COMP_EBADSLT:
3751 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3752 udev->slot_id);
3753 ret = -EINVAL;
3754 break;
3755 case COMP_TX_ERR:
3756 dev_warn(&udev->dev, "Device not responding to set address.\n");
3757 ret = -EPROTO;
3758 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003759 case COMP_DEV_ERR:
3760 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3761 "device command.\n");
3762 ret = -ENODEV;
3763 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003764 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003765 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3766 "Successful Address Device command");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003767 break;
3768 default:
3769 xhci_err(xhci, "ERROR: unexpected command completion "
3770 "code 0x%x.\n", virt_dev->cmd_status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003771 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003772 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003773 ret = -EINVAL;
3774 break;
3775 }
3776 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003777 return ret;
3778 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003779 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003780 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3781 "Op regs DCBAA ptr = %#016llx", temp_64);
3782 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3783 "Slot ID %d dcbaa entry @%p = %#016llx",
3784 udev->slot_id,
3785 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3786 (unsigned long long)
3787 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3788 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3789 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003790 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003791 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003792 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003793 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003794 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003795 /*
3796 * USB core uses address 1 for the roothubs, so we add one to the
3797 * address given back to us by the HC.
3798 */
John Yound115b042009-07-27 12:05:15 -07003799 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003800 /* Use kernel assigned address for devices; store xHC assigned
3801 * address locally. */
Matt Evans28ccd292011-03-29 13:40:46 +11003802 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3803 + 1;
Sarah Sharpf94e01862009-04-27 19:58:38 -07003804 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003805 ctrl_ctx->add_flags = 0;
3806 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003807
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003808 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3809 "Internal device address = %d", virt_dev->address);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003810
3811 return 0;
3812}
3813
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003814/*
3815 * Transfer the port index into real index in the HW port status
3816 * registers. Caculate offset between the port's PORTSC register
3817 * and port status base. Divide the number of per port register
3818 * to get the real index. The raw port number bases 1.
3819 */
3820int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3821{
3822 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3823 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3824 __le32 __iomem *addr;
3825 int raw_port;
3826
3827 if (hcd->speed != HCD_USB3)
3828 addr = xhci->usb2_ports[port1 - 1];
3829 else
3830 addr = xhci->usb3_ports[port1 - 1];
3831
3832 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3833 return raw_port;
3834}
3835
Mathias Nymana558ccd2013-05-23 17:14:30 +03003836/*
3837 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3838 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3839 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003840static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003841 struct usb_device *udev, u16 max_exit_latency)
3842{
3843 struct xhci_virt_device *virt_dev;
3844 struct xhci_command *command;
3845 struct xhci_input_control_ctx *ctrl_ctx;
3846 struct xhci_slot_ctx *slot_ctx;
3847 unsigned long flags;
3848 int ret;
3849
3850 spin_lock_irqsave(&xhci->lock, flags);
3851 if (max_exit_latency == xhci->devs[udev->slot_id]->current_mel) {
3852 spin_unlock_irqrestore(&xhci->lock, flags);
3853 return 0;
3854 }
3855
3856 /* Attempt to issue an Evaluate Context command to change the MEL. */
3857 virt_dev = xhci->devs[udev->slot_id];
3858 command = xhci->lpm_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003859 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3860 if (!ctrl_ctx) {
3861 spin_unlock_irqrestore(&xhci->lock, flags);
3862 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3863 __func__);
3864 return -ENOMEM;
3865 }
3866
Mathias Nymana558ccd2013-05-23 17:14:30 +03003867 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
3868 spin_unlock_irqrestore(&xhci->lock, flags);
3869
Mathias Nymana558ccd2013-05-23 17:14:30 +03003870 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
3871 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
3872 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
3873 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
3874
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03003875 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
3876 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03003877 xhci_dbg(xhci, "Slot %u Input Context:\n", udev->slot_id);
3878 xhci_dbg_ctx(xhci, command->in_ctx, 0);
3879
3880 /* Issue and wait for the evaluate context command. */
3881 ret = xhci_configure_endpoint(xhci, udev, command,
3882 true, true);
3883 xhci_dbg(xhci, "Slot %u Output Context:\n", udev->slot_id);
3884 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 0);
3885
3886 if (!ret) {
3887 spin_lock_irqsave(&xhci->lock, flags);
3888 virt_dev->current_mel = max_exit_latency;
3889 spin_unlock_irqrestore(&xhci->lock, flags);
3890 }
3891 return ret;
3892}
3893
Alan Stern84ebc102013-03-27 16:14:46 -04003894#ifdef CONFIG_PM_RUNTIME
Andiry Xu95743232011-09-23 14:19:51 -07003895
3896/* BESL to HIRD Encoding array for USB2 LPM */
3897static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3898 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3899
3900/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003901static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3902 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003903{
Andiry Xuf99298b2011-12-12 16:45:28 +08003904 int u2del, besl, besl_host;
3905 int besl_device = 0;
3906 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07003907
Andiry Xuf99298b2011-12-12 16:45:28 +08003908 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
3909 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3910
3911 if (field & USB_BESL_SUPPORT) {
3912 for (besl_host = 0; besl_host < 16; besl_host++) {
3913 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07003914 break;
3915 }
Andiry Xuf99298b2011-12-12 16:45:28 +08003916 /* Use baseline BESL value as default */
3917 if (field & USB_BESL_BASELINE_VALID)
3918 besl_device = USB_GET_BESL_BASELINE(field);
3919 else if (field & USB_BESL_DEEP_VALID)
3920 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07003921 } else {
3922 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08003923 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07003924 else
Andiry Xuf99298b2011-12-12 16:45:28 +08003925 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07003926 }
3927
Andiry Xuf99298b2011-12-12 16:45:28 +08003928 besl = besl_host + besl_device;
3929 if (besl > 15)
3930 besl = 15;
3931
3932 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07003933}
3934
Mathias Nymana558ccd2013-05-23 17:14:30 +03003935/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
3936static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
3937{
3938 u32 field;
3939 int l1;
3940 int besld = 0;
3941 int hirdm = 0;
3942
3943 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3944
3945 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03003946 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03003947
3948 /* device has preferred BESLD */
3949 if (field & USB_BESL_DEEP_VALID) {
3950 besld = USB_GET_BESL_DEEP(field);
3951 hirdm = 1;
3952 }
3953
3954 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
3955}
3956
Andiry Xu95743232011-09-23 14:19:51 -07003957static int xhci_usb2_software_lpm_test(struct usb_hcd *hcd,
3958 struct usb_device *udev)
3959{
3960 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3961 struct dev_info *dev_info;
3962 __le32 __iomem **port_array;
3963 __le32 __iomem *addr, *pm_addr;
3964 u32 temp, dev_id;
3965 unsigned int port_num;
3966 unsigned long flags;
Andiry Xuf99298b2011-12-12 16:45:28 +08003967 int hird;
Andiry Xu95743232011-09-23 14:19:51 -07003968 int ret;
3969
3970 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
3971 !udev->lpm_capable)
3972 return -EINVAL;
3973
3974 /* we only support lpm for non-hub device connected to root hub yet */
3975 if (!udev->parent || udev->parent->parent ||
3976 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
3977 return -EINVAL;
3978
3979 spin_lock_irqsave(&xhci->lock, flags);
3980
3981 /* Look for devices in lpm_failed_devs list */
3982 dev_id = le16_to_cpu(udev->descriptor.idVendor) << 16 |
3983 le16_to_cpu(udev->descriptor.idProduct);
3984 list_for_each_entry(dev_info, &xhci->lpm_failed_devs, list) {
3985 if (dev_info->dev_id == dev_id) {
3986 ret = -EINVAL;
3987 goto finish;
3988 }
3989 }
3990
3991 port_array = xhci->usb2_ports;
3992 port_num = udev->portnum - 1;
3993
3994 if (port_num > HCS_MAX_PORTS(xhci->hcs_params1)) {
3995 xhci_dbg(xhci, "invalid port number %d\n", udev->portnum);
3996 ret = -EINVAL;
3997 goto finish;
3998 }
3999
4000 /*
4001 * Test USB 2.0 software LPM.
4002 * FIXME: some xHCI 1.0 hosts may implement a new register to set up
4003 * hardware-controlled USB 2.0 LPM. See section 5.4.11 and 4.23.5.1.1.1
4004 * in the June 2011 errata release.
4005 */
4006 xhci_dbg(xhci, "test port %d software LPM\n", port_num);
4007 /*
4008 * Set L1 Device Slot and HIRD/BESL.
4009 * Check device's USB 2.0 extension descriptor to determine whether
4010 * HIRD or BESL shoule be used. See USB2.0 LPM errata.
4011 */
Mathias Nymanb6e76372013-05-23 17:14:29 +03004012 pm_addr = port_array[port_num] + PORTPMSC;
Andiry Xuf99298b2011-12-12 16:45:28 +08004013 hird = xhci_calculate_hird_besl(xhci, udev);
Andiry Xu95743232011-09-23 14:19:51 -07004014 temp = PORT_L1DS(udev->slot_id) | PORT_HIRD(hird);
4015 xhci_writel(xhci, temp, pm_addr);
4016
4017 /* Set port link state to U2(L1) */
4018 addr = port_array[port_num];
4019 xhci_set_link_state(xhci, port_array, port_num, XDEV_U2);
4020
4021 /* wait for ACK */
4022 spin_unlock_irqrestore(&xhci->lock, flags);
4023 msleep(10);
4024 spin_lock_irqsave(&xhci->lock, flags);
4025
4026 /* Check L1 Status */
Sarah Sharp2611bd12012-10-25 13:27:51 -07004027 ret = xhci_handshake(xhci, pm_addr,
4028 PORT_L1S_MASK, PORT_L1S_SUCCESS, 125);
Andiry Xu95743232011-09-23 14:19:51 -07004029 if (ret != -ETIMEDOUT) {
4030 /* enter L1 successfully */
4031 temp = xhci_readl(xhci, addr);
4032 xhci_dbg(xhci, "port %d entered L1 state, port status 0x%x\n",
4033 port_num, temp);
4034 ret = 0;
4035 } else {
4036 temp = xhci_readl(xhci, pm_addr);
4037 xhci_dbg(xhci, "port %d software lpm failed, L1 status %d\n",
4038 port_num, temp & PORT_L1S_MASK);
4039 ret = -EINVAL;
4040 }
4041
4042 /* Resume the port */
4043 xhci_set_link_state(xhci, port_array, port_num, XDEV_U0);
4044
4045 spin_unlock_irqrestore(&xhci->lock, flags);
4046 msleep(10);
4047 spin_lock_irqsave(&xhci->lock, flags);
4048
4049 /* Clear PLC */
4050 xhci_test_and_clear_bit(xhci, port_array, port_num, PORT_PLC);
4051
4052 /* Check PORTSC to make sure the device is in the right state */
4053 if (!ret) {
4054 temp = xhci_readl(xhci, addr);
4055 xhci_dbg(xhci, "resumed port %d status 0x%x\n", port_num, temp);
4056 if (!(temp & PORT_CONNECT) || !(temp & PORT_PE) ||
4057 (temp & PORT_PLS_MASK) != XDEV_U0) {
4058 xhci_dbg(xhci, "port L1 resume fail\n");
4059 ret = -EINVAL;
4060 }
4061 }
4062
4063 if (ret) {
4064 /* Insert dev to lpm_failed_devs list */
4065 xhci_warn(xhci, "device LPM test failed, may disconnect and "
4066 "re-enumerate\n");
4067 dev_info = kzalloc(sizeof(struct dev_info), GFP_ATOMIC);
4068 if (!dev_info) {
4069 ret = -ENOMEM;
4070 goto finish;
4071 }
4072 dev_info->dev_id = dev_id;
4073 INIT_LIST_HEAD(&dev_info->list);
4074 list_add(&dev_info->list, &xhci->lpm_failed_devs);
4075 } else {
4076 xhci_ring_device(xhci, udev->slot_id);
4077 }
4078
4079finish:
4080 spin_unlock_irqrestore(&xhci->lock, flags);
4081 return ret;
4082}
4083
Andiry Xu65580b432011-09-23 14:19:52 -07004084int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4085 struct usb_device *udev, int enable)
4086{
4087 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4088 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004089 __le32 __iomem *pm_addr, *hlpm_addr;
4090 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004091 unsigned int port_num;
4092 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004093 int hird, exit_latency;
4094 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004095
4096 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
4097 !udev->lpm_capable)
4098 return -EPERM;
4099
4100 if (!udev->parent || udev->parent->parent ||
4101 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4102 return -EPERM;
4103
4104 if (udev->usb2_hw_lpm_capable != 1)
4105 return -EPERM;
4106
4107 spin_lock_irqsave(&xhci->lock, flags);
4108
4109 port_array = xhci->usb2_ports;
4110 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004111 pm_addr = port_array[port_num] + PORTPMSC;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004112 pm_val = xhci_readl(xhci, pm_addr);
4113 hlpm_addr = port_array[port_num] + PORTHLPMC;
4114 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004115
4116 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
4117 enable ? "enable" : "disable", port_num);
4118
Andiry Xu65580b432011-09-23 14:19:52 -07004119 if (enable) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004120 /* Host supports BESL timeout instead of HIRD */
4121 if (udev->usb2_hw_lpm_besl_capable) {
4122 /* if device doesn't have a preferred BESL value use a
4123 * default one which works with mixed HIRD and BESL
4124 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4125 */
4126 if ((field & USB_BESL_SUPPORT) &&
4127 (field & USB_BESL_BASELINE_VALID))
4128 hird = USB_GET_BESL_BASELINE(field);
4129 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004130 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004131
4132 exit_latency = xhci_besl_encoding[hird];
4133 spin_unlock_irqrestore(&xhci->lock, flags);
4134
4135 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4136 * input context for link powermanagement evaluate
4137 * context commands. It is protected by hcd->bandwidth
4138 * mutex and is shared by all devices. We need to set
4139 * the max ext latency in USB 2 BESL LPM as well, so
4140 * use the same mutex and xhci_change_max_exit_latency()
4141 */
4142 mutex_lock(hcd->bandwidth_mutex);
4143 ret = xhci_change_max_exit_latency(xhci, udev,
4144 exit_latency);
4145 mutex_unlock(hcd->bandwidth_mutex);
4146
4147 if (ret < 0)
4148 return ret;
4149 spin_lock_irqsave(&xhci->lock, flags);
4150
4151 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
4152 xhci_writel(xhci, hlpm_val, hlpm_addr);
4153 /* flush write */
4154 xhci_readl(xhci, hlpm_addr);
4155 } else {
4156 hird = xhci_calculate_hird_besl(xhci, udev);
4157 }
4158
4159 pm_val &= ~PORT_HIRD_MASK;
4160 pm_val |= PORT_HIRD(hird) | PORT_RWE;
4161 xhci_writel(xhci, pm_val, pm_addr);
4162 pm_val = xhci_readl(xhci, pm_addr);
4163 pm_val |= PORT_HLE;
4164 xhci_writel(xhci, pm_val, pm_addr);
4165 /* flush write */
4166 xhci_readl(xhci, pm_addr);
Andiry Xu65580b432011-09-23 14:19:52 -07004167 } else {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004168 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK);
4169 xhci_writel(xhci, pm_val, pm_addr);
4170 /* flush write */
4171 xhci_readl(xhci, pm_addr);
4172 if (udev->usb2_hw_lpm_besl_capable) {
4173 spin_unlock_irqrestore(&xhci->lock, flags);
4174 mutex_lock(hcd->bandwidth_mutex);
4175 xhci_change_max_exit_latency(xhci, udev, 0);
4176 mutex_unlock(hcd->bandwidth_mutex);
4177 return 0;
4178 }
Andiry Xu65580b432011-09-23 14:19:52 -07004179 }
4180
4181 spin_unlock_irqrestore(&xhci->lock, flags);
4182 return 0;
4183}
4184
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004185/* check if a usb2 port supports a given extened capability protocol
4186 * only USB2 ports extended protocol capability values are cached.
4187 * Return 1 if capability is supported
4188 */
4189static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4190 unsigned capability)
4191{
4192 u32 port_offset, port_count;
4193 int i;
4194
4195 for (i = 0; i < xhci->num_ext_caps; i++) {
4196 if (xhci->ext_caps[i] & capability) {
4197 /* port offsets starts at 1 */
4198 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4199 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4200 if (port >= port_offset &&
4201 port < port_offset + port_count)
4202 return 1;
4203 }
4204 }
4205 return 0;
4206}
4207
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004208int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4209{
4210 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4211 int ret;
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004212 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004213
4214 ret = xhci_usb2_software_lpm_test(hcd, udev);
4215 if (!ret) {
4216 xhci_dbg(xhci, "software LPM test succeed\n");
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004217 if (xhci->hw_lpm_support == 1 &&
4218 xhci_check_usb2_port_capability(xhci, portnum, XHCI_HLC)) {
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004219 udev->usb2_hw_lpm_capable = 1;
Mathias Nyman17f34862013-05-23 17:14:31 +03004220 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4221 udev->l1_params.besl = XHCI_DEFAULT_BESL;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004222 if (xhci_check_usb2_port_capability(xhci, portnum,
4223 XHCI_BLC))
4224 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004225 ret = xhci_set_usb2_hardware_lpm(hcd, udev, 1);
4226 if (!ret)
4227 udev->usb2_hw_lpm_enabled = 1;
4228 }
4229 }
4230
4231 return 0;
4232}
4233
4234#else
4235
4236int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4237 struct usb_device *udev, int enable)
4238{
4239 return 0;
4240}
4241
4242int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4243{
4244 return 0;
4245}
4246
Alan Stern84ebc102013-03-27 16:14:46 -04004247#endif /* CONFIG_PM_RUNTIME */
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004248
Sarah Sharp3b3db022012-05-09 10:55:03 -07004249/*---------------------- USB 3.0 Link PM functions ------------------------*/
4250
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004251#ifdef CONFIG_PM
Sarah Sharpe3567d22012-05-16 13:36:24 -07004252/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4253static unsigned long long xhci_service_interval_to_ns(
4254 struct usb_endpoint_descriptor *desc)
4255{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004256 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004257}
4258
Sarah Sharp3b3db022012-05-09 10:55:03 -07004259static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4260 enum usb3_link_state state)
4261{
4262 unsigned long long sel;
4263 unsigned long long pel;
4264 unsigned int max_sel_pel;
4265 char *state_name;
4266
4267 switch (state) {
4268 case USB3_LPM_U1:
4269 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4270 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4271 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4272 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4273 state_name = "U1";
4274 break;
4275 case USB3_LPM_U2:
4276 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4277 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4278 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4279 state_name = "U2";
4280 break;
4281 default:
4282 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4283 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004284 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004285 }
4286
4287 if (sel <= max_sel_pel && pel <= max_sel_pel)
4288 return USB3_LPM_DEVICE_INITIATED;
4289
4290 if (sel > max_sel_pel)
4291 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4292 "due to long SEL %llu ms\n",
4293 state_name, sel);
4294 else
4295 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004296 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004297 state_name, pel);
4298 return USB3_LPM_DISABLED;
4299}
4300
Sarah Sharpe3567d22012-05-16 13:36:24 -07004301/* Returns the hub-encoded U1 timeout value.
4302 * The U1 timeout should be the maximum of the following values:
4303 * - For control endpoints, U1 system exit latency (SEL) * 3
4304 * - For bulk endpoints, U1 SEL * 5
4305 * - For interrupt endpoints:
4306 * - Notification EPs, U1 SEL * 3
4307 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4308 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4309 */
4310static u16 xhci_calculate_intel_u1_timeout(struct usb_device *udev,
4311 struct usb_endpoint_descriptor *desc)
4312{
4313 unsigned long long timeout_ns;
4314 int ep_type;
4315 int intr_type;
4316
4317 ep_type = usb_endpoint_type(desc);
4318 switch (ep_type) {
4319 case USB_ENDPOINT_XFER_CONTROL:
4320 timeout_ns = udev->u1_params.sel * 3;
4321 break;
4322 case USB_ENDPOINT_XFER_BULK:
4323 timeout_ns = udev->u1_params.sel * 5;
4324 break;
4325 case USB_ENDPOINT_XFER_INT:
4326 intr_type = usb_endpoint_interrupt_type(desc);
4327 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4328 timeout_ns = udev->u1_params.sel * 3;
4329 break;
4330 }
4331 /* Otherwise the calculation is the same as isoc eps */
4332 case USB_ENDPOINT_XFER_ISOC:
4333 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004334 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004335 if (timeout_ns < udev->u1_params.sel * 2)
4336 timeout_ns = udev->u1_params.sel * 2;
4337 break;
4338 default:
4339 return 0;
4340 }
4341
4342 /* The U1 timeout is encoded in 1us intervals. */
Sarah Sharpc88db162012-05-21 08:44:33 -07004343 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004344 /* Don't return a timeout of zero, because that's USB3_LPM_DISABLED. */
4345 if (timeout_ns == USB3_LPM_DISABLED)
4346 timeout_ns++;
4347
4348 /* If the necessary timeout value is bigger than what we can set in the
4349 * USB 3.0 hub, we have to disable hub-initiated U1.
4350 */
4351 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4352 return timeout_ns;
4353 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4354 "due to long timeout %llu ms\n", timeout_ns);
4355 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4356}
4357
4358/* Returns the hub-encoded U2 timeout value.
4359 * The U2 timeout should be the maximum of:
4360 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4361 * - largest bInterval of any active periodic endpoint (to avoid going
4362 * into lower power link states between intervals).
4363 * - the U2 Exit Latency of the device
4364 */
4365static u16 xhci_calculate_intel_u2_timeout(struct usb_device *udev,
4366 struct usb_endpoint_descriptor *desc)
4367{
4368 unsigned long long timeout_ns;
4369 unsigned long long u2_del_ns;
4370
4371 timeout_ns = 10 * 1000 * 1000;
4372
4373 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4374 (xhci_service_interval_to_ns(desc) > timeout_ns))
4375 timeout_ns = xhci_service_interval_to_ns(desc);
4376
Oliver Neukum966e7a82012-10-17 12:17:50 +02004377 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004378 if (u2_del_ns > timeout_ns)
4379 timeout_ns = u2_del_ns;
4380
4381 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004382 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004383 /* If the necessary timeout value is bigger than what we can set in the
4384 * USB 3.0 hub, we have to disable hub-initiated U2.
4385 */
4386 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4387 return timeout_ns;
4388 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4389 "due to long timeout %llu ms\n", timeout_ns);
4390 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4391}
4392
Sarah Sharp3b3db022012-05-09 10:55:03 -07004393static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4394 struct usb_device *udev,
4395 struct usb_endpoint_descriptor *desc,
4396 enum usb3_link_state state,
4397 u16 *timeout)
4398{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004399 if (state == USB3_LPM_U1) {
4400 if (xhci->quirks & XHCI_INTEL_HOST)
4401 return xhci_calculate_intel_u1_timeout(udev, desc);
4402 } else {
4403 if (xhci->quirks & XHCI_INTEL_HOST)
4404 return xhci_calculate_intel_u2_timeout(udev, desc);
4405 }
4406
Sarah Sharp3b3db022012-05-09 10:55:03 -07004407 return USB3_LPM_DISABLED;
4408}
4409
4410static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4411 struct usb_device *udev,
4412 struct usb_endpoint_descriptor *desc,
4413 enum usb3_link_state state,
4414 u16 *timeout)
4415{
4416 u16 alt_timeout;
4417
4418 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4419 desc, state, timeout);
4420
4421 /* If we found we can't enable hub-initiated LPM, or
4422 * the U1 or U2 exit latency was too high to allow
4423 * device-initiated LPM as well, just stop searching.
4424 */
4425 if (alt_timeout == USB3_LPM_DISABLED ||
4426 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4427 *timeout = alt_timeout;
4428 return -E2BIG;
4429 }
4430 if (alt_timeout > *timeout)
4431 *timeout = alt_timeout;
4432 return 0;
4433}
4434
4435static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4436 struct usb_device *udev,
4437 struct usb_host_interface *alt,
4438 enum usb3_link_state state,
4439 u16 *timeout)
4440{
4441 int j;
4442
4443 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4444 if (xhci_update_timeout_for_endpoint(xhci, udev,
4445 &alt->endpoint[j].desc, state, timeout))
4446 return -E2BIG;
4447 continue;
4448 }
4449 return 0;
4450}
4451
Sarah Sharpe3567d22012-05-16 13:36:24 -07004452static int xhci_check_intel_tier_policy(struct usb_device *udev,
4453 enum usb3_link_state state)
4454{
4455 struct usb_device *parent;
4456 unsigned int num_hubs;
4457
4458 if (state == USB3_LPM_U2)
4459 return 0;
4460
4461 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4462 for (parent = udev->parent, num_hubs = 0; parent->parent;
4463 parent = parent->parent)
4464 num_hubs++;
4465
4466 if (num_hubs < 2)
4467 return 0;
4468
4469 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4470 " below second-tier hub.\n");
4471 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4472 "to decrease power consumption.\n");
4473 return -E2BIG;
4474}
4475
Sarah Sharp3b3db022012-05-09 10:55:03 -07004476static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4477 struct usb_device *udev,
4478 enum usb3_link_state state)
4479{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004480 if (xhci->quirks & XHCI_INTEL_HOST)
4481 return xhci_check_intel_tier_policy(udev, state);
Sarah Sharp3b3db022012-05-09 10:55:03 -07004482 return -EINVAL;
4483}
4484
4485/* Returns the U1 or U2 timeout that should be enabled.
4486 * If the tier check or timeout setting functions return with a non-zero exit
4487 * code, that means the timeout value has been finalized and we shouldn't look
4488 * at any more endpoints.
4489 */
4490static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4491 struct usb_device *udev, enum usb3_link_state state)
4492{
4493 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4494 struct usb_host_config *config;
4495 char *state_name;
4496 int i;
4497 u16 timeout = USB3_LPM_DISABLED;
4498
4499 if (state == USB3_LPM_U1)
4500 state_name = "U1";
4501 else if (state == USB3_LPM_U2)
4502 state_name = "U2";
4503 else {
4504 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4505 state);
4506 return timeout;
4507 }
4508
4509 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4510 return timeout;
4511
4512 /* Gather some information about the currently installed configuration
4513 * and alternate interface settings.
4514 */
4515 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4516 state, &timeout))
4517 return timeout;
4518
4519 config = udev->actconfig;
4520 if (!config)
4521 return timeout;
4522
4523 for (i = 0; i < USB_MAXINTERFACES; i++) {
4524 struct usb_driver *driver;
4525 struct usb_interface *intf = config->interface[i];
4526
4527 if (!intf)
4528 continue;
4529
4530 /* Check if any currently bound drivers want hub-initiated LPM
4531 * disabled.
4532 */
4533 if (intf->dev.driver) {
4534 driver = to_usb_driver(intf->dev.driver);
4535 if (driver && driver->disable_hub_initiated_lpm) {
4536 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4537 "at request of driver %s\n",
4538 state_name, driver->name);
4539 return xhci_get_timeout_no_hub_lpm(udev, state);
4540 }
4541 }
4542
4543 /* Not sure how this could happen... */
4544 if (!intf->cur_altsetting)
4545 continue;
4546
4547 if (xhci_update_timeout_for_interface(xhci, udev,
4548 intf->cur_altsetting,
4549 state, &timeout))
4550 return timeout;
4551 }
4552 return timeout;
4553}
4554
Sarah Sharp3b3db022012-05-09 10:55:03 -07004555static int calculate_max_exit_latency(struct usb_device *udev,
4556 enum usb3_link_state state_changed,
4557 u16 hub_encoded_timeout)
4558{
4559 unsigned long long u1_mel_us = 0;
4560 unsigned long long u2_mel_us = 0;
4561 unsigned long long mel_us = 0;
4562 bool disabling_u1;
4563 bool disabling_u2;
4564 bool enabling_u1;
4565 bool enabling_u2;
4566
4567 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4568 hub_encoded_timeout == USB3_LPM_DISABLED);
4569 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4570 hub_encoded_timeout == USB3_LPM_DISABLED);
4571
4572 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4573 hub_encoded_timeout != USB3_LPM_DISABLED);
4574 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4575 hub_encoded_timeout != USB3_LPM_DISABLED);
4576
4577 /* If U1 was already enabled and we're not disabling it,
4578 * or we're going to enable U1, account for the U1 max exit latency.
4579 */
4580 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4581 enabling_u1)
4582 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4583 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4584 enabling_u2)
4585 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4586
4587 if (u1_mel_us > u2_mel_us)
4588 mel_us = u1_mel_us;
4589 else
4590 mel_us = u2_mel_us;
4591 /* xHCI host controller max exit latency field is only 16 bits wide. */
4592 if (mel_us > MAX_EXIT) {
4593 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4594 "is too big.\n", mel_us);
4595 return -E2BIG;
4596 }
4597 return mel_us;
4598}
4599
4600/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
4601int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4602 struct usb_device *udev, enum usb3_link_state state)
4603{
4604 struct xhci_hcd *xhci;
4605 u16 hub_encoded_timeout;
4606 int mel;
4607 int ret;
4608
4609 xhci = hcd_to_xhci(hcd);
4610 /* The LPM timeout values are pretty host-controller specific, so don't
4611 * enable hub-initiated timeouts unless the vendor has provided
4612 * information about their timeout algorithm.
4613 */
4614 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4615 !xhci->devs[udev->slot_id])
4616 return USB3_LPM_DISABLED;
4617
4618 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4619 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4620 if (mel < 0) {
4621 /* Max Exit Latency is too big, disable LPM. */
4622 hub_encoded_timeout = USB3_LPM_DISABLED;
4623 mel = 0;
4624 }
4625
4626 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4627 if (ret)
4628 return ret;
4629 return hub_encoded_timeout;
4630}
4631
4632int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4633 struct usb_device *udev, enum usb3_link_state state)
4634{
4635 struct xhci_hcd *xhci;
4636 u16 mel;
4637 int ret;
4638
4639 xhci = hcd_to_xhci(hcd);
4640 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4641 !xhci->devs[udev->slot_id])
4642 return 0;
4643
4644 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
4645 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4646 if (ret)
4647 return ret;
4648 return 0;
4649}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004650#else /* CONFIG_PM */
4651
4652int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4653 struct usb_device *udev, enum usb3_link_state state)
4654{
4655 return USB3_LPM_DISABLED;
4656}
4657
4658int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4659 struct usb_device *udev, enum usb3_link_state state)
4660{
4661 return 0;
4662}
4663#endif /* CONFIG_PM */
4664
Sarah Sharp3b3db022012-05-09 10:55:03 -07004665/*-------------------------------------------------------------------------*/
4666
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004667/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4668 * internal data structures for the device.
4669 */
4670int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
4671 struct usb_tt *tt, gfp_t mem_flags)
4672{
4673 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4674 struct xhci_virt_device *vdev;
4675 struct xhci_command *config_cmd;
4676 struct xhci_input_control_ctx *ctrl_ctx;
4677 struct xhci_slot_ctx *slot_ctx;
4678 unsigned long flags;
4679 unsigned think_time;
4680 int ret;
4681
4682 /* Ignore root hubs */
4683 if (!hdev->parent)
4684 return 0;
4685
4686 vdev = xhci->devs[hdev->slot_id];
4687 if (!vdev) {
4688 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4689 return -EINVAL;
4690 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004691 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004692 if (!config_cmd) {
4693 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
4694 return -ENOMEM;
4695 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07004696 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
4697 if (!ctrl_ctx) {
4698 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4699 __func__);
4700 xhci_free_command(xhci, config_cmd);
4701 return -ENOMEM;
4702 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004703
4704 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004705 if (hdev->speed == USB_SPEED_HIGH &&
4706 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4707 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4708 xhci_free_command(xhci, config_cmd);
4709 spin_unlock_irqrestore(&xhci->lock, flags);
4710 return -ENOMEM;
4711 }
4712
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004713 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004714 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004715 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004716 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004717 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004718 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004719 if (xhci->hci_version > 0x95) {
4720 xhci_dbg(xhci, "xHCI version %x needs hub "
4721 "TT think time and number of ports\n",
4722 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004723 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004724 /* Set TT think time - convert from ns to FS bit times.
4725 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4726 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004727 *
4728 * xHCI 1.0: this field shall be 0 if the device is not a
4729 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004730 */
4731 think_time = tt->think_time;
4732 if (think_time != 0)
4733 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004734 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4735 slot_ctx->tt_info |=
4736 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004737 } else {
4738 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4739 "TT think time or number of ports\n",
4740 (unsigned int) xhci->hci_version);
4741 }
4742 slot_ctx->dev_state = 0;
4743 spin_unlock_irqrestore(&xhci->lock, flags);
4744
4745 xhci_dbg(xhci, "Set up %s for hub device.\n",
4746 (xhci->hci_version > 0x95) ?
4747 "configure endpoint" : "evaluate context");
4748 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
4749 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
4750
4751 /* Issue and wait for the configure endpoint or
4752 * evaluate context command.
4753 */
4754 if (xhci->hci_version > 0x95)
4755 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4756 false, false);
4757 else
4758 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4759 true, false);
4760
4761 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
4762 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
4763
4764 xhci_free_command(xhci, config_cmd);
4765 return ret;
4766}
4767
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004768int xhci_get_frame(struct usb_hcd *hcd)
4769{
4770 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4771 /* EHCI mods by the periodic size. Why? */
4772 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
4773}
4774
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004775int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4776{
4777 struct xhci_hcd *xhci;
4778 struct device *dev = hcd->self.controller;
4779 int retval;
4780 u32 temp;
4781
Andiry Xufdaf8b32012-03-05 17:49:38 +08004782 /* Accept arbitrarily long scatter-gather lists */
4783 hcd->self.sg_tablesize = ~0;
Hans de Goede19181bc2012-07-04 09:18:02 +02004784 /* XHCI controllers don't stop the ep queue on short packets :| */
4785 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004786
4787 if (usb_hcd_is_primary_hcd(hcd)) {
4788 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
4789 if (!xhci)
4790 return -ENOMEM;
4791 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
4792 xhci->main_hcd = hcd;
4793 /* Mark the first roothub as being USB 2.0.
4794 * The xHCI driver will register the USB 3.0 roothub.
4795 */
4796 hcd->speed = HCD_USB2;
4797 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4798 /*
4799 * USB 2.0 roothub under xHCI has an integrated TT,
4800 * (rate matching hub) as opposed to having an OHCI/UHCI
4801 * companion controller.
4802 */
4803 hcd->has_tt = 1;
4804 } else {
4805 /* xHCI private pointer was set in xhci_pci_probe for the second
4806 * registered roothub.
4807 */
4808 xhci = hcd_to_xhci(hcd);
4809 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4810 if (HCC_64BIT_ADDR(temp)) {
4811 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4812 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4813 } else {
4814 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4815 }
4816 return 0;
4817 }
4818
4819 xhci->cap_regs = hcd->regs;
4820 xhci->op_regs = hcd->regs +
4821 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
4822 xhci->run_regs = hcd->regs +
4823 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
4824 /* Cache read-only capability registers */
4825 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
4826 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
4827 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
4828 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
4829 xhci->hci_version = HC_VERSION(xhci->hcc_params);
4830 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4831 xhci_print_registers(xhci);
4832
4833 get_quirks(dev, xhci);
4834
George Cherian07f3cb72013-07-01 10:59:12 +05304835 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4836 * success event after a short transfer. This quirk will ignore such
4837 * spurious event.
4838 */
4839 if (xhci->hci_version > 0x96)
4840 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4841
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004842 /* Make sure the HC is halted. */
4843 retval = xhci_halt(xhci);
4844 if (retval)
4845 goto error;
4846
4847 xhci_dbg(xhci, "Resetting HCD\n");
4848 /* Reset the internal HC memory state and registers. */
4849 retval = xhci_reset(xhci);
4850 if (retval)
4851 goto error;
4852 xhci_dbg(xhci, "Reset complete\n");
4853
4854 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4855 if (HCC_64BIT_ADDR(temp)) {
4856 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4857 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4858 } else {
4859 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4860 }
4861
4862 xhci_dbg(xhci, "Calling HCD init\n");
4863 /* Initialize HCD and host controller data structures. */
4864 retval = xhci_init(hcd);
4865 if (retval)
4866 goto error;
4867 xhci_dbg(xhci, "Called HCD init\n");
4868 return 0;
4869error:
4870 kfree(xhci);
4871 return retval;
4872}
4873
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004874MODULE_DESCRIPTION(DRIVER_DESC);
4875MODULE_AUTHOR(DRIVER_AUTHOR);
4876MODULE_LICENSE("GPL");
4877
4878static int __init xhci_hcd_init(void)
4879{
Sebastian Andrzej Siewior0cc47d52011-09-23 14:20:02 -07004880 int retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004881
4882 retval = xhci_register_pci();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004883 if (retval < 0) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03004884 pr_debug("Problem registering PCI driver.\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004885 return retval;
4886 }
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004887 retval = xhci_register_plat();
4888 if (retval < 0) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03004889 pr_debug("Problem registering platform driver.\n");
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004890 goto unreg_pci;
4891 }
Sarah Sharp98441972009-05-14 11:44:18 -07004892 /*
4893 * Check the compiler generated sizes of structures that must be laid
4894 * out in specific ways for hardware access.
4895 */
4896 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4897 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4898 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4899 /* xhci_device_control has eight fields, and also
4900 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4901 */
Sarah Sharp98441972009-05-14 11:44:18 -07004902 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4903 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4904 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4905 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4906 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4907 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4908 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004909 return 0;
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004910unreg_pci:
4911 xhci_unregister_pci();
4912 return retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004913}
4914module_init(xhci_hcd_init);
4915
4916static void __exit xhci_hcd_cleanup(void)
4917{
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004918 xhci_unregister_pci();
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004919 xhci_unregister_plat();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004920}
4921module_exit(xhci_hcd_cleanup);