blob: aaae577a3ea3215d0327de8ae9695a802163614a [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>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070029
30#include "xhci.h"
31
32#define DRIVER_AUTHOR "Sarah Sharp"
33#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
34
Sarah Sharpb0567b32009-08-07 14:04:36 -070035/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
36static int link_quirk;
37module_param(link_quirk, int, S_IRUGO | S_IWUSR);
38MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
39
Sarah Sharp66d4ead2009-04-27 19:52:28 -070040/* TODO: copied from ehci-hcd.c - can this be refactored? */
41/*
42 * handshake - spin reading hc until handshake completes or fails
43 * @ptr: address of hc register to be read
44 * @mask: bits to look at in result of read
45 * @done: value of those bits when handshake succeeds
46 * @usec: timeout in microseconds
47 *
48 * Returns negative errno, or zero on success
49 *
50 * Success happens when the "mask" bits have the specified value (hardware
51 * handshake done). There are two failure modes: "usec" have passed (major
52 * hardware flakeout), or the register reads as all-ones (hardware removed).
53 */
54static int handshake(struct xhci_hcd *xhci, void __iomem *ptr,
55 u32 mask, u32 done, int usec)
56{
57 u32 result;
58
59 do {
60 result = xhci_readl(xhci, ptr);
61 if (result == ~(u32)0) /* card removed */
62 return -ENODEV;
63 result &= mask;
64 if (result == done)
65 return 0;
66 udelay(1);
67 usec--;
68 } while (usec > 0);
69 return -ETIMEDOUT;
70}
71
72/*
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070073 * Disable interrupts and begin the xHCI halting process.
74 */
75void xhci_quiesce(struct xhci_hcd *xhci)
76{
77 u32 halted;
78 u32 cmd;
79 u32 mask;
80
81 mask = ~(XHCI_IRQS);
82 halted = xhci_readl(xhci, &xhci->op_regs->status) & STS_HALT;
83 if (!halted)
84 mask &= ~CMD_RUN;
85
86 cmd = xhci_readl(xhci, &xhci->op_regs->command);
87 cmd &= mask;
88 xhci_writel(xhci, cmd, &xhci->op_regs->command);
89}
90
91/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -070092 * Force HC into halt state.
93 *
94 * Disable any IRQs and clear the run/stop bit.
95 * HC will complete any current and actively pipelined transactions, and
Andiry Xubdfca502011-01-06 15:43:39 +080096 * should halt within 16 ms of the run/stop bit being cleared.
Sarah Sharp66d4ead2009-04-27 19:52:28 -070097 * Read HC Halted bit in the status register to see when the HC is finished.
Sarah Sharp66d4ead2009-04-27 19:52:28 -070098 */
99int xhci_halt(struct xhci_hcd *xhci)
100{
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800101 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700102 xhci_dbg(xhci, "// Halt the HC\n");
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -0700103 xhci_quiesce(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700104
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800105 ret = handshake(xhci, &xhci->op_regs->status,
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700106 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800107 if (!ret)
108 xhci->xhc_state |= XHCI_STATE_HALTED;
Sarah Sharp5af98bb2012-03-16 12:58:20 -0700109 else
110 xhci_warn(xhci, "Host not halted after %u microseconds.\n",
111 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800112 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700113}
114
115/*
Sarah Sharped074532010-05-24 13:25:21 -0700116 * Set the run bit and wait for the host to be running.
117 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800118static int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700119{
120 u32 temp;
121 int ret;
122
123 temp = xhci_readl(xhci, &xhci->op_regs->command);
124 temp |= (CMD_RUN);
125 xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n",
126 temp);
127 xhci_writel(xhci, temp, &xhci->op_regs->command);
128
129 /*
130 * Wait for the HCHalted Status bit to be 0 to indicate the host is
131 * running.
132 */
133 ret = handshake(xhci, &xhci->op_regs->status,
134 STS_HALT, 0, XHCI_MAX_HALT_USEC);
135 if (ret == -ETIMEDOUT)
136 xhci_err(xhci, "Host took too long to start, "
137 "waited %u microseconds.\n",
138 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800139 if (!ret)
140 xhci->xhc_state &= ~XHCI_STATE_HALTED;
Sarah Sharped074532010-05-24 13:25:21 -0700141 return ret;
142}
143
144/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800145 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700146 *
147 * This resets pipelines, timers, counters, state machines, etc.
148 * Transactions will be terminated immediately, and operational registers
149 * will be set to their defaults.
150 */
151int xhci_reset(struct xhci_hcd *xhci)
152{
153 u32 command;
154 u32 state;
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700155 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700156
157 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpd3512f62009-07-27 12:03:50 -0700158 if ((state & STS_HALT) == 0) {
159 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
160 return 0;
161 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700162
163 xhci_dbg(xhci, "// Reset the HC\n");
164 command = xhci_readl(xhci, &xhci->op_regs->command);
165 command |= CMD_RESET;
166 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700167
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700168 ret = handshake(xhci, &xhci->op_regs->command,
169 CMD_RESET, 0, 250 * 1000);
170 if (ret)
171 return ret;
172
173 xhci_dbg(xhci, "Wait for controller to be ready for doorbell rings\n");
174 /*
175 * xHCI cannot write to any doorbells or operational registers other
176 * than status until the "Controller Not Ready" flag is cleared.
177 */
178 return handshake(xhci, &xhci->op_regs->status, STS_CNR, 0, 250 * 1000);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700179}
180
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700181#ifdef CONFIG_PCI
182static int xhci_free_msi(struct xhci_hcd *xhci)
Dong Nguyen43b86af2010-07-21 16:56:08 -0700183{
184 int i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700185
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700186 if (!xhci->msix_entries)
187 return -EINVAL;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700188
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700189 for (i = 0; i < xhci->msix_count; i++)
190 if (xhci->msix_entries[i].vector)
191 free_irq(xhci->msix_entries[i].vector,
192 xhci_to_hcd(xhci));
193 return 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700194}
195
196/*
197 * Set up MSI
198 */
199static int xhci_setup_msi(struct xhci_hcd *xhci)
200{
201 int ret;
202 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
203
204 ret = pci_enable_msi(pdev);
205 if (ret) {
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800206 xhci_dbg(xhci, "failed to allocate MSI entry\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700207 return ret;
208 }
209
210 ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq,
211 0, "xhci_hcd", xhci_to_hcd(xhci));
212 if (ret) {
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800213 xhci_dbg(xhci, "disable MSI interrupt\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700214 pci_disable_msi(pdev);
215 }
216
217 return ret;
218}
219
220/*
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700221 * Free IRQs
222 * free all IRQs request
223 */
224static void xhci_free_irq(struct xhci_hcd *xhci)
225{
226 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
227 int ret;
228
229 /* return if using legacy interrupt */
Felipe Balbicd704692012-02-29 16:46:23 +0200230 if (xhci_to_hcd(xhci)->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700231 return;
232
233 ret = xhci_free_msi(xhci);
234 if (!ret)
235 return;
Felipe Balbicd704692012-02-29 16:46:23 +0200236 if (pdev->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700237 free_irq(pdev->irq, xhci_to_hcd(xhci));
238
239 return;
240}
241
242/*
Dong Nguyen43b86af2010-07-21 16:56:08 -0700243 * Set up MSI-X
244 */
245static int xhci_setup_msix(struct xhci_hcd *xhci)
246{
247 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800248 struct usb_hcd *hcd = xhci_to_hcd(xhci);
249 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700250
251 /*
252 * calculate number of msi-x vectors supported.
253 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
254 * with max number of interrupters based on the xhci HCSPARAMS1.
255 * - num_online_cpus: maximum msi-x vectors per CPUs core.
256 * Add additional 1 vector to ensure always available interrupt.
257 */
258 xhci->msix_count = min(num_online_cpus() + 1,
259 HCS_MAX_INTRS(xhci->hcs_params1));
260
261 xhci->msix_entries =
262 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
Greg Kroah-Hartman86871972010-11-11 09:41:02 -0800263 GFP_KERNEL);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700264 if (!xhci->msix_entries) {
265 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
266 return -ENOMEM;
267 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700268
269 for (i = 0; i < xhci->msix_count; i++) {
270 xhci->msix_entries[i].entry = i;
271 xhci->msix_entries[i].vector = 0;
272 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700273
274 ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count);
275 if (ret) {
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800276 xhci_dbg(xhci, "Failed to enable MSI-X\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700277 goto free_entries;
278 }
279
Dong Nguyen43b86af2010-07-21 16:56:08 -0700280 for (i = 0; i < xhci->msix_count; i++) {
281 ret = request_irq(xhci->msix_entries[i].vector,
282 (irq_handler_t)xhci_msi_irq,
283 0, "xhci_hcd", xhci_to_hcd(xhci));
284 if (ret)
285 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700286 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700287
Andiry Xu00292272010-12-27 17:39:02 +0800288 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700289 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700290
291disable_msix:
Sarah Sharp3b9783b2011-12-22 15:02:13 -0800292 xhci_dbg(xhci, "disable MSI-X interrupt\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700293 xhci_free_irq(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700294 pci_disable_msix(pdev);
295free_entries:
296 kfree(xhci->msix_entries);
297 xhci->msix_entries = NULL;
298 return ret;
299}
300
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700301/* Free any IRQs and disable MSI-X */
302static void xhci_cleanup_msix(struct xhci_hcd *xhci)
303{
Andiry Xu00292272010-12-27 17:39:02 +0800304 struct usb_hcd *hcd = xhci_to_hcd(xhci);
305 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700306
Dong Nguyen43b86af2010-07-21 16:56:08 -0700307 xhci_free_irq(xhci);
308
309 if (xhci->msix_entries) {
310 pci_disable_msix(pdev);
311 kfree(xhci->msix_entries);
312 xhci->msix_entries = NULL;
313 } else {
314 pci_disable_msi(pdev);
315 }
316
Andiry Xu00292272010-12-27 17:39:02 +0800317 hcd->msix_enabled = 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700318 return;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700319}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700320
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700321static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
322{
323 int i;
324
325 if (xhci->msix_entries) {
326 for (i = 0; i < xhci->msix_count; i++)
327 synchronize_irq(xhci->msix_entries[i].vector);
328 }
329}
330
331static int xhci_try_enable_msi(struct usb_hcd *hcd)
332{
333 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
334 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
335 int ret;
336
337 /*
338 * Some Fresco Logic host controllers advertise MSI, but fail to
339 * generate interrupts. Don't even try to enable MSI.
340 */
341 if (xhci->quirks & XHCI_BROKEN_MSI)
342 return 0;
343
344 /* unregister the legacy interrupt */
345 if (hcd->irq)
346 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200347 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700348
349 ret = xhci_setup_msix(xhci);
350 if (ret)
351 /* fall back to msi*/
352 ret = xhci_setup_msi(xhci);
353
354 if (!ret)
Felipe Balbicd704692012-02-29 16:46:23 +0200355 /* hcd->irq is 0, we have MSI */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700356 return 0;
357
Sarah Sharp68d07f62012-02-13 16:25:57 -0800358 if (!pdev->irq) {
359 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
360 return -EINVAL;
361 }
362
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700363 /* fall back to legacy interrupt*/
364 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
365 hcd->irq_descr, hcd);
366 if (ret) {
367 xhci_err(xhci, "request interrupt %d failed\n",
368 pdev->irq);
369 return ret;
370 }
371 hcd->irq = pdev->irq;
372 return 0;
373}
374
375#else
376
377static int xhci_try_enable_msi(struct usb_hcd *hcd)
378{
379 return 0;
380}
381
382static void xhci_cleanup_msix(struct xhci_hcd *xhci)
383{
384}
385
386static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
387{
388}
389
390#endif
391
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700392/*
393 * Initialize memory for HCD and xHC (one-time init).
394 *
395 * Program the PAGESIZE register, initialize the device context array, create
396 * device contexts (?), set up a command ring segment (or two?), create event
397 * ring (one for now).
398 */
399int xhci_init(struct usb_hcd *hcd)
400{
401 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
402 int retval = 0;
403
404 xhci_dbg(xhci, "xhci_init\n");
405 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700406 if (xhci->hci_version == 0x95 && link_quirk) {
Sarah Sharpb0567b32009-08-07 14:04:36 -0700407 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
408 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
409 } else {
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700410 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700411 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700412 retval = xhci_mem_init(xhci, GFP_KERNEL);
413 xhci_dbg(xhci, "Finished xhci_init\n");
414
415 return retval;
416}
417
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700418/*-------------------------------------------------------------------------*/
419
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700420
421#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800422static void xhci_event_ring_work(unsigned long arg)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700423{
424 unsigned long flags;
425 int temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700426 u64 temp_64;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700427 struct xhci_hcd *xhci = (struct xhci_hcd *) arg;
428 int i, j;
429
430 xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies);
431
432 spin_lock_irqsave(&xhci->lock, flags);
433 temp = xhci_readl(xhci, &xhci->op_regs->status);
434 xhci_dbg(xhci, "op reg status = 0x%x\n", temp);
Sarah Sharp7bd89b42011-07-01 13:35:40 -0700435 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
436 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe4ab05d2009-09-16 16:42:30 -0700437 xhci_dbg(xhci, "HW died, polling stopped.\n");
438 spin_unlock_irqrestore(&xhci->lock, flags);
439 return;
440 }
441
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700442 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
443 xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700444 xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask);
445 xhci->error_bitmask = 0;
446 xhci_dbg(xhci, "Event ring:\n");
447 xhci_debug_segment(xhci, xhci->event_ring->deq_seg);
448 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
Sarah Sharp8e595a52009-07-27 12:03:31 -0700449 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
450 temp_64 &= ~ERST_PTR_MASK;
451 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700452 xhci_dbg(xhci, "Command ring:\n");
453 xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg);
454 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
455 xhci_dbg_cmd_ptrs(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700456 for (i = 0; i < MAX_HC_SLOTS; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700457 if (!xhci->devs[i])
458 continue;
459 for (j = 0; j < 31; ++j) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700460 xhci_dbg_ep_rings(xhci, i, j, &xhci->devs[i]->eps[j]);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700461 }
462 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700463 spin_unlock_irqrestore(&xhci->lock, flags);
464
465 if (!xhci->zombie)
466 mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ);
467 else
468 xhci_dbg(xhci, "Quit polling the event ring.\n");
469}
470#endif
471
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800472static int xhci_run_finished(struct xhci_hcd *xhci)
473{
474 if (xhci_start(xhci)) {
475 xhci_halt(xhci);
476 return -ENODEV;
477 }
478 xhci->shared_hcd->state = HC_STATE_RUNNING;
479
480 if (xhci->quirks & XHCI_NEC_HOST)
481 xhci_ring_cmd_db(xhci);
482
483 xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n");
484 return 0;
485}
486
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700487/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700488 * Start the HC after it was halted.
489 *
490 * This function is called by the USB core when the HC driver is added.
491 * Its opposite is xhci_stop().
492 *
493 * xhci_init() must be called once before this function can be called.
494 * Reset the HC, enable device slot contexts, program DCBAAP, and
495 * set command ring pointer and event ring pointer.
496 *
497 * Setup MSI-X vectors and enable interrupts.
498 */
499int xhci_run(struct usb_hcd *hcd)
500{
501 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700502 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700503 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700504 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700505
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800506 /* Start the xHCI host controller running only after the USB 2.0 roothub
507 * is setup.
508 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700509
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700510 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800511 if (!usb_hcd_is_primary_hcd(hcd))
512 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700513
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700514 xhci_dbg(xhci, "xhci_run\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700515
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +0200516 xhci_dbg(xhci, "Calling HCD init\n");
517 /* Initialize HCD and host controller data structures. */
518 ret = xhci_init(hcd);
519 if (ret)
520 return ret;
521 xhci_dbg(xhci, "Called HCD init\n");
522
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700523 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700524 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700525 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700526
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700527#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
528 init_timer(&xhci->event_ring_timer);
529 xhci->event_ring_timer.data = (unsigned long) xhci;
Sarah Sharp23e3be12009-04-29 19:05:20 -0700530 xhci->event_ring_timer.function = xhci_event_ring_work;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700531 /* Poll the event ring */
532 xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ;
533 xhci->zombie = 0;
534 xhci_dbg(xhci, "Setting event ring polling timer\n");
535 add_timer(&xhci->event_ring_timer);
536#endif
537
Sarah Sharp66e49d82009-07-27 12:03:46 -0700538 xhci_dbg(xhci, "Command ring memory map follows:\n");
539 xhci_debug_ring(xhci, xhci->cmd_ring);
540 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
541 xhci_dbg_cmd_ptrs(xhci);
542
543 xhci_dbg(xhci, "ERST memory map follows:\n");
544 xhci_dbg_erst(xhci, &xhci->erst);
545 xhci_dbg(xhci, "Event ring:\n");
546 xhci_debug_ring(xhci, xhci->event_ring);
547 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
548 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
549 temp_64 &= ~ERST_PTR_MASK;
550 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
551
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700552 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
553 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700554 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700555 temp |= (u32) 160;
556 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
557
558 /* Set the HCD state before we enable the irqs */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700559 temp = xhci_readl(xhci, &xhci->op_regs->command);
560 temp |= (CMD_EIE);
561 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
562 temp);
563 xhci_writel(xhci, temp, &xhci->op_regs->command);
564
565 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700566 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
567 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700568 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
569 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800570 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700571
Sarah Sharp02386342010-05-24 13:25:28 -0700572 if (xhci->quirks & XHCI_NEC_HOST)
573 xhci_queue_vendor_command(xhci, 0, 0, 0,
574 TRB_TYPE(TRB_NEC_GET_FW));
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700575
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800576 xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700577 return 0;
578}
579
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800580static void xhci_only_stop_hcd(struct usb_hcd *hcd)
581{
582 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
583
584 spin_lock_irq(&xhci->lock);
585 xhci_halt(xhci);
586
587 /* The shared_hcd is going to be deallocated shortly (the USB core only
588 * calls this function when allocation fails in usb_add_hcd(), or
589 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
590 */
591 xhci->shared_hcd = NULL;
592 spin_unlock_irq(&xhci->lock);
593}
594
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700595/*
596 * Stop xHCI driver.
597 *
598 * This function is called by the USB core when the HC driver is removed.
599 * Its opposite is xhci_run().
600 *
601 * Disable device contexts, disable IRQs, and quiesce the HC.
602 * Reset the HC, finish any completed transactions, and cleanup memory.
603 */
604void xhci_stop(struct usb_hcd *hcd)
605{
606 u32 temp;
607 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
608
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800609 if (!usb_hcd_is_primary_hcd(hcd)) {
610 xhci_only_stop_hcd(xhci->shared_hcd);
611 return;
612 }
613
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700614 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800615 /* Make sure the xHC is halted for a USB3 roothub
616 * (xhci_stop() could be called as part of failed init).
617 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700618 xhci_halt(xhci);
619 xhci_reset(xhci);
620 spin_unlock_irq(&xhci->lock);
621
Zhang Rui40a9fb12010-12-17 13:17:04 -0800622 xhci_cleanup_msix(xhci);
623
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700624#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
625 /* Tell the event ring poll function not to reschedule */
626 xhci->zombie = 1;
627 del_timer_sync(&xhci->event_ring_timer);
628#endif
629
Andiry Xuc41136b2011-03-22 17:08:14 +0800630 if (xhci->quirks & XHCI_AMD_PLL_FIX)
631 usb_amd_dev_put();
632
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700633 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
634 temp = xhci_readl(xhci, &xhci->op_regs->status);
635 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
636 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
637 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
638 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800639 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700640
641 xhci_dbg(xhci, "cleaning up memory\n");
642 xhci_mem_cleanup(xhci);
643 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
644 xhci_readl(xhci, &xhci->op_regs->status));
645}
646
647/*
648 * Shutdown HC (not bus-specific)
649 *
650 * This is called when the machine is rebooting or halting. We assume that the
651 * machine will be powered off, and the HC's internal state will be reset.
652 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800653 *
654 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700655 */
656void xhci_shutdown(struct usb_hcd *hcd)
657{
658 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
659
660 spin_lock_irq(&xhci->lock);
661 xhci_halt(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700662 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700663
Zhang Rui40a9fb12010-12-17 13:17:04 -0800664 xhci_cleanup_msix(xhci);
665
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700666 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
667 xhci_readl(xhci, &xhci->op_regs->status));
668}
669
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700670#ifdef CONFIG_PM
Andiry Xu5535b1d2010-10-14 07:23:06 -0700671static void xhci_save_registers(struct xhci_hcd *xhci)
672{
673 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
674 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
675 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
676 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700677 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
678 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
679 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700680 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
681 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700682}
683
684static void xhci_restore_registers(struct xhci_hcd *xhci)
685{
686 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
687 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
688 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
689 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700690 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
691 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
Sarah Sharpfb3d85b2012-03-16 13:27:39 -0700692 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700693 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
694 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700695}
696
Sarah Sharp89821322010-11-12 11:59:31 -0800697static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
698{
699 u64 val_64;
700
701 /* step 2: initialize command ring buffer */
702 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
703 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
704 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
705 xhci->cmd_ring->dequeue) &
706 (u64) ~CMD_RING_RSVD_BITS) |
707 xhci->cmd_ring->cycle_state;
708 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
709 (long unsigned long) val_64);
710 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
711}
712
713/*
714 * The whole command ring must be cleared to zero when we suspend the host.
715 *
716 * The host doesn't save the command ring pointer in the suspend well, so we
717 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
718 * aligned, because of the reserved bits in the command ring dequeue pointer
719 * register. Therefore, we can't just set the dequeue pointer back in the
720 * middle of the ring (TRBs are 16-byte aligned).
721 */
722static void xhci_clear_command_ring(struct xhci_hcd *xhci)
723{
724 struct xhci_ring *ring;
725 struct xhci_segment *seg;
726
727 ring = xhci->cmd_ring;
728 seg = ring->deq_seg;
729 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800730 memset(seg->trbs, 0,
731 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
732 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
733 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800734 seg = seg->next;
735 } while (seg != ring->deq_seg);
736
737 /* Reset the software enqueue and dequeue pointers */
738 ring->deq_seg = ring->first_seg;
739 ring->dequeue = ring->first_seg->trbs;
740 ring->enq_seg = ring->deq_seg;
741 ring->enqueue = ring->dequeue;
742
Andiry Xub008df62012-03-05 17:49:34 +0800743 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800744 /*
745 * Ring is now zeroed, so the HW should look for change of ownership
746 * when the cycle bit is set to 1.
747 */
748 ring->cycle_state = 1;
749
750 /*
751 * Reset the hardware dequeue pointer.
752 * Yes, this will need to be re-written after resume, but we're paranoid
753 * and want to make sure the hardware doesn't access bogus memory
754 * because, say, the BIOS or an SMI started the host without changing
755 * the command ring pointers.
756 */
757 xhci_set_cmd_ring_deq(xhci);
758}
759
Andiry Xu5535b1d2010-10-14 07:23:06 -0700760/*
761 * Stop HC (not bus-specific)
762 *
763 * This is called when the machine transition into S3/S4 mode.
764 *
765 */
766int xhci_suspend(struct xhci_hcd *xhci)
767{
768 int rc = 0;
769 struct usb_hcd *hcd = xhci_to_hcd(xhci);
770 u32 command;
771
772 spin_lock_irq(&xhci->lock);
773 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800774 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700775 /* step 1: stop endpoint */
776 /* skipped assuming that port suspend has done */
777
778 /* step 2: clear Run/Stop bit */
779 command = xhci_readl(xhci, &xhci->op_regs->command);
780 command &= ~CMD_RUN;
781 xhci_writel(xhci, command, &xhci->op_regs->command);
782 if (handshake(xhci, &xhci->op_regs->status,
783 STS_HALT, STS_HALT, 100*100)) {
784 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
785 spin_unlock_irq(&xhci->lock);
786 return -ETIMEDOUT;
787 }
Sarah Sharp89821322010-11-12 11:59:31 -0800788 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700789
790 /* step 3: save registers */
791 xhci_save_registers(xhci);
792
793 /* step 4: set CSS flag */
794 command = xhci_readl(xhci, &xhci->op_regs->command);
795 command |= CMD_CSS;
796 xhci_writel(xhci, command, &xhci->op_regs->command);
797 if (handshake(xhci, &xhci->op_regs->status, STS_SAVE, 0, 10*100)) {
798 xhci_warn(xhci, "WARN: xHC CMD_CSS timeout\n");
799 spin_unlock_irq(&xhci->lock);
800 return -ETIMEDOUT;
801 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700802 spin_unlock_irq(&xhci->lock);
803
Andiry Xu00292272010-12-27 17:39:02 +0800804 /* step 5: remove core well power */
805 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700806 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800807
Andiry Xu5535b1d2010-10-14 07:23:06 -0700808 return rc;
809}
810
811/*
812 * start xHC (not bus-specific)
813 *
814 * This is called when the machine transition from S3/S4 mode.
815 *
816 */
817int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
818{
819 u32 command, temp = 0;
820 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800821 struct usb_hcd *secondary_hcd;
Alan Sternf69e3122011-11-03 11:37:10 -0400822 int retval = 0;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700823
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800824 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300825 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800826 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800827 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
828 time_before(jiffies,
829 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d2010-10-14 07:23:06 -0700830 msleep(100);
831
Alan Sternf69e3122011-11-03 11:37:10 -0400832 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
833 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
834
Andiry Xu5535b1d2010-10-14 07:23:06 -0700835 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200836 if (xhci->quirks & XHCI_RESET_ON_RESUME)
837 hibernated = true;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700838
839 if (!hibernated) {
840 /* step 1: restore register */
841 xhci_restore_registers(xhci);
842 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800843 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700844 /* step 3: restore state and start state*/
845 /* step 3: set CRS flag */
846 command = xhci_readl(xhci, &xhci->op_regs->command);
847 command |= CMD_CRS;
848 xhci_writel(xhci, command, &xhci->op_regs->command);
849 if (handshake(xhci, &xhci->op_regs->status,
850 STS_RESTORE, 0, 10*100)) {
851 xhci_dbg(xhci, "WARN: xHC CMD_CSS timeout\n");
852 spin_unlock_irq(&xhci->lock);
853 return -ETIMEDOUT;
854 }
855 temp = xhci_readl(xhci, &xhci->op_regs->status);
856 }
857
858 /* If restore operation fails, re-initialize the HC during resume */
859 if ((temp & STS_SRE) || hibernated) {
Sarah Sharpfedd3832011-04-12 17:43:19 -0700860 /* Let the USB core know _both_ roothubs lost power. */
861 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
862 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700863
864 xhci_dbg(xhci, "Stop HCD\n");
865 xhci_halt(xhci);
866 xhci_reset(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700867 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +0800868 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700869
870#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
871 /* Tell the event ring poll function not to reschedule */
872 xhci->zombie = 1;
873 del_timer_sync(&xhci->event_ring_timer);
874#endif
875
876 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
877 temp = xhci_readl(xhci, &xhci->op_regs->status);
878 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
879 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
880 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
881 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800882 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700883
884 xhci_dbg(xhci, "cleaning up memory\n");
885 xhci_mem_cleanup(xhci);
886 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
887 xhci_readl(xhci, &xhci->op_regs->status));
888
Sarah Sharp65b22f92010-12-17 12:35:05 -0800889 /* USB core calls the PCI reinit and start functions twice:
890 * first with the primary HCD, and then with the secondary HCD.
891 * If we don't do the same, the host will never be started.
892 */
893 if (!usb_hcd_is_primary_hcd(hcd))
894 secondary_hcd = hcd;
895 else
896 secondary_hcd = xhci->shared_hcd;
897
898 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
899 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700900 if (retval)
901 return retval;
Sarah Sharp65b22f92010-12-17 12:35:05 -0800902 xhci_dbg(xhci, "Start the primary HCD\n");
903 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800904 if (!retval) {
Alan Sternf69e3122011-11-03 11:37:10 -0400905 xhci_dbg(xhci, "Start the secondary HCD\n");
906 retval = xhci_run(secondary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800907 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700908 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb3209372011-03-07 11:24:07 -0800909 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e3122011-11-03 11:37:10 -0400910 goto done;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700911 }
912
Andiry Xu5535b1d2010-10-14 07:23:06 -0700913 /* step 4: set Run/Stop bit */
914 command = xhci_readl(xhci, &xhci->op_regs->command);
915 command |= CMD_RUN;
916 xhci_writel(xhci, command, &xhci->op_regs->command);
917 handshake(xhci, &xhci->op_regs->status, STS_HALT,
918 0, 250 * 1000);
919
920 /* step 5: walk topology and initialize portsc,
921 * portpmsc and portli
922 */
923 /* this is done in bus_resume */
924
925 /* step 6: restart each of the previously
926 * Running endpoints by ringing their doorbells
927 */
928
Andiry Xu5535b1d2010-10-14 07:23:06 -0700929 spin_unlock_irq(&xhci->lock);
Alan Sternf69e3122011-11-03 11:37:10 -0400930
931 done:
932 if (retval == 0) {
933 usb_hcd_resume_root_hub(hcd);
934 usb_hcd_resume_root_hub(xhci->shared_hcd);
935 }
936 return retval;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700937}
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700938#endif /* CONFIG_PM */
939
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700940/*-------------------------------------------------------------------------*/
941
Sarah Sharpd0e96f52009-04-27 19:58:01 -0700942/**
943 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
944 * HCDs. Find the index for an endpoint given its descriptor. Use the return
945 * value to right shift 1 for the bitmask.
946 *
947 * Index = (epnum * 2) + direction - 1,
948 * where direction = 0 for OUT, 1 for IN.
949 * For control endpoints, the IN index is used (OUT index is unused), so
950 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
951 */
952unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
953{
954 unsigned int index;
955 if (usb_endpoint_xfer_control(desc))
956 index = (unsigned int) (usb_endpoint_num(desc)*2);
957 else
958 index = (unsigned int) (usb_endpoint_num(desc)*2) +
959 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
960 return index;
961}
962
Sarah Sharpf94e01862009-04-27 19:58:38 -0700963/* Find the flag for this endpoint (for use in the control context). Use the
964 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
965 * bit 1, etc.
966 */
967unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
968{
969 return 1 << (xhci_get_endpoint_index(desc) + 1);
970}
971
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700972/* Find the flag for this endpoint (for use in the control context). Use the
973 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
974 * bit 1, etc.
975 */
976unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
977{
978 return 1 << (ep_index + 1);
979}
980
Sarah Sharpf94e01862009-04-27 19:58:38 -0700981/* Compute the last valid endpoint context index. Basically, this is the
982 * endpoint index plus one. For slot contexts with more than valid endpoint,
983 * we find the most significant bit set in the added contexts flags.
984 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
985 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
986 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700987unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -0700988{
989 return fls(added_ctxs) - 1;
990}
991
Sarah Sharpd0e96f52009-04-27 19:58:01 -0700992/* Returns 1 if the arguments are OK;
993 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
994 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800995static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -0700996 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
997 const char *func) {
998 struct xhci_hcd *xhci;
999 struct xhci_virt_device *virt_dev;
1000
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001001 if (!hcd || (check_ep && !ep) || !udev) {
1002 printk(KERN_DEBUG "xHCI %s called with invalid args\n",
1003 func);
1004 return -EINVAL;
1005 }
1006 if (!udev->parent) {
1007 printk(KERN_DEBUG "xHCI %s called for root hub\n",
1008 func);
1009 return 0;
1010 }
Andiry Xu64927732010-10-14 07:22:45 -07001011
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001012 xhci = hcd_to_xhci(hcd);
1013 if (xhci->xhc_state & XHCI_STATE_HALTED)
1014 return -ENODEV;
1015
Andiry Xu64927732010-10-14 07:22:45 -07001016 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001017 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Andiry Xu64927732010-10-14 07:22:45 -07001018 printk(KERN_DEBUG "xHCI %s called with unaddressed "
1019 "device\n", func);
1020 return -EINVAL;
1021 }
1022
1023 virt_dev = xhci->devs[udev->slot_id];
1024 if (virt_dev->udev != udev) {
1025 printk(KERN_DEBUG "xHCI %s called with udev and "
1026 "virt_dev does not match\n", func);
1027 return -EINVAL;
1028 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001029 }
Andiry Xu64927732010-10-14 07:22:45 -07001030
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001031 return 1;
1032}
1033
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001034static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001035 struct usb_device *udev, struct xhci_command *command,
1036 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001037
1038/*
1039 * Full speed devices may have a max packet size greater than 8 bytes, but the
1040 * USB core doesn't know that until it reads the first 8 bytes of the
1041 * descriptor. If the usb_device's max packet size changes after that point,
1042 * we need to issue an evaluate context command and wait on it.
1043 */
1044static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1045 unsigned int ep_index, struct urb *urb)
1046{
1047 struct xhci_container_ctx *in_ctx;
1048 struct xhci_container_ctx *out_ctx;
1049 struct xhci_input_control_ctx *ctrl_ctx;
1050 struct xhci_ep_ctx *ep_ctx;
1051 int max_packet_size;
1052 int hw_max_packet_size;
1053 int ret = 0;
1054
1055 out_ctx = xhci->devs[slot_id]->out_ctx;
1056 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001057 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001058 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001059 if (hw_max_packet_size != max_packet_size) {
1060 xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n");
1061 xhci_dbg(xhci, "Max packet size in usb_device = %d\n",
1062 max_packet_size);
1063 xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n",
1064 hw_max_packet_size);
1065 xhci_dbg(xhci, "Issuing evaluate context command.\n");
1066
1067 /* Set up the modified control endpoint 0 */
Sarah Sharp913a8a32009-09-04 10:53:13 -07001068 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1069 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001070 in_ctx = xhci->devs[slot_id]->in_ctx;
1071 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001072 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1073 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001074
1075 /* Set up the input context flags for the command */
1076 /* FIXME: This won't work if a non-default control endpoint
1077 * changes max packet sizes.
1078 */
1079 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001080 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001081 ctrl_ctx->drop_flags = 0;
1082
1083 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1084 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1085 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1086 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1087
Sarah Sharp913a8a32009-09-04 10:53:13 -07001088 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1089 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001090
1091 /* Clean up the input context for later use by bandwidth
1092 * functions.
1093 */
Matt Evans28ccd292011-03-29 13:40:46 +11001094 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001095 }
1096 return ret;
1097}
1098
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001099/*
1100 * non-error returns are a promise to giveback() the urb later
1101 * we drop ownership so next owner (or urb unlink) can get it
1102 */
1103int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1104{
1105 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001106 struct xhci_td *buffer;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001107 unsigned long flags;
1108 int ret = 0;
1109 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001110 struct urb_priv *urb_priv;
1111 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001112
Andiry Xu64927732010-10-14 07:22:45 -07001113 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1114 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001115 return -EINVAL;
1116
1117 slot_id = urb->dev->slot_id;
1118 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001119
Alan Stern541c7d42010-06-22 16:39:10 -04001120 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001121 if (!in_interrupt())
1122 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1123 ret = -ESHUTDOWN;
1124 goto exit;
1125 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001126
1127 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1128 size = urb->number_of_packets;
1129 else
1130 size = 1;
1131
1132 urb_priv = kzalloc(sizeof(struct urb_priv) +
1133 size * sizeof(struct xhci_td *), mem_flags);
1134 if (!urb_priv)
1135 return -ENOMEM;
1136
Andiry Xu2ffdea22011-09-02 11:05:57 -07001137 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1138 if (!buffer) {
1139 kfree(urb_priv);
1140 return -ENOMEM;
1141 }
1142
Andiry Xu8e51adc2010-07-22 15:23:31 -07001143 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001144 urb_priv->td[i] = buffer;
1145 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001146 }
1147
1148 urb_priv->length = size;
1149 urb_priv->td_cnt = 0;
1150 urb->hcpriv = urb_priv;
1151
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001152 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1153 /* Check to see if the max packet size for the default control
1154 * endpoint changed during FS device enumeration
1155 */
1156 if (urb->dev->speed == USB_SPEED_FULL) {
1157 ret = xhci_check_maxpacket(xhci, slot_id,
1158 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001159 if (ret < 0) {
1160 xhci_urb_free_priv(xhci, urb_priv);
1161 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001162 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001163 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001164 }
1165
Sarah Sharpb11069f2009-07-27 12:03:23 -07001166 /* We have a spinlock and interrupts disabled, so we must pass
1167 * atomic context to this function, which may allocate memory.
1168 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001169 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001170 if (xhci->xhc_state & XHCI_STATE_DYING)
1171 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001172 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001173 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001174 if (ret)
1175 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001176 spin_unlock_irqrestore(&xhci->lock, flags);
1177 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1178 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001179 if (xhci->xhc_state & XHCI_STATE_DYING)
1180 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001181 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1182 EP_GETTING_STREAMS) {
1183 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1184 "is transitioning to using streams.\n");
1185 ret = -EINVAL;
1186 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1187 EP_GETTING_NO_STREAMS) {
1188 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1189 "is transitioning to "
1190 "not having streams.\n");
1191 ret = -EINVAL;
1192 } else {
1193 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1194 slot_id, ep_index);
1195 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001196 if (ret)
1197 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001198 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001199 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1200 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001201 if (xhci->xhc_state & XHCI_STATE_DYING)
1202 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001203 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1204 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001205 if (ret)
1206 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001207 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001208 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001209 spin_lock_irqsave(&xhci->lock, flags);
1210 if (xhci->xhc_state & XHCI_STATE_DYING)
1211 goto dying;
1212 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1213 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001214 if (ret)
1215 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001216 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001217 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001218exit:
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001219 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001220dying:
1221 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1222 "non-responsive xHCI host.\n",
1223 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001224 ret = -ESHUTDOWN;
1225free_priv:
1226 xhci_urb_free_priv(xhci, urb_priv);
1227 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001228 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001229 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001230}
1231
Sarah Sharp021bff92010-07-29 22:12:20 -07001232/* Get the right ring for the given URB.
1233 * If the endpoint supports streams, boundary check the URB's stream ID.
1234 * If the endpoint doesn't support streams, return the singular endpoint ring.
1235 */
1236static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1237 struct urb *urb)
1238{
1239 unsigned int slot_id;
1240 unsigned int ep_index;
1241 unsigned int stream_id;
1242 struct xhci_virt_ep *ep;
1243
1244 slot_id = urb->dev->slot_id;
1245 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1246 stream_id = urb->stream_id;
1247 ep = &xhci->devs[slot_id]->eps[ep_index];
1248 /* Common case: no streams */
1249 if (!(ep->ep_state & EP_HAS_STREAMS))
1250 return ep->ring;
1251
1252 if (stream_id == 0) {
1253 xhci_warn(xhci,
1254 "WARN: Slot ID %u, ep index %u has streams, "
1255 "but URB has no stream ID.\n",
1256 slot_id, ep_index);
1257 return NULL;
1258 }
1259
1260 if (stream_id < ep->stream_info->num_streams)
1261 return ep->stream_info->stream_rings[stream_id];
1262
1263 xhci_warn(xhci,
1264 "WARN: Slot ID %u, ep index %u has "
1265 "stream IDs 1 to %u allocated, "
1266 "but stream ID %u is requested.\n",
1267 slot_id, ep_index,
1268 ep->stream_info->num_streams - 1,
1269 stream_id);
1270 return NULL;
1271}
1272
Sarah Sharpae636742009-04-29 19:02:31 -07001273/*
1274 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1275 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1276 * should pick up where it left off in the TD, unless a Set Transfer Ring
1277 * Dequeue Pointer is issued.
1278 *
1279 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1280 * the ring. Since the ring is a contiguous structure, they can't be physically
1281 * removed. Instead, there are two options:
1282 *
1283 * 1) If the HC is in the middle of processing the URB to be canceled, we
1284 * simply move the ring's dequeue pointer past those TRBs using the Set
1285 * Transfer Ring Dequeue Pointer command. This will be the common case,
1286 * when drivers timeout on the last submitted URB and attempt to cancel.
1287 *
1288 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1289 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1290 * HC will need to invalidate the any TRBs it has cached after the stop
1291 * endpoint command, as noted in the xHCI 0.95 errata.
1292 *
1293 * 3) The TD may have completed by the time the Stop Endpoint Command
1294 * completes, so software needs to handle that case too.
1295 *
1296 * This function should protect against the TD enqueueing code ringing the
1297 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1298 * It also needs to account for multiple cancellations on happening at the same
1299 * time for the same endpoint.
1300 *
1301 * Note that this function can be called in any context, or so says
1302 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001303 */
1304int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1305{
Sarah Sharpae636742009-04-29 19:02:31 -07001306 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001307 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001308 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001309 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001310 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001311 struct xhci_td *td;
1312 unsigned int ep_index;
1313 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001314 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07001315
1316 xhci = hcd_to_xhci(hcd);
1317 spin_lock_irqsave(&xhci->lock, flags);
1318 /* Make sure the URB hasn't completed or been unlinked already */
1319 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1320 if (ret || !urb->hcpriv)
1321 goto done;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001322 temp = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001323 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001324 xhci_dbg(xhci, "HW died, freeing TD.\n");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001325 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001326 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1327 td = urb_priv->td[i];
1328 if (!list_empty(&td->td_list))
1329 list_del_init(&td->td_list);
1330 if (!list_empty(&td->cancelled_td_list))
1331 list_del_init(&td->cancelled_td_list);
1332 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001333
1334 usb_hcd_unlink_urb_from_ep(hcd, urb);
1335 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001336 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001337 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001338 return ret;
1339 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001340 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1341 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001342 xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on "
1343 "non-responsive xHCI host.\n",
1344 urb->ep->desc.bEndpointAddress, urb);
1345 /* Let the stop endpoint command watchdog timer (which set this
1346 * state) finish cleaning up the endpoint TD lists. We must
1347 * have caught it in the middle of dropping a lock and giving
1348 * back an URB.
1349 */
1350 goto done;
1351 }
Sarah Sharpae636742009-04-29 19:02:31 -07001352
Sarah Sharpae636742009-04-29 19:02:31 -07001353 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001354 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001355 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1356 if (!ep_ring) {
1357 ret = -EINVAL;
1358 goto done;
1359 }
1360
Andiry Xu8e51adc2010-07-22 15:23:31 -07001361 urb_priv = urb->hcpriv;
Sarah Sharp79688ac2011-12-19 16:56:04 -08001362 i = urb_priv->td_cnt;
1363 if (i < urb_priv->length)
1364 xhci_dbg(xhci, "Cancel URB %p, dev %s, ep 0x%x, "
1365 "starting at offset 0x%llx\n",
1366 urb, urb->dev->devpath,
1367 urb->ep->desc.bEndpointAddress,
1368 (unsigned long long) xhci_trb_virt_to_dma(
1369 urb_priv->td[i]->start_seg,
1370 urb_priv->td[i]->first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001371
Sarah Sharp79688ac2011-12-19 16:56:04 -08001372 for (; i < urb_priv->length; i++) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001373 td = urb_priv->td[i];
1374 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1375 }
1376
Sarah Sharpae636742009-04-29 19:02:31 -07001377 /* Queue a stop endpoint command, but only if this is
1378 * the first cancellation to be handled.
1379 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001380 if (!(ep->ep_state & EP_HALT_PENDING)) {
1381 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001382 ep->stop_cmds_pending++;
1383 ep->stop_cmd_timer.expires = jiffies +
1384 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1385 add_timer(&ep->stop_cmd_timer);
Andiry Xube88fe42010-10-14 07:22:57 -07001386 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001387 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001388 }
1389done:
1390 spin_unlock_irqrestore(&xhci->lock, flags);
1391 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001392}
1393
Sarah Sharpf94e01862009-04-27 19:58:38 -07001394/* Drop an endpoint from a new bandwidth configuration for this device.
1395 * Only one call to this function is allowed per endpoint before
1396 * check_bandwidth() or reset_bandwidth() must be called.
1397 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1398 * add the endpoint to the schedule with possibly new parameters denoted by a
1399 * different endpoint descriptor in usb_host_endpoint.
1400 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1401 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001402 *
1403 * The USB core will not allow URBs to be queued to an endpoint that is being
1404 * disabled, so there's no need for mutual exclusion to protect
1405 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001406 */
1407int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1408 struct usb_host_endpoint *ep)
1409{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001410 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001411 struct xhci_container_ctx *in_ctx, *out_ctx;
1412 struct xhci_input_control_ctx *ctrl_ctx;
1413 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001414 unsigned int last_ctx;
1415 unsigned int ep_index;
1416 struct xhci_ep_ctx *ep_ctx;
1417 u32 drop_flag;
1418 u32 new_add_flags, new_drop_flags, new_slot_info;
1419 int ret;
1420
Andiry Xu64927732010-10-14 07:22:45 -07001421 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001422 if (ret <= 0)
1423 return ret;
1424 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001425 if (xhci->xhc_state & XHCI_STATE_DYING)
1426 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001427
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001428 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001429 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1430 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1431 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1432 __func__, drop_flag);
1433 return 0;
1434 }
1435
Sarah Sharpf94e01862009-04-27 19:58:38 -07001436 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001437 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1438 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001439 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001440 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001441 /* If the HC already knows the endpoint is disabled,
1442 * or the HCD has noted it is disabled, ignore this request
1443 */
Matt Evansf5960b62011-06-01 10:22:55 +10001444 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1445 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001446 le32_to_cpu(ctrl_ctx->drop_flags) &
1447 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001448 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1449 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001450 return 0;
1451 }
1452
Matt Evans28ccd292011-03-29 13:40:46 +11001453 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1454 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001455
Matt Evans28ccd292011-03-29 13:40:46 +11001456 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1457 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001458
Matt Evans28ccd292011-03-29 13:40:46 +11001459 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
John Yound115b042009-07-27 12:05:15 -07001460 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001461 /* Update the last valid endpoint context, if we deleted the last one */
Matt Evans28ccd292011-03-29 13:40:46 +11001462 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1463 LAST_CTX(last_ctx)) {
1464 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1465 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001466 }
Matt Evans28ccd292011-03-29 13:40:46 +11001467 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001468
1469 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1470
Sarah Sharpf94e01862009-04-27 19:58:38 -07001471 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1472 (unsigned int) ep->desc.bEndpointAddress,
1473 udev->slot_id,
1474 (unsigned int) new_drop_flags,
1475 (unsigned int) new_add_flags,
1476 (unsigned int) new_slot_info);
1477 return 0;
1478}
1479
1480/* Add an endpoint to a new possible bandwidth configuration for this device.
1481 * Only one call to this function is allowed per endpoint before
1482 * check_bandwidth() or reset_bandwidth() must be called.
1483 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1484 * add the endpoint to the schedule with possibly new parameters denoted by a
1485 * different endpoint descriptor in usb_host_endpoint.
1486 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1487 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001488 *
1489 * The USB core will not allow URBs to be queued to an endpoint until the
1490 * configuration or alt setting is installed in the device, so there's no need
1491 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001492 */
1493int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1494 struct usb_host_endpoint *ep)
1495{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001496 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001497 struct xhci_container_ctx *in_ctx, *out_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001498 unsigned int ep_index;
1499 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001500 struct xhci_slot_ctx *slot_ctx;
1501 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001502 u32 added_ctxs;
1503 unsigned int last_ctx;
1504 u32 new_add_flags, new_drop_flags, new_slot_info;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001505 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001506 int ret = 0;
1507
Andiry Xu64927732010-10-14 07:22:45 -07001508 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001509 if (ret <= 0) {
1510 /* So we won't queue a reset ep command for a root hub */
1511 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001512 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001513 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001514 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001515 if (xhci->xhc_state & XHCI_STATE_DYING)
1516 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001517
1518 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1519 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1520 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1521 /* FIXME when we have to issue an evaluate endpoint command to
1522 * deal with ep0 max packet size changing once we get the
1523 * descriptors
1524 */
1525 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1526 __func__, added_ctxs);
1527 return 0;
1528 }
1529
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001530 virt_dev = xhci->devs[udev->slot_id];
1531 in_ctx = virt_dev->in_ctx;
1532 out_ctx = virt_dev->out_ctx;
John Yound115b042009-07-27 12:05:15 -07001533 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001534 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001535 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001536
1537 /* If this endpoint is already in use, and the upper layers are trying
1538 * to add it again without dropping it, reject the addition.
1539 */
1540 if (virt_dev->eps[ep_index].ring &&
1541 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1542 xhci_get_endpoint_flag(&ep->desc))) {
1543 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1544 "without dropping it.\n",
1545 (unsigned int) ep->desc.bEndpointAddress);
1546 return -EINVAL;
1547 }
1548
Sarah Sharpf94e01862009-04-27 19:58:38 -07001549 /* If the HCD has already noted the endpoint is enabled,
1550 * ignore this request.
1551 */
Matt Evans28ccd292011-03-29 13:40:46 +11001552 if (le32_to_cpu(ctrl_ctx->add_flags) &
1553 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001554 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1555 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001556 return 0;
1557 }
1558
Sarah Sharpf88ba782009-05-14 11:44:22 -07001559 /*
1560 * Configuration and alternate setting changes must be done in
1561 * process context, not interrupt context (or so documenation
1562 * for usb_set_interface() and usb_set_configuration() claim).
1563 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001564 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001565 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1566 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001567 return -ENOMEM;
1568 }
1569
Matt Evans28ccd292011-03-29 13:40:46 +11001570 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1571 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001572
1573 /* If xhci_endpoint_disable() was called for this endpoint, but the
1574 * xHC hasn't been notified yet through the check_bandwidth() call,
1575 * this re-adds a new state for the endpoint from the new endpoint
1576 * descriptors. We must drop and re-add this endpoint, so we leave the
1577 * drop flags alone.
1578 */
Matt Evans28ccd292011-03-29 13:40:46 +11001579 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001580
John Yound115b042009-07-27 12:05:15 -07001581 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001582 /* Update the last valid endpoint context, if we just added one past */
Matt Evans28ccd292011-03-29 13:40:46 +11001583 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1584 LAST_CTX(last_ctx)) {
1585 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1586 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001587 }
Matt Evans28ccd292011-03-29 13:40:46 +11001588 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001589
Sarah Sharpa1587d92009-07-27 12:03:15 -07001590 /* Store the usb_device pointer for later use */
1591 ep->hcpriv = udev;
1592
Sarah Sharpf94e01862009-04-27 19:58:38 -07001593 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1594 (unsigned int) ep->desc.bEndpointAddress,
1595 udev->slot_id,
1596 (unsigned int) new_drop_flags,
1597 (unsigned int) new_add_flags,
1598 (unsigned int) new_slot_info);
1599 return 0;
1600}
1601
John Yound115b042009-07-27 12:05:15 -07001602static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001603{
John Yound115b042009-07-27 12:05:15 -07001604 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001605 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001606 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001607 int i;
1608
1609 /* When a device's add flag and drop flag are zero, any subsequent
1610 * configure endpoint command will leave that endpoint's state
1611 * untouched. Make sure we don't leave any old state in the input
1612 * endpoint contexts.
1613 */
John Yound115b042009-07-27 12:05:15 -07001614 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1615 ctrl_ctx->drop_flags = 0;
1616 ctrl_ctx->add_flags = 0;
1617 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001618 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001619 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001620 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001621 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001622 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001623 ep_ctx->ep_info = 0;
1624 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001625 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001626 ep_ctx->tx_info = 0;
1627 }
1628}
1629
Sarah Sharpf2217e82009-08-07 14:04:43 -07001630static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001631 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001632{
1633 int ret;
1634
Sarah Sharp913a8a32009-09-04 10:53:13 -07001635 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001636 case COMP_ENOMEM:
1637 dev_warn(&udev->dev, "Not enough host controller resources "
1638 "for new device state.\n");
1639 ret = -ENOMEM;
1640 /* FIXME: can we allocate more resources for the HC? */
1641 break;
1642 case COMP_BW_ERR:
Hans de Goede71d85722012-01-04 23:29:18 +01001643 case COMP_2ND_BW_ERR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001644 dev_warn(&udev->dev, "Not enough bandwidth "
1645 "for new device state.\n");
1646 ret = -ENOSPC;
1647 /* FIXME: can we go back to the old state? */
1648 break;
1649 case COMP_TRB_ERR:
1650 /* the HCD set up something wrong */
1651 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1652 "add flag = 1, "
1653 "and endpoint is not disabled.\n");
1654 ret = -EINVAL;
1655 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001656 case COMP_DEV_ERR:
1657 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1658 "configure command.\n");
1659 ret = -ENODEV;
1660 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001661 case COMP_SUCCESS:
1662 dev_dbg(&udev->dev, "Successful Endpoint Configure command\n");
1663 ret = 0;
1664 break;
1665 default:
1666 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001667 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001668 ret = -EINVAL;
1669 break;
1670 }
1671 return ret;
1672}
1673
1674static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001675 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001676{
1677 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001678 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001679
Sarah Sharp913a8a32009-09-04 10:53:13 -07001680 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001681 case COMP_EINVAL:
1682 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1683 "context command.\n");
1684 ret = -EINVAL;
1685 break;
1686 case COMP_EBADSLT:
1687 dev_warn(&udev->dev, "WARN: slot not enabled for"
1688 "evaluate context command.\n");
1689 case COMP_CTX_STATE:
1690 dev_warn(&udev->dev, "WARN: invalid context state for "
1691 "evaluate context command.\n");
1692 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1693 ret = -EINVAL;
1694 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001695 case COMP_DEV_ERR:
1696 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
1697 "context command.\n");
1698 ret = -ENODEV;
1699 break;
Alex He1bb73a82011-05-05 18:14:12 +08001700 case COMP_MEL_ERR:
1701 /* Max Exit Latency too large error */
1702 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1703 ret = -EINVAL;
1704 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001705 case COMP_SUCCESS:
1706 dev_dbg(&udev->dev, "Successful evaluate context command\n");
1707 ret = 0;
1708 break;
1709 default:
1710 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001711 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001712 ret = -EINVAL;
1713 break;
1714 }
1715 return ret;
1716}
1717
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001718static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
1719 struct xhci_container_ctx *in_ctx)
1720{
1721 struct xhci_input_control_ctx *ctrl_ctx;
1722 u32 valid_add_flags;
1723 u32 valid_drop_flags;
1724
1725 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
1726 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1727 * (bit 1). The default control endpoint is added during the Address
1728 * Device command and is never removed until the slot is disabled.
1729 */
1730 valid_add_flags = ctrl_ctx->add_flags >> 2;
1731 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1732
1733 /* Use hweight32 to count the number of ones in the add flags, or
1734 * number of endpoints added. Don't count endpoints that are changed
1735 * (both added and dropped).
1736 */
1737 return hweight32(valid_add_flags) -
1738 hweight32(valid_add_flags & valid_drop_flags);
1739}
1740
1741static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
1742 struct xhci_container_ctx *in_ctx)
1743{
1744 struct xhci_input_control_ctx *ctrl_ctx;
1745 u32 valid_add_flags;
1746 u32 valid_drop_flags;
1747
1748 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
1749 valid_add_flags = ctrl_ctx->add_flags >> 2;
1750 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1751
1752 return hweight32(valid_drop_flags) -
1753 hweight32(valid_add_flags & valid_drop_flags);
1754}
1755
1756/*
1757 * We need to reserve the new number of endpoints before the configure endpoint
1758 * command completes. We can't subtract the dropped endpoints from the number
1759 * of active endpoints until the command completes because we can oversubscribe
1760 * the host in this case:
1761 *
1762 * - the first configure endpoint command drops more endpoints than it adds
1763 * - a second configure endpoint command that adds more endpoints is queued
1764 * - the first configure endpoint command fails, so the config is unchanged
1765 * - the second command may succeed, even though there isn't enough resources
1766 *
1767 * Must be called with xhci->lock held.
1768 */
1769static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
1770 struct xhci_container_ctx *in_ctx)
1771{
1772 u32 added_eps;
1773
1774 added_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
1775 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
1776 xhci_dbg(xhci, "Not enough ep ctxs: "
1777 "%u active, need to add %u, limit is %u.\n",
1778 xhci->num_active_eps, added_eps,
1779 xhci->limit_active_eps);
1780 return -ENOMEM;
1781 }
1782 xhci->num_active_eps += added_eps;
1783 xhci_dbg(xhci, "Adding %u ep ctxs, %u now active.\n", added_eps,
1784 xhci->num_active_eps);
1785 return 0;
1786}
1787
1788/*
1789 * The configure endpoint was failed by the xHC for some other reason, so we
1790 * need to revert the resources that failed configuration would have used.
1791 *
1792 * Must be called with xhci->lock held.
1793 */
1794static void xhci_free_host_resources(struct xhci_hcd *xhci,
1795 struct xhci_container_ctx *in_ctx)
1796{
1797 u32 num_failed_eps;
1798
1799 num_failed_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
1800 xhci->num_active_eps -= num_failed_eps;
1801 xhci_dbg(xhci, "Removing %u failed ep ctxs, %u now active.\n",
1802 num_failed_eps,
1803 xhci->num_active_eps);
1804}
1805
1806/*
1807 * Now that the command has completed, clean up the active endpoint count by
1808 * subtracting out the endpoints that were dropped (but not changed).
1809 *
1810 * Must be called with xhci->lock held.
1811 */
1812static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
1813 struct xhci_container_ctx *in_ctx)
1814{
1815 u32 num_dropped_eps;
1816
1817 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, in_ctx);
1818 xhci->num_active_eps -= num_dropped_eps;
1819 if (num_dropped_eps)
1820 xhci_dbg(xhci, "Removing %u dropped ep ctxs, %u now active.\n",
1821 num_dropped_eps,
1822 xhci->num_active_eps);
1823}
1824
Sarah Sharpc29eea62011-09-02 11:05:52 -07001825unsigned int xhci_get_block_size(struct usb_device *udev)
1826{
1827 switch (udev->speed) {
1828 case USB_SPEED_LOW:
1829 case USB_SPEED_FULL:
1830 return FS_BLOCK;
1831 case USB_SPEED_HIGH:
1832 return HS_BLOCK;
1833 case USB_SPEED_SUPER:
1834 return SS_BLOCK;
1835 case USB_SPEED_UNKNOWN:
1836 case USB_SPEED_WIRELESS:
1837 default:
1838 /* Should never happen */
1839 return 1;
1840 }
1841}
1842
1843unsigned int xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
1844{
1845 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1846 return LS_OVERHEAD;
1847 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1848 return FS_OVERHEAD;
1849 return HS_OVERHEAD;
1850}
1851
1852/* If we are changing a LS/FS device under a HS hub,
1853 * make sure (if we are activating a new TT) that the HS bus has enough
1854 * bandwidth for this new TT.
1855 */
1856static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
1857 struct xhci_virt_device *virt_dev,
1858 int old_active_eps)
1859{
1860 struct xhci_interval_bw_table *bw_table;
1861 struct xhci_tt_bw_info *tt_info;
1862
1863 /* Find the bandwidth table for the root port this TT is attached to. */
1864 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
1865 tt_info = virt_dev->tt_info;
1866 /* If this TT already had active endpoints, the bandwidth for this TT
1867 * has already been added. Removing all periodic endpoints (and thus
1868 * making the TT enactive) will only decrease the bandwidth used.
1869 */
1870 if (old_active_eps)
1871 return 0;
1872 if (old_active_eps == 0 && tt_info->active_eps != 0) {
1873 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
1874 return -ENOMEM;
1875 return 0;
1876 }
1877 /* Not sure why we would have no new active endpoints...
1878 *
1879 * Maybe because of an Evaluate Context change for a hub update or a
1880 * control endpoint 0 max packet size change?
1881 * FIXME: skip the bandwidth calculation in that case.
1882 */
1883 return 0;
1884}
1885
Sarah Sharp2b698992011-09-13 16:41:13 -07001886static int xhci_check_ss_bw(struct xhci_hcd *xhci,
1887 struct xhci_virt_device *virt_dev)
1888{
1889 unsigned int bw_reserved;
1890
1891 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
1892 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
1893 return -ENOMEM;
1894
1895 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
1896 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
1897 return -ENOMEM;
1898
1899 return 0;
1900}
1901
Sarah Sharpc29eea62011-09-02 11:05:52 -07001902/*
1903 * This algorithm is a very conservative estimate of the worst-case scheduling
1904 * scenario for any one interval. The hardware dynamically schedules the
1905 * packets, so we can't tell which microframe could be the limiting factor in
1906 * the bandwidth scheduling. This only takes into account periodic endpoints.
1907 *
1908 * Obviously, we can't solve an NP complete problem to find the minimum worst
1909 * case scenario. Instead, we come up with an estimate that is no less than
1910 * the worst case bandwidth used for any one microframe, but may be an
1911 * over-estimate.
1912 *
1913 * We walk the requirements for each endpoint by interval, starting with the
1914 * smallest interval, and place packets in the schedule where there is only one
1915 * possible way to schedule packets for that interval. In order to simplify
1916 * this algorithm, we record the largest max packet size for each interval, and
1917 * assume all packets will be that size.
1918 *
1919 * For interval 0, we obviously must schedule all packets for each interval.
1920 * The bandwidth for interval 0 is just the amount of data to be transmitted
1921 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
1922 * the number of packets).
1923 *
1924 * For interval 1, we have two possible microframes to schedule those packets
1925 * in. For this algorithm, if we can schedule the same number of packets for
1926 * each possible scheduling opportunity (each microframe), we will do so. The
1927 * remaining number of packets will be saved to be transmitted in the gaps in
1928 * the next interval's scheduling sequence.
1929 *
1930 * As we move those remaining packets to be scheduled with interval 2 packets,
1931 * we have to double the number of remaining packets to transmit. This is
1932 * because the intervals are actually powers of 2, and we would be transmitting
1933 * the previous interval's packets twice in this interval. We also have to be
1934 * sure that when we look at the largest max packet size for this interval, we
1935 * also look at the largest max packet size for the remaining packets and take
1936 * the greater of the two.
1937 *
1938 * The algorithm continues to evenly distribute packets in each scheduling
1939 * opportunity, and push the remaining packets out, until we get to the last
1940 * interval. Then those packets and their associated overhead are just added
1941 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07001942 */
1943static int xhci_check_bw_table(struct xhci_hcd *xhci,
1944 struct xhci_virt_device *virt_dev,
1945 int old_active_eps)
1946{
Sarah Sharpc29eea62011-09-02 11:05:52 -07001947 unsigned int bw_reserved;
1948 unsigned int max_bandwidth;
1949 unsigned int bw_used;
1950 unsigned int block_size;
1951 struct xhci_interval_bw_table *bw_table;
1952 unsigned int packet_size = 0;
1953 unsigned int overhead = 0;
1954 unsigned int packets_transmitted = 0;
1955 unsigned int packets_remaining = 0;
1956 unsigned int i;
1957
Sarah Sharp2b698992011-09-13 16:41:13 -07001958 if (virt_dev->udev->speed == USB_SPEED_SUPER)
1959 return xhci_check_ss_bw(xhci, virt_dev);
1960
Sarah Sharpc29eea62011-09-02 11:05:52 -07001961 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
1962 max_bandwidth = HS_BW_LIMIT;
1963 /* Convert percent of bus BW reserved to blocks reserved */
1964 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
1965 } else {
1966 max_bandwidth = FS_BW_LIMIT;
1967 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
1968 }
1969
1970 bw_table = virt_dev->bw_table;
1971 /* We need to translate the max packet size and max ESIT payloads into
1972 * the units the hardware uses.
1973 */
1974 block_size = xhci_get_block_size(virt_dev->udev);
1975
1976 /* If we are manipulating a LS/FS device under a HS hub, double check
1977 * that the HS bus has enough bandwidth if we are activing a new TT.
1978 */
1979 if (virt_dev->tt_info) {
1980 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
1981 virt_dev->real_port);
1982 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
1983 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
1984 "newly activated TT.\n");
1985 return -ENOMEM;
1986 }
1987 xhci_dbg(xhci, "Recalculating BW for TT slot %u port %u\n",
1988 virt_dev->tt_info->slot_id,
1989 virt_dev->tt_info->ttport);
1990 } else {
1991 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
1992 virt_dev->real_port);
1993 }
1994
1995 /* Add in how much bandwidth will be used for interval zero, or the
1996 * rounded max ESIT payload + number of packets * largest overhead.
1997 */
1998 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
1999 bw_table->interval_bw[0].num_packets *
2000 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2001
2002 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2003 unsigned int bw_added;
2004 unsigned int largest_mps;
2005 unsigned int interval_overhead;
2006
2007 /*
2008 * How many packets could we transmit in this interval?
2009 * If packets didn't fit in the previous interval, we will need
2010 * to transmit that many packets twice within this interval.
2011 */
2012 packets_remaining = 2 * packets_remaining +
2013 bw_table->interval_bw[i].num_packets;
2014
2015 /* Find the largest max packet size of this or the previous
2016 * interval.
2017 */
2018 if (list_empty(&bw_table->interval_bw[i].endpoints))
2019 largest_mps = 0;
2020 else {
2021 struct xhci_virt_ep *virt_ep;
2022 struct list_head *ep_entry;
2023
2024 ep_entry = bw_table->interval_bw[i].endpoints.next;
2025 virt_ep = list_entry(ep_entry,
2026 struct xhci_virt_ep, bw_endpoint_list);
2027 /* Convert to blocks, rounding up */
2028 largest_mps = DIV_ROUND_UP(
2029 virt_ep->bw_info.max_packet_size,
2030 block_size);
2031 }
2032 if (largest_mps > packet_size)
2033 packet_size = largest_mps;
2034
2035 /* Use the larger overhead of this or the previous interval. */
2036 interval_overhead = xhci_get_largest_overhead(
2037 &bw_table->interval_bw[i]);
2038 if (interval_overhead > overhead)
2039 overhead = interval_overhead;
2040
2041 /* How many packets can we evenly distribute across
2042 * (1 << (i + 1)) possible scheduling opportunities?
2043 */
2044 packets_transmitted = packets_remaining >> (i + 1);
2045
2046 /* Add in the bandwidth used for those scheduled packets */
2047 bw_added = packets_transmitted * (overhead + packet_size);
2048
2049 /* How many packets do we have remaining to transmit? */
2050 packets_remaining = packets_remaining % (1 << (i + 1));
2051
2052 /* What largest max packet size should those packets have? */
2053 /* If we've transmitted all packets, don't carry over the
2054 * largest packet size.
2055 */
2056 if (packets_remaining == 0) {
2057 packet_size = 0;
2058 overhead = 0;
2059 } else if (packets_transmitted > 0) {
2060 /* Otherwise if we do have remaining packets, and we've
2061 * scheduled some packets in this interval, take the
2062 * largest max packet size from endpoints with this
2063 * interval.
2064 */
2065 packet_size = largest_mps;
2066 overhead = interval_overhead;
2067 }
2068 /* Otherwise carry over packet_size and overhead from the last
2069 * time we had a remainder.
2070 */
2071 bw_used += bw_added;
2072 if (bw_used > max_bandwidth) {
2073 xhci_warn(xhci, "Not enough bandwidth. "
2074 "Proposed: %u, Max: %u\n",
2075 bw_used, max_bandwidth);
2076 return -ENOMEM;
2077 }
2078 }
2079 /*
2080 * Ok, we know we have some packets left over after even-handedly
2081 * scheduling interval 15. We don't know which microframes they will
2082 * fit into, so we over-schedule and say they will be scheduled every
2083 * microframe.
2084 */
2085 if (packets_remaining > 0)
2086 bw_used += overhead + packet_size;
2087
2088 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2089 unsigned int port_index = virt_dev->real_port - 1;
2090
2091 /* OK, we're manipulating a HS device attached to a
2092 * root port bandwidth domain. Include the number of active TTs
2093 * in the bandwidth used.
2094 */
2095 bw_used += TT_HS_OVERHEAD *
2096 xhci->rh_bw[port_index].num_active_tts;
2097 }
2098
2099 xhci_dbg(xhci, "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2100 "Available: %u " "percent\n",
2101 bw_used, max_bandwidth, bw_reserved,
2102 (max_bandwidth - bw_used - bw_reserved) * 100 /
2103 max_bandwidth);
2104
2105 bw_used += bw_reserved;
2106 if (bw_used > max_bandwidth) {
2107 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2108 bw_used, max_bandwidth);
2109 return -ENOMEM;
2110 }
2111
2112 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002113 return 0;
2114}
2115
2116static bool xhci_is_async_ep(unsigned int ep_type)
2117{
2118 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2119 ep_type != ISOC_IN_EP &&
2120 ep_type != INT_IN_EP);
2121}
2122
Sarah Sharp2b698992011-09-13 16:41:13 -07002123static bool xhci_is_sync_in_ep(unsigned int ep_type)
2124{
2125 return (ep_type == ISOC_IN_EP || ep_type != INT_IN_EP);
2126}
2127
2128static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2129{
2130 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2131
2132 if (ep_bw->ep_interval == 0)
2133 return SS_OVERHEAD_BURST +
2134 (ep_bw->mult * ep_bw->num_packets *
2135 (SS_OVERHEAD + mps));
2136 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2137 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2138 1 << ep_bw->ep_interval);
2139
2140}
2141
Sarah Sharp2e279802011-09-02 11:05:50 -07002142void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2143 struct xhci_bw_info *ep_bw,
2144 struct xhci_interval_bw_table *bw_table,
2145 struct usb_device *udev,
2146 struct xhci_virt_ep *virt_ep,
2147 struct xhci_tt_bw_info *tt_info)
2148{
2149 struct xhci_interval_bw *interval_bw;
2150 int normalized_interval;
2151
Sarah Sharp2b698992011-09-13 16:41:13 -07002152 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002153 return;
2154
Sarah Sharp2b698992011-09-13 16:41:13 -07002155 if (udev->speed == USB_SPEED_SUPER) {
2156 if (xhci_is_sync_in_ep(ep_bw->type))
2157 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2158 xhci_get_ss_bw_consumed(ep_bw);
2159 else
2160 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2161 xhci_get_ss_bw_consumed(ep_bw);
2162 return;
2163 }
2164
2165 /* SuperSpeed endpoints never get added to intervals in the table, so
2166 * this check is only valid for HS/FS/LS devices.
2167 */
2168 if (list_empty(&virt_ep->bw_endpoint_list))
2169 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002170 /* For LS/FS devices, we need to translate the interval expressed in
2171 * microframes to frames.
2172 */
2173 if (udev->speed == USB_SPEED_HIGH)
2174 normalized_interval = ep_bw->ep_interval;
2175 else
2176 normalized_interval = ep_bw->ep_interval - 3;
2177
2178 if (normalized_interval == 0)
2179 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2180 interval_bw = &bw_table->interval_bw[normalized_interval];
2181 interval_bw->num_packets -= ep_bw->num_packets;
2182 switch (udev->speed) {
2183 case USB_SPEED_LOW:
2184 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2185 break;
2186 case USB_SPEED_FULL:
2187 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2188 break;
2189 case USB_SPEED_HIGH:
2190 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2191 break;
2192 case USB_SPEED_SUPER:
2193 case USB_SPEED_UNKNOWN:
2194 case USB_SPEED_WIRELESS:
2195 /* Should never happen because only LS/FS/HS endpoints will get
2196 * added to the endpoint list.
2197 */
2198 return;
2199 }
2200 if (tt_info)
2201 tt_info->active_eps -= 1;
2202 list_del_init(&virt_ep->bw_endpoint_list);
2203}
2204
2205static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2206 struct xhci_bw_info *ep_bw,
2207 struct xhci_interval_bw_table *bw_table,
2208 struct usb_device *udev,
2209 struct xhci_virt_ep *virt_ep,
2210 struct xhci_tt_bw_info *tt_info)
2211{
2212 struct xhci_interval_bw *interval_bw;
2213 struct xhci_virt_ep *smaller_ep;
2214 int normalized_interval;
2215
2216 if (xhci_is_async_ep(ep_bw->type))
2217 return;
2218
Sarah Sharp2b698992011-09-13 16:41:13 -07002219 if (udev->speed == USB_SPEED_SUPER) {
2220 if (xhci_is_sync_in_ep(ep_bw->type))
2221 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2222 xhci_get_ss_bw_consumed(ep_bw);
2223 else
2224 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2225 xhci_get_ss_bw_consumed(ep_bw);
2226 return;
2227 }
2228
Sarah Sharp2e279802011-09-02 11:05:50 -07002229 /* For LS/FS devices, we need to translate the interval expressed in
2230 * microframes to frames.
2231 */
2232 if (udev->speed == USB_SPEED_HIGH)
2233 normalized_interval = ep_bw->ep_interval;
2234 else
2235 normalized_interval = ep_bw->ep_interval - 3;
2236
2237 if (normalized_interval == 0)
2238 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2239 interval_bw = &bw_table->interval_bw[normalized_interval];
2240 interval_bw->num_packets += ep_bw->num_packets;
2241 switch (udev->speed) {
2242 case USB_SPEED_LOW:
2243 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2244 break;
2245 case USB_SPEED_FULL:
2246 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2247 break;
2248 case USB_SPEED_HIGH:
2249 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2250 break;
2251 case USB_SPEED_SUPER:
2252 case USB_SPEED_UNKNOWN:
2253 case USB_SPEED_WIRELESS:
2254 /* Should never happen because only LS/FS/HS endpoints will get
2255 * added to the endpoint list.
2256 */
2257 return;
2258 }
2259
2260 if (tt_info)
2261 tt_info->active_eps += 1;
2262 /* Insert the endpoint into the list, largest max packet size first. */
2263 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2264 bw_endpoint_list) {
2265 if (ep_bw->max_packet_size >=
2266 smaller_ep->bw_info.max_packet_size) {
2267 /* Add the new ep before the smaller endpoint */
2268 list_add_tail(&virt_ep->bw_endpoint_list,
2269 &smaller_ep->bw_endpoint_list);
2270 return;
2271 }
2272 }
2273 /* Add the new endpoint at the end of the list. */
2274 list_add_tail(&virt_ep->bw_endpoint_list,
2275 &interval_bw->endpoints);
2276}
2277
2278void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2279 struct xhci_virt_device *virt_dev,
2280 int old_active_eps)
2281{
2282 struct xhci_root_port_bw_info *rh_bw_info;
2283 if (!virt_dev->tt_info)
2284 return;
2285
2286 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2287 if (old_active_eps == 0 &&
2288 virt_dev->tt_info->active_eps != 0) {
2289 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002290 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002291 } else if (old_active_eps != 0 &&
2292 virt_dev->tt_info->active_eps == 0) {
2293 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002294 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002295 }
2296}
2297
2298static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2299 struct xhci_virt_device *virt_dev,
2300 struct xhci_container_ctx *in_ctx)
2301{
2302 struct xhci_bw_info ep_bw_info[31];
2303 int i;
2304 struct xhci_input_control_ctx *ctrl_ctx;
2305 int old_active_eps = 0;
2306
Sarah Sharp2e279802011-09-02 11:05:50 -07002307 if (virt_dev->tt_info)
2308 old_active_eps = virt_dev->tt_info->active_eps;
2309
2310 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2311
2312 for (i = 0; i < 31; i++) {
2313 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2314 continue;
2315
2316 /* Make a copy of the BW info in case we need to revert this */
2317 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2318 sizeof(ep_bw_info[i]));
2319 /* Drop the endpoint from the interval table if the endpoint is
2320 * being dropped or changed.
2321 */
2322 if (EP_IS_DROPPED(ctrl_ctx, i))
2323 xhci_drop_ep_from_interval_table(xhci,
2324 &virt_dev->eps[i].bw_info,
2325 virt_dev->bw_table,
2326 virt_dev->udev,
2327 &virt_dev->eps[i],
2328 virt_dev->tt_info);
2329 }
2330 /* Overwrite the information stored in the endpoints' bw_info */
2331 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2332 for (i = 0; i < 31; i++) {
2333 /* Add any changed or added endpoints to the interval table */
2334 if (EP_IS_ADDED(ctrl_ctx, i))
2335 xhci_add_ep_to_interval_table(xhci,
2336 &virt_dev->eps[i].bw_info,
2337 virt_dev->bw_table,
2338 virt_dev->udev,
2339 &virt_dev->eps[i],
2340 virt_dev->tt_info);
2341 }
2342
2343 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2344 /* Ok, this fits in the bandwidth we have.
2345 * Update the number of active TTs.
2346 */
2347 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2348 return 0;
2349 }
2350
2351 /* We don't have enough bandwidth for this, revert the stored info. */
2352 for (i = 0; i < 31; i++) {
2353 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2354 continue;
2355
2356 /* Drop the new copies of any added or changed endpoints from
2357 * the interval table.
2358 */
2359 if (EP_IS_ADDED(ctrl_ctx, i)) {
2360 xhci_drop_ep_from_interval_table(xhci,
2361 &virt_dev->eps[i].bw_info,
2362 virt_dev->bw_table,
2363 virt_dev->udev,
2364 &virt_dev->eps[i],
2365 virt_dev->tt_info);
2366 }
2367 /* Revert the endpoint back to its old information */
2368 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2369 sizeof(ep_bw_info[i]));
2370 /* Add any changed or dropped endpoints back into the table */
2371 if (EP_IS_DROPPED(ctrl_ctx, i))
2372 xhci_add_ep_to_interval_table(xhci,
2373 &virt_dev->eps[i].bw_info,
2374 virt_dev->bw_table,
2375 virt_dev->udev,
2376 &virt_dev->eps[i],
2377 virt_dev->tt_info);
2378 }
2379 return -ENOMEM;
2380}
2381
2382
Sarah Sharpf2217e82009-08-07 14:04:43 -07002383/* Issue a configure endpoint command or evaluate context command
2384 * and wait for it to finish.
2385 */
2386static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002387 struct usb_device *udev,
2388 struct xhci_command *command,
2389 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002390{
2391 int ret;
2392 int timeleft;
2393 unsigned long flags;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002394 struct xhci_container_ctx *in_ctx;
2395 struct completion *cmd_completion;
Matt Evans28ccd292011-03-29 13:40:46 +11002396 u32 *cmd_status;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002397 struct xhci_virt_device *virt_dev;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002398
2399 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002400 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002401
Sarah Sharp750645f2011-09-02 11:05:43 -07002402 if (command)
2403 in_ctx = command->in_ctx;
2404 else
2405 in_ctx = virt_dev->in_ctx;
2406
2407 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
2408 xhci_reserve_host_resources(xhci, in_ctx)) {
2409 spin_unlock_irqrestore(&xhci->lock, flags);
2410 xhci_warn(xhci, "Not enough host resources, "
2411 "active endpoint contexts = %u\n",
2412 xhci->num_active_eps);
2413 return -ENOMEM;
2414 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002415 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2416 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2417 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2418 xhci_free_host_resources(xhci, in_ctx);
2419 spin_unlock_irqrestore(&xhci->lock, flags);
2420 xhci_warn(xhci, "Not enough bandwidth\n");
2421 return -ENOMEM;
2422 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002423
2424 if (command) {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002425 cmd_completion = command->completion;
2426 cmd_status = &command->status;
2427 command->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002428
2429 /* Enqueue pointer can be left pointing to the link TRB,
2430 * we must handle that
2431 */
Matt Evansf5960b62011-06-01 10:22:55 +10002432 if (TRB_TYPE_LINK_LE32(command->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002433 command->command_trb =
2434 xhci->cmd_ring->enq_seg->next->trbs;
2435
Sarah Sharp913a8a32009-09-04 10:53:13 -07002436 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2437 } else {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002438 cmd_completion = &virt_dev->cmd_completion;
2439 cmd_status = &virt_dev->cmd_status;
2440 }
Andiry Xu1d680642010-03-12 17:10:04 +08002441 init_completion(cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002442
Sarah Sharpf2217e82009-08-07 14:04:43 -07002443 if (!ctx_change)
Sarah Sharp913a8a32009-09-04 10:53:13 -07002444 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2445 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002446 else
Sarah Sharp913a8a32009-09-04 10:53:13 -07002447 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
Sarah Sharpf2217e82009-08-07 14:04:43 -07002448 udev->slot_id);
2449 if (ret < 0) {
Sarah Sharpc01591b2009-12-09 15:58:58 -08002450 if (command)
2451 list_del(&command->cmd_list);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002452 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2453 xhci_free_host_resources(xhci, in_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002454 spin_unlock_irqrestore(&xhci->lock, flags);
2455 xhci_dbg(xhci, "FIXME allocate a new ring segment\n");
2456 return -ENOMEM;
2457 }
2458 xhci_ring_cmd_db(xhci);
2459 spin_unlock_irqrestore(&xhci->lock, flags);
2460
2461 /* Wait for the configure endpoint command to complete */
2462 timeleft = wait_for_completion_interruptible_timeout(
Sarah Sharp913a8a32009-09-04 10:53:13 -07002463 cmd_completion,
Sarah Sharpf2217e82009-08-07 14:04:43 -07002464 USB_CTRL_SET_TIMEOUT);
2465 if (timeleft <= 0) {
2466 xhci_warn(xhci, "%s while waiting for %s command\n",
2467 timeleft == 0 ? "Timeout" : "Signal",
2468 ctx_change == 0 ?
2469 "configure endpoint" :
2470 "evaluate context");
2471 /* FIXME cancel the configure endpoint command */
2472 return -ETIME;
2473 }
2474
2475 if (!ctx_change)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002476 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2477 else
2478 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2479
2480 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2481 spin_lock_irqsave(&xhci->lock, flags);
2482 /* If the command failed, remove the reserved resources.
2483 * Otherwise, clean up the estimate to include dropped eps.
2484 */
2485 if (ret)
2486 xhci_free_host_resources(xhci, in_ctx);
2487 else
2488 xhci_finish_resource_reservation(xhci, in_ctx);
2489 spin_unlock_irqrestore(&xhci->lock, flags);
2490 }
2491 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002492}
2493
Sarah Sharpf88ba782009-05-14 11:44:22 -07002494/* Called after one or more calls to xhci_add_endpoint() or
2495 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2496 * to call xhci_reset_bandwidth().
2497 *
2498 * Since we are in the middle of changing either configuration or
2499 * installing a new alt setting, the USB core won't allow URBs to be
2500 * enqueued for any endpoint on the old config or interface. Nothing
2501 * else should be touching the xhci->devs[slot_id] structure, so we
2502 * don't need to take the xhci->lock for manipulating that.
2503 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002504int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2505{
2506 int i;
2507 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002508 struct xhci_hcd *xhci;
2509 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002510 struct xhci_input_control_ctx *ctrl_ctx;
2511 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002512
Andiry Xu64927732010-10-14 07:22:45 -07002513 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002514 if (ret <= 0)
2515 return ret;
2516 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002517 if (xhci->xhc_state & XHCI_STATE_DYING)
2518 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002519
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002520 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002521 virt_dev = xhci->devs[udev->slot_id];
2522
2523 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
John Yound115b042009-07-27 12:05:15 -07002524 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002525 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2526 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2527 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002528
2529 /* Don't issue the command if there's no endpoints to update. */
2530 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2531 ctrl_ctx->drop_flags == 0)
2532 return 0;
2533
Sarah Sharpf94e01862009-04-27 19:58:38 -07002534 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002535 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2536 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002537 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002538
Sarah Sharp913a8a32009-09-04 10:53:13 -07002539 ret = xhci_configure_endpoint(xhci, udev, NULL,
2540 false, false);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002541 if (ret) {
2542 /* Callee should call reset_bandwidth() */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002543 return ret;
2544 }
2545
2546 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002547 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002548 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002549
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002550 /* Free any rings that were dropped, but not changed. */
2551 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002552 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2553 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002554 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2555 }
John Yound115b042009-07-27 12:05:15 -07002556 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002557 /*
2558 * Install any rings for completely new endpoints or changed endpoints,
2559 * and free or cache any old rings from changed endpoints.
2560 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002561 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002562 if (!virt_dev->eps[i].new_ring)
2563 continue;
2564 /* Only cache or free the old ring if it exists.
2565 * It may not if this is the first add of an endpoint.
2566 */
2567 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002568 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002569 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002570 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2571 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002572 }
2573
Sarah Sharpf94e01862009-04-27 19:58:38 -07002574 return ret;
2575}
2576
2577void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2578{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002579 struct xhci_hcd *xhci;
2580 struct xhci_virt_device *virt_dev;
2581 int i, ret;
2582
Andiry Xu64927732010-10-14 07:22:45 -07002583 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002584 if (ret <= 0)
2585 return;
2586 xhci = hcd_to_xhci(hcd);
2587
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002588 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002589 virt_dev = xhci->devs[udev->slot_id];
2590 /* Free any rings allocated for added endpoints */
2591 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002592 if (virt_dev->eps[i].new_ring) {
2593 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2594 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002595 }
2596 }
John Yound115b042009-07-27 12:05:15 -07002597 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002598}
2599
Sarah Sharp5270b952009-09-04 10:53:11 -07002600static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002601 struct xhci_container_ctx *in_ctx,
2602 struct xhci_container_ctx *out_ctx,
2603 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002604{
2605 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002606 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002607 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2608 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002609 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002610 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002611
Sarah Sharp913a8a32009-09-04 10:53:13 -07002612 xhci_dbg(xhci, "Input Context:\n");
2613 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002614}
2615
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002616static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002617 unsigned int slot_id, unsigned int ep_index,
2618 struct xhci_dequeue_state *deq_state)
2619{
2620 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002621 struct xhci_ep_ctx *ep_ctx;
2622 u32 added_ctxs;
2623 dma_addr_t addr;
2624
Sarah Sharp913a8a32009-09-04 10:53:13 -07002625 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2626 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002627 in_ctx = xhci->devs[slot_id]->in_ctx;
2628 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2629 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2630 deq_state->new_deq_ptr);
2631 if (addr == 0) {
2632 xhci_warn(xhci, "WARN Cannot submit config ep after "
2633 "reset ep command\n");
2634 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2635 deq_state->new_deq_seg,
2636 deq_state->new_deq_ptr);
2637 return;
2638 }
Matt Evans28ccd292011-03-29 13:40:46 +11002639 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002640
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002641 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002642 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
2643 xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002644}
2645
Sarah Sharp82d10092009-08-07 14:04:52 -07002646void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002647 struct usb_device *udev, unsigned int ep_index)
Sarah Sharp82d10092009-08-07 14:04:52 -07002648{
2649 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002650 struct xhci_virt_ep *ep;
Sarah Sharp82d10092009-08-07 14:04:52 -07002651
2652 xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002653 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002654 /* We need to move the HW's dequeue pointer past this TD,
2655 * or it will attempt to resend it on the next doorbell ring.
2656 */
2657 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002658 ep_index, ep->stopped_stream, ep->stopped_td,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002659 &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002660
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002661 /* HW with the reset endpoint quirk will use the saved dequeue state to
2662 * issue a configure endpoint command later.
2663 */
2664 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
2665 xhci_dbg(xhci, "Queueing new dequeue state\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002666 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002667 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002668 } else {
2669 /* Better hope no one uses the input context between now and the
2670 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002671 * XXX: No idea how this hardware will react when stream rings
2672 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002673 */
2674 xhci_dbg(xhci, "Setting up input context for "
2675 "configure endpoint command\n");
2676 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2677 ep_index, &deq_state);
2678 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002679}
2680
Sarah Sharpa1587d92009-07-27 12:03:15 -07002681/* Deal with stalled endpoints. The core should have sent the control message
2682 * to clear the halt condition. However, we need to make the xHCI hardware
2683 * reset its sequence number, since a device will expect a sequence number of
2684 * zero after the halt condition is cleared.
2685 * Context: in_interrupt
2686 */
2687void xhci_endpoint_reset(struct usb_hcd *hcd,
2688 struct usb_host_endpoint *ep)
2689{
2690 struct xhci_hcd *xhci;
2691 struct usb_device *udev;
2692 unsigned int ep_index;
2693 unsigned long flags;
2694 int ret;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002695 struct xhci_virt_ep *virt_ep;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002696
2697 xhci = hcd_to_xhci(hcd);
2698 udev = (struct usb_device *) ep->hcpriv;
2699 /* Called with a root hub endpoint (or an endpoint that wasn't added
2700 * with xhci_add_endpoint()
2701 */
2702 if (!ep->hcpriv)
2703 return;
2704 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002705 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
2706 if (!virt_ep->stopped_td) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002707 xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n",
2708 ep->desc.bEndpointAddress);
2709 return;
2710 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002711 if (usb_endpoint_xfer_control(&ep->desc)) {
2712 xhci_dbg(xhci, "Control endpoint stall already handled.\n");
2713 return;
2714 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07002715
2716 xhci_dbg(xhci, "Queueing reset endpoint command\n");
2717 spin_lock_irqsave(&xhci->lock, flags);
2718 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002719 /*
2720 * Can't change the ring dequeue pointer until it's transitioned to the
2721 * stopped state, which is only upon a successful reset endpoint
2722 * command. Better hope that last command worked!
2723 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002724 if (!ret) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002725 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
2726 kfree(virt_ep->stopped_td);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002727 xhci_ring_cmd_db(xhci);
2728 }
Sarah Sharp1624ae12010-05-06 13:40:08 -07002729 virt_ep->stopped_td = NULL;
2730 virt_ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07002731 virt_ep->stopped_stream = 0;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002732 spin_unlock_irqrestore(&xhci->lock, flags);
2733
2734 if (ret)
2735 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
2736}
2737
Sarah Sharp8df75f42010-04-02 15:34:16 -07002738static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2739 struct usb_device *udev, struct usb_host_endpoint *ep,
2740 unsigned int slot_id)
2741{
2742 int ret;
2743 unsigned int ep_index;
2744 unsigned int ep_state;
2745
2746 if (!ep)
2747 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002748 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002749 if (ret <= 0)
2750 return -EINVAL;
Alan Stern842f1692010-04-30 12:44:46 -04002751 if (ep->ss_ep_comp.bmAttributes == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002752 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2753 " descriptor for ep 0x%x does not support streams\n",
2754 ep->desc.bEndpointAddress);
2755 return -EINVAL;
2756 }
2757
2758 ep_index = xhci_get_endpoint_index(&ep->desc);
2759 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2760 if (ep_state & EP_HAS_STREAMS ||
2761 ep_state & EP_GETTING_STREAMS) {
2762 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2763 "already has streams set up.\n",
2764 ep->desc.bEndpointAddress);
2765 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2766 "dynamic stream context array reallocation.\n");
2767 return -EINVAL;
2768 }
2769 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2770 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2771 "endpoint 0x%x; URBs are pending.\n",
2772 ep->desc.bEndpointAddress);
2773 return -EINVAL;
2774 }
2775 return 0;
2776}
2777
2778static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2779 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2780{
2781 unsigned int max_streams;
2782
2783 /* The stream context array size must be a power of two */
2784 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2785 /*
2786 * Find out how many primary stream array entries the host controller
2787 * supports. Later we may use secondary stream arrays (similar to 2nd
2788 * level page entries), but that's an optional feature for xHCI host
2789 * controllers. xHCs must support at least 4 stream IDs.
2790 */
2791 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2792 if (*num_stream_ctxs > max_streams) {
2793 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2794 max_streams);
2795 *num_stream_ctxs = max_streams;
2796 *num_streams = max_streams;
2797 }
2798}
2799
2800/* Returns an error code if one of the endpoint already has streams.
2801 * This does not change any data structures, it only checks and gathers
2802 * information.
2803 */
2804static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2805 struct usb_device *udev,
2806 struct usb_host_endpoint **eps, unsigned int num_eps,
2807 unsigned int *num_streams, u32 *changed_ep_bitmask)
2808{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002809 unsigned int max_streams;
2810 unsigned int endpoint_flag;
2811 int i;
2812 int ret;
2813
2814 for (i = 0; i < num_eps; i++) {
2815 ret = xhci_check_streams_endpoint(xhci, udev,
2816 eps[i], udev->slot_id);
2817 if (ret < 0)
2818 return ret;
2819
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002820 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002821 if (max_streams < (*num_streams - 1)) {
2822 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2823 eps[i]->desc.bEndpointAddress,
2824 max_streams);
2825 *num_streams = max_streams+1;
2826 }
2827
2828 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
2829 if (*changed_ep_bitmask & endpoint_flag)
2830 return -EINVAL;
2831 *changed_ep_bitmask |= endpoint_flag;
2832 }
2833 return 0;
2834}
2835
2836static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
2837 struct usb_device *udev,
2838 struct usb_host_endpoint **eps, unsigned int num_eps)
2839{
2840 u32 changed_ep_bitmask = 0;
2841 unsigned int slot_id;
2842 unsigned int ep_index;
2843 unsigned int ep_state;
2844 int i;
2845
2846 slot_id = udev->slot_id;
2847 if (!xhci->devs[slot_id])
2848 return 0;
2849
2850 for (i = 0; i < num_eps; i++) {
2851 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2852 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2853 /* Are streams already being freed for the endpoint? */
2854 if (ep_state & EP_GETTING_NO_STREAMS) {
2855 xhci_warn(xhci, "WARN Can't disable streams for "
2856 "endpoint 0x%x\n, "
2857 "streams are being disabled already.",
2858 eps[i]->desc.bEndpointAddress);
2859 return 0;
2860 }
2861 /* Are there actually any streams to free? */
2862 if (!(ep_state & EP_HAS_STREAMS) &&
2863 !(ep_state & EP_GETTING_STREAMS)) {
2864 xhci_warn(xhci, "WARN Can't disable streams for "
2865 "endpoint 0x%x\n, "
2866 "streams are already disabled!",
2867 eps[i]->desc.bEndpointAddress);
2868 xhci_warn(xhci, "WARN xhci_free_streams() called "
2869 "with non-streams endpoint\n");
2870 return 0;
2871 }
2872 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
2873 }
2874 return changed_ep_bitmask;
2875}
2876
2877/*
2878 * The USB device drivers use this function (though the HCD interface in USB
2879 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
2880 * coordinate mass storage command queueing across multiple endpoints (basically
2881 * a stream ID == a task ID).
2882 *
2883 * Setting up streams involves allocating the same size stream context array
2884 * for each endpoint and issuing a configure endpoint command for all endpoints.
2885 *
2886 * Don't allow the call to succeed if one endpoint only supports one stream
2887 * (which means it doesn't support streams at all).
2888 *
2889 * Drivers may get less stream IDs than they asked for, if the host controller
2890 * hardware or endpoints claim they can't support the number of requested
2891 * stream IDs.
2892 */
2893int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
2894 struct usb_host_endpoint **eps, unsigned int num_eps,
2895 unsigned int num_streams, gfp_t mem_flags)
2896{
2897 int i, ret;
2898 struct xhci_hcd *xhci;
2899 struct xhci_virt_device *vdev;
2900 struct xhci_command *config_cmd;
2901 unsigned int ep_index;
2902 unsigned int num_stream_ctxs;
2903 unsigned long flags;
2904 u32 changed_ep_bitmask = 0;
2905
2906 if (!eps)
2907 return -EINVAL;
2908
2909 /* Add one to the number of streams requested to account for
2910 * stream 0 that is reserved for xHCI usage.
2911 */
2912 num_streams += 1;
2913 xhci = hcd_to_xhci(hcd);
2914 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
2915 num_streams);
2916
2917 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
2918 if (!config_cmd) {
2919 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
2920 return -ENOMEM;
2921 }
2922
2923 /* Check to make sure all endpoints are not already configured for
2924 * streams. While we're at it, find the maximum number of streams that
2925 * all the endpoints will support and check for duplicate endpoints.
2926 */
2927 spin_lock_irqsave(&xhci->lock, flags);
2928 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
2929 num_eps, &num_streams, &changed_ep_bitmask);
2930 if (ret < 0) {
2931 xhci_free_command(xhci, config_cmd);
2932 spin_unlock_irqrestore(&xhci->lock, flags);
2933 return ret;
2934 }
2935 if (num_streams <= 1) {
2936 xhci_warn(xhci, "WARN: endpoints can't handle "
2937 "more than one stream.\n");
2938 xhci_free_command(xhci, config_cmd);
2939 spin_unlock_irqrestore(&xhci->lock, flags);
2940 return -EINVAL;
2941 }
2942 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002943 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07002944 * xhci_urb_enqueue() will reject all URBs.
2945 */
2946 for (i = 0; i < num_eps; i++) {
2947 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2948 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
2949 }
2950 spin_unlock_irqrestore(&xhci->lock, flags);
2951
2952 /* Setup internal data structures and allocate HW data structures for
2953 * streams (but don't install the HW structures in the input context
2954 * until we're sure all memory allocation succeeded).
2955 */
2956 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
2957 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
2958 num_stream_ctxs, num_streams);
2959
2960 for (i = 0; i < num_eps; i++) {
2961 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2962 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
2963 num_stream_ctxs,
2964 num_streams, mem_flags);
2965 if (!vdev->eps[ep_index].stream_info)
2966 goto cleanup;
2967 /* Set maxPstreams in endpoint context and update deq ptr to
2968 * point to stream context array. FIXME
2969 */
2970 }
2971
2972 /* Set up the input context for a configure endpoint command. */
2973 for (i = 0; i < num_eps; i++) {
2974 struct xhci_ep_ctx *ep_ctx;
2975
2976 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2977 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
2978
2979 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
2980 vdev->out_ctx, ep_index);
2981 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
2982 vdev->eps[ep_index].stream_info);
2983 }
2984 /* Tell the HW to drop its old copy of the endpoint context info
2985 * and add the updated copy from the input context.
2986 */
2987 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
2988 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
2989
2990 /* Issue and wait for the configure endpoint command */
2991 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
2992 false, false);
2993
2994 /* xHC rejected the configure endpoint command for some reason, so we
2995 * leave the old ring intact and free our internal streams data
2996 * structure.
2997 */
2998 if (ret < 0)
2999 goto cleanup;
3000
3001 spin_lock_irqsave(&xhci->lock, flags);
3002 for (i = 0; i < num_eps; i++) {
3003 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3004 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3005 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3006 udev->slot_id, ep_index);
3007 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3008 }
3009 xhci_free_command(xhci, config_cmd);
3010 spin_unlock_irqrestore(&xhci->lock, flags);
3011
3012 /* Subtract 1 for stream 0, which drivers can't use */
3013 return num_streams - 1;
3014
3015cleanup:
3016 /* If it didn't work, free the streams! */
3017 for (i = 0; i < num_eps; i++) {
3018 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3019 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003020 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003021 /* FIXME Unset maxPstreams in endpoint context and
3022 * update deq ptr to point to normal string ring.
3023 */
3024 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3025 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3026 xhci_endpoint_zero(xhci, vdev, eps[i]);
3027 }
3028 xhci_free_command(xhci, config_cmd);
3029 return -ENOMEM;
3030}
3031
3032/* Transition the endpoint from using streams to being a "normal" endpoint
3033 * without streams.
3034 *
3035 * Modify the endpoint context state, submit a configure endpoint command,
3036 * and free all endpoint rings for streams if that completes successfully.
3037 */
3038int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3039 struct usb_host_endpoint **eps, unsigned int num_eps,
3040 gfp_t mem_flags)
3041{
3042 int i, ret;
3043 struct xhci_hcd *xhci;
3044 struct xhci_virt_device *vdev;
3045 struct xhci_command *command;
3046 unsigned int ep_index;
3047 unsigned long flags;
3048 u32 changed_ep_bitmask;
3049
3050 xhci = hcd_to_xhci(hcd);
3051 vdev = xhci->devs[udev->slot_id];
3052
3053 /* Set up a configure endpoint command to remove the streams rings */
3054 spin_lock_irqsave(&xhci->lock, flags);
3055 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3056 udev, eps, num_eps);
3057 if (changed_ep_bitmask == 0) {
3058 spin_unlock_irqrestore(&xhci->lock, flags);
3059 return -EINVAL;
3060 }
3061
3062 /* Use the xhci_command structure from the first endpoint. We may have
3063 * allocated too many, but the driver may call xhci_free_streams() for
3064 * each endpoint it grouped into one call to xhci_alloc_streams().
3065 */
3066 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3067 command = vdev->eps[ep_index].stream_info->free_streams_command;
3068 for (i = 0; i < num_eps; i++) {
3069 struct xhci_ep_ctx *ep_ctx;
3070
3071 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3072 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3073 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3074 EP_GETTING_NO_STREAMS;
3075
3076 xhci_endpoint_copy(xhci, command->in_ctx,
3077 vdev->out_ctx, ep_index);
3078 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3079 &vdev->eps[ep_index]);
3080 }
3081 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
3082 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
3083 spin_unlock_irqrestore(&xhci->lock, flags);
3084
3085 /* Issue and wait for the configure endpoint command,
3086 * which must succeed.
3087 */
3088 ret = xhci_configure_endpoint(xhci, udev, command,
3089 false, true);
3090
3091 /* xHC rejected the configure endpoint command for some reason, so we
3092 * leave the streams rings intact.
3093 */
3094 if (ret < 0)
3095 return ret;
3096
3097 spin_lock_irqsave(&xhci->lock, flags);
3098 for (i = 0; i < num_eps; i++) {
3099 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3100 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003101 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003102 /* FIXME Unset maxPstreams in endpoint context and
3103 * update deq ptr to point to normal string ring.
3104 */
3105 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3106 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3107 }
3108 spin_unlock_irqrestore(&xhci->lock, flags);
3109
3110 return 0;
3111}
3112
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003113/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003114 * Deletes endpoint resources for endpoints that were active before a Reset
3115 * Device command, or a Disable Slot command. The Reset Device command leaves
3116 * the control endpoint intact, whereas the Disable Slot command deletes it.
3117 *
3118 * Must be called with xhci->lock held.
3119 */
3120void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3121 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3122{
3123 int i;
3124 unsigned int num_dropped_eps = 0;
3125 unsigned int drop_flags = 0;
3126
3127 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3128 if (virt_dev->eps[i].ring) {
3129 drop_flags |= 1 << i;
3130 num_dropped_eps++;
3131 }
3132 }
3133 xhci->num_active_eps -= num_dropped_eps;
3134 if (num_dropped_eps)
3135 xhci_dbg(xhci, "Dropped %u ep ctxs, flags = 0x%x, "
3136 "%u now active.\n",
3137 num_dropped_eps, drop_flags,
3138 xhci->num_active_eps);
3139}
3140
3141/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003142 * This submits a Reset Device Command, which will set the device state to 0,
3143 * set the device address to 0, and disable all the endpoints except the default
3144 * control endpoint. The USB core should come back and call
3145 * xhci_address_device(), and then re-set up the configuration. If this is
3146 * called because of a usb_reset_and_verify_device(), then the old alternate
3147 * settings will be re-installed through the normal bandwidth allocation
3148 * functions.
3149 *
3150 * Wait for the Reset Device command to finish. Remove all structures
3151 * associated with the endpoints that were disabled. Clear the input device
3152 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003153 *
3154 * If the virt_dev to be reset does not exist or does not match the udev,
3155 * it means the device is lost, possibly due to the xHC restore error and
3156 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3157 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003158 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003159int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003160{
3161 int ret, i;
3162 unsigned long flags;
3163 struct xhci_hcd *xhci;
3164 unsigned int slot_id;
3165 struct xhci_virt_device *virt_dev;
3166 struct xhci_command *reset_device_cmd;
3167 int timeleft;
3168 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003169 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003170 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003171
Andiry Xuf0615c42010-10-14 07:22:48 -07003172 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003173 if (ret <= 0)
3174 return ret;
3175 xhci = hcd_to_xhci(hcd);
3176 slot_id = udev->slot_id;
3177 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003178 if (!virt_dev) {
3179 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3180 "not exist. Re-allocate the device\n", slot_id);
3181 ret = xhci_alloc_dev(hcd, udev);
3182 if (ret == 1)
3183 return 0;
3184 else
3185 return -EINVAL;
3186 }
3187
3188 if (virt_dev->udev != udev) {
3189 /* If the virt_dev and the udev does not match, this virt_dev
3190 * may belong to another udev.
3191 * Re-allocate the device.
3192 */
3193 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3194 "not match the udev. Re-allocate the device\n",
3195 slot_id);
3196 ret = xhci_alloc_dev(hcd, udev);
3197 if (ret == 1)
3198 return 0;
3199 else
3200 return -EINVAL;
3201 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003202
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003203 /* If device is not setup, there is no point in resetting it */
3204 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3205 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3206 SLOT_STATE_DISABLED)
3207 return 0;
3208
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003209 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3210 /* Allocate the command structure that holds the struct completion.
3211 * Assume we're in process context, since the normal device reset
3212 * process has to wait for the device anyway. Storage devices are
3213 * reset as part of error handling, so use GFP_NOIO instead of
3214 * GFP_KERNEL.
3215 */
3216 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3217 if (!reset_device_cmd) {
3218 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3219 return -ENOMEM;
3220 }
3221
3222 /* Attempt to submit the Reset Device command to the command ring */
3223 spin_lock_irqsave(&xhci->lock, flags);
3224 reset_device_cmd->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003225
3226 /* Enqueue pointer can be left pointing to the link TRB,
3227 * we must handle that
3228 */
Matt Evansf5960b62011-06-01 10:22:55 +10003229 if (TRB_TYPE_LINK_LE32(reset_device_cmd->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003230 reset_device_cmd->command_trb =
3231 xhci->cmd_ring->enq_seg->next->trbs;
3232
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003233 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3234 ret = xhci_queue_reset_device(xhci, slot_id);
3235 if (ret) {
3236 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3237 list_del(&reset_device_cmd->cmd_list);
3238 spin_unlock_irqrestore(&xhci->lock, flags);
3239 goto command_cleanup;
3240 }
3241 xhci_ring_cmd_db(xhci);
3242 spin_unlock_irqrestore(&xhci->lock, flags);
3243
3244 /* Wait for the Reset Device command to finish */
3245 timeleft = wait_for_completion_interruptible_timeout(
3246 reset_device_cmd->completion,
3247 USB_CTRL_SET_TIMEOUT);
3248 if (timeleft <= 0) {
3249 xhci_warn(xhci, "%s while waiting for reset device command\n",
3250 timeleft == 0 ? "Timeout" : "Signal");
3251 spin_lock_irqsave(&xhci->lock, flags);
3252 /* The timeout might have raced with the event ring handler, so
3253 * only delete from the list if the item isn't poisoned.
3254 */
3255 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3256 list_del(&reset_device_cmd->cmd_list);
3257 spin_unlock_irqrestore(&xhci->lock, flags);
3258 ret = -ETIME;
3259 goto command_cleanup;
3260 }
3261
3262 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3263 * unless we tried to reset a slot ID that wasn't enabled,
3264 * or the device wasn't in the addressed or configured state.
3265 */
3266 ret = reset_device_cmd->status;
3267 switch (ret) {
3268 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3269 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
3270 xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n",
3271 slot_id,
3272 xhci_get_slot_state(xhci, virt_dev->out_ctx));
3273 xhci_info(xhci, "Not freeing device rings.\n");
3274 /* Don't treat this as an error. May change my mind later. */
3275 ret = 0;
3276 goto command_cleanup;
3277 case COMP_SUCCESS:
3278 xhci_dbg(xhci, "Successful reset device command.\n");
3279 break;
3280 default:
3281 if (xhci_is_vendor_info_code(xhci, ret))
3282 break;
3283 xhci_warn(xhci, "Unknown completion code %u for "
3284 "reset device command.\n", ret);
3285 ret = -EINVAL;
3286 goto command_cleanup;
3287 }
3288
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003289 /* Free up host controller endpoint resources */
3290 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3291 spin_lock_irqsave(&xhci->lock, flags);
3292 /* Don't delete the default control endpoint resources */
3293 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3294 spin_unlock_irqrestore(&xhci->lock, flags);
3295 }
3296
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003297 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3298 last_freed_endpoint = 1;
3299 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003300 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3301
3302 if (ep->ep_state & EP_HAS_STREAMS) {
3303 xhci_free_stream_info(xhci, ep->stream_info);
3304 ep->stream_info = NULL;
3305 ep->ep_state &= ~EP_HAS_STREAMS;
3306 }
3307
3308 if (ep->ring) {
3309 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3310 last_freed_endpoint = i;
3311 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003312 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3313 xhci_drop_ep_from_interval_table(xhci,
3314 &virt_dev->eps[i].bw_info,
3315 virt_dev->bw_table,
3316 udev,
3317 &virt_dev->eps[i],
3318 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003319 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003320 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003321 /* If necessary, update the number of active TTs on this root port */
3322 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3323
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003324 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3325 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3326 ret = 0;
3327
3328command_cleanup:
3329 xhci_free_command(xhci, reset_device_cmd);
3330 return ret;
3331}
3332
3333/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003334 * At this point, the struct usb_device is about to go away, the device has
3335 * disconnected, and all traffic has been stopped and the endpoints have been
3336 * disabled. Free any HC data structures associated with that device.
3337 */
3338void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3339{
3340 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003341 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003342 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003343 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003344 int i, ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003345
Andiry Xu64927732010-10-14 07:22:45 -07003346 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003347 /* If the host is halted due to driver unload, we still need to free the
3348 * device.
3349 */
3350 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003351 return;
Andiry Xu64927732010-10-14 07:22:45 -07003352
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003353 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003354
3355 /* Stop any wayward timer functions (which may grab the lock) */
3356 for (i = 0; i < 31; ++i) {
3357 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3358 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3359 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003360
Andiry Xu65580b432011-09-23 14:19:52 -07003361 if (udev->usb2_hw_lpm_enabled) {
3362 xhci_set_usb2_hardware_lpm(hcd, udev, 0);
3363 udev->usb2_hw_lpm_enabled = 0;
3364 }
3365
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003366 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003367 /* Don't disable the slot if the host controller is dead. */
3368 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003369 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3370 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003371 xhci_free_virt_device(xhci, udev->slot_id);
3372 spin_unlock_irqrestore(&xhci->lock, flags);
3373 return;
3374 }
3375
Sarah Sharp23e3be12009-04-29 19:05:20 -07003376 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003377 spin_unlock_irqrestore(&xhci->lock, flags);
3378 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3379 return;
3380 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003381 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003382 spin_unlock_irqrestore(&xhci->lock, flags);
3383 /*
3384 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003385 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003386 */
3387}
3388
3389/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003390 * Checks if we have enough host controller resources for the default control
3391 * endpoint.
3392 *
3393 * Must be called with xhci->lock held.
3394 */
3395static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3396{
3397 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
3398 xhci_dbg(xhci, "Not enough ep ctxs: "
3399 "%u active, need to add 1, limit is %u.\n",
3400 xhci->num_active_eps, xhci->limit_active_eps);
3401 return -ENOMEM;
3402 }
3403 xhci->num_active_eps += 1;
3404 xhci_dbg(xhci, "Adding 1 ep ctx, %u now active.\n",
3405 xhci->num_active_eps);
3406 return 0;
3407}
3408
3409
3410/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003411 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3412 * timed out, or allocating memory failed. Returns 1 on success.
3413 */
3414int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3415{
3416 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3417 unsigned long flags;
3418 int timeleft;
3419 int ret;
3420
3421 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp23e3be12009-04-29 19:05:20 -07003422 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003423 if (ret) {
3424 spin_unlock_irqrestore(&xhci->lock, flags);
3425 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3426 return 0;
3427 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003428 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003429 spin_unlock_irqrestore(&xhci->lock, flags);
3430
3431 /* XXX: how much time for xHC slot assignment? */
3432 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
3433 USB_CTRL_SET_TIMEOUT);
3434 if (timeleft <= 0) {
3435 xhci_warn(xhci, "%s while waiting for a slot\n",
3436 timeleft == 0 ? "Timeout" : "Signal");
3437 /* FIXME cancel the enable slot request */
3438 return 0;
3439 }
3440
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003441 if (!xhci->slot_id) {
3442 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003443 return 0;
3444 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003445
3446 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3447 spin_lock_irqsave(&xhci->lock, flags);
3448 ret = xhci_reserve_host_control_ep_resources(xhci);
3449 if (ret) {
3450 spin_unlock_irqrestore(&xhci->lock, flags);
3451 xhci_warn(xhci, "Not enough host resources, "
3452 "active endpoint contexts = %u\n",
3453 xhci->num_active_eps);
3454 goto disable_slot;
3455 }
3456 spin_unlock_irqrestore(&xhci->lock, flags);
3457 }
3458 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003459 * xhci_discover_or_reset_device(), which may be called as part of
3460 * mass storage driver error handling.
3461 */
3462 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003463 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003464 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003465 }
3466 udev->slot_id = xhci->slot_id;
3467 /* Is this a LS or FS device under a HS hub? */
3468 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003469 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003470
3471disable_slot:
3472 /* Disable slot, if we can do it without mem alloc */
3473 spin_lock_irqsave(&xhci->lock, flags);
3474 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3475 xhci_ring_cmd_db(xhci);
3476 spin_unlock_irqrestore(&xhci->lock, flags);
3477 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003478}
3479
3480/*
3481 * Issue an Address Device command (which will issue a SetAddress request to
3482 * the device).
3483 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3484 * we should only issue and wait on one address command at the same time.
3485 *
3486 * We add one to the device address issued by the hardware because the USB core
3487 * uses address 1 for the root hubs (even though they're not really devices).
3488 */
3489int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3490{
3491 unsigned long flags;
3492 int timeleft;
3493 struct xhci_virt_device *virt_dev;
3494 int ret = 0;
3495 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003496 struct xhci_slot_ctx *slot_ctx;
3497 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003498 u64 temp_64;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003499
3500 if (!udev->slot_id) {
3501 xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id);
3502 return -EINVAL;
3503 }
3504
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003505 virt_dev = xhci->devs[udev->slot_id];
3506
Matt Evans7ed603e2011-03-29 13:40:56 +11003507 if (WARN_ON(!virt_dev)) {
3508 /*
3509 * In plug/unplug torture test with an NEC controller,
3510 * a zero-dereference was observed once due to virt_dev = 0.
3511 * Print useful debug rather than crash if it is observed again!
3512 */
3513 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3514 udev->slot_id);
3515 return -EINVAL;
3516 }
3517
Andiry Xuf0615c42010-10-14 07:22:48 -07003518 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
3519 /*
3520 * If this is the first Set Address since device plug-in or
3521 * virt_device realloaction after a resume with an xHCI power loss,
3522 * then set up the slot context.
3523 */
3524 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003525 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003526 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003527 else
3528 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003529 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3530 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3531 ctrl_ctx->drop_flags = 0;
3532
Sarah Sharp66e49d82009-07-27 12:03:46 -07003533 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003534 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003535
Sarah Sharpf88ba782009-05-14 11:44:22 -07003536 spin_lock_irqsave(&xhci->lock, flags);
John Yound115b042009-07-27 12:05:15 -07003537 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3538 udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003539 if (ret) {
3540 spin_unlock_irqrestore(&xhci->lock, flags);
3541 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3542 return ret;
3543 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003544 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003545 spin_unlock_irqrestore(&xhci->lock, flags);
3546
3547 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3548 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
3549 USB_CTRL_SET_TIMEOUT);
3550 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3551 * the SetAddress() "recovery interval" required by USB and aborting the
3552 * command on a timeout.
3553 */
3554 if (timeleft <= 0) {
Andiry Xucd681762011-09-23 14:19:55 -07003555 xhci_warn(xhci, "%s while waiting for address device command\n",
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003556 timeleft == 0 ? "Timeout" : "Signal");
3557 /* FIXME cancel the address device command */
3558 return -ETIME;
3559 }
3560
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003561 switch (virt_dev->cmd_status) {
3562 case COMP_CTX_STATE:
3563 case COMP_EBADSLT:
3564 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3565 udev->slot_id);
3566 ret = -EINVAL;
3567 break;
3568 case COMP_TX_ERR:
3569 dev_warn(&udev->dev, "Device not responding to set address.\n");
3570 ret = -EPROTO;
3571 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003572 case COMP_DEV_ERR:
3573 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3574 "device command.\n");
3575 ret = -ENODEV;
3576 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003577 case COMP_SUCCESS:
3578 xhci_dbg(xhci, "Successful Address Device command\n");
3579 break;
3580 default:
3581 xhci_err(xhci, "ERROR: unexpected command completion "
3582 "code 0x%x.\n", virt_dev->cmd_status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003583 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003584 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003585 ret = -EINVAL;
3586 break;
3587 }
3588 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003589 return ret;
3590 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003591 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
3592 xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64);
3593 xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n",
Matt Evans28ccd292011-03-29 13:40:46 +11003594 udev->slot_id,
3595 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3596 (unsigned long long)
3597 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07003598 xhci_dbg(xhci, "Output Context DMA address = %#08llx\n",
John Yound115b042009-07-27 12:05:15 -07003599 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003600 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003601 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003602 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003603 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003604 /*
3605 * USB core uses address 1 for the roothubs, so we add one to the
3606 * address given back to us by the HC.
3607 */
John Yound115b042009-07-27 12:05:15 -07003608 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003609 /* Use kernel assigned address for devices; store xHC assigned
3610 * address locally. */
Matt Evans28ccd292011-03-29 13:40:46 +11003611 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3612 + 1;
Sarah Sharpf94e01862009-04-27 19:58:38 -07003613 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003614 ctrl_ctx->add_flags = 0;
3615 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003616
Andiry Xuc8d4af82010-10-14 07:22:51 -07003617 xhci_dbg(xhci, "Internal device address = %d\n", virt_dev->address);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003618
3619 return 0;
3620}
3621
Andiry Xu95743232011-09-23 14:19:51 -07003622#ifdef CONFIG_USB_SUSPEND
3623
3624/* BESL to HIRD Encoding array for USB2 LPM */
3625static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3626 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3627
3628/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003629static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3630 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003631{
Andiry Xuf99298b2011-12-12 16:45:28 +08003632 int u2del, besl, besl_host;
3633 int besl_device = 0;
3634 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07003635
Andiry Xuf99298b2011-12-12 16:45:28 +08003636 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
3637 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3638
3639 if (field & USB_BESL_SUPPORT) {
3640 for (besl_host = 0; besl_host < 16; besl_host++) {
3641 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07003642 break;
3643 }
Andiry Xuf99298b2011-12-12 16:45:28 +08003644 /* Use baseline BESL value as default */
3645 if (field & USB_BESL_BASELINE_VALID)
3646 besl_device = USB_GET_BESL_BASELINE(field);
3647 else if (field & USB_BESL_DEEP_VALID)
3648 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07003649 } else {
3650 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08003651 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07003652 else
Andiry Xuf99298b2011-12-12 16:45:28 +08003653 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07003654 }
3655
Andiry Xuf99298b2011-12-12 16:45:28 +08003656 besl = besl_host + besl_device;
3657 if (besl > 15)
3658 besl = 15;
3659
3660 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07003661}
3662
3663static int xhci_usb2_software_lpm_test(struct usb_hcd *hcd,
3664 struct usb_device *udev)
3665{
3666 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3667 struct dev_info *dev_info;
3668 __le32 __iomem **port_array;
3669 __le32 __iomem *addr, *pm_addr;
3670 u32 temp, dev_id;
3671 unsigned int port_num;
3672 unsigned long flags;
Andiry Xuf99298b2011-12-12 16:45:28 +08003673 int hird;
Andiry Xu95743232011-09-23 14:19:51 -07003674 int ret;
3675
3676 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
3677 !udev->lpm_capable)
3678 return -EINVAL;
3679
3680 /* we only support lpm for non-hub device connected to root hub yet */
3681 if (!udev->parent || udev->parent->parent ||
3682 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
3683 return -EINVAL;
3684
3685 spin_lock_irqsave(&xhci->lock, flags);
3686
3687 /* Look for devices in lpm_failed_devs list */
3688 dev_id = le16_to_cpu(udev->descriptor.idVendor) << 16 |
3689 le16_to_cpu(udev->descriptor.idProduct);
3690 list_for_each_entry(dev_info, &xhci->lpm_failed_devs, list) {
3691 if (dev_info->dev_id == dev_id) {
3692 ret = -EINVAL;
3693 goto finish;
3694 }
3695 }
3696
3697 port_array = xhci->usb2_ports;
3698 port_num = udev->portnum - 1;
3699
3700 if (port_num > HCS_MAX_PORTS(xhci->hcs_params1)) {
3701 xhci_dbg(xhci, "invalid port number %d\n", udev->portnum);
3702 ret = -EINVAL;
3703 goto finish;
3704 }
3705
3706 /*
3707 * Test USB 2.0 software LPM.
3708 * FIXME: some xHCI 1.0 hosts may implement a new register to set up
3709 * hardware-controlled USB 2.0 LPM. See section 5.4.11 and 4.23.5.1.1.1
3710 * in the June 2011 errata release.
3711 */
3712 xhci_dbg(xhci, "test port %d software LPM\n", port_num);
3713 /*
3714 * Set L1 Device Slot and HIRD/BESL.
3715 * Check device's USB 2.0 extension descriptor to determine whether
3716 * HIRD or BESL shoule be used. See USB2.0 LPM errata.
3717 */
3718 pm_addr = port_array[port_num] + 1;
Andiry Xuf99298b2011-12-12 16:45:28 +08003719 hird = xhci_calculate_hird_besl(xhci, udev);
Andiry Xu95743232011-09-23 14:19:51 -07003720 temp = PORT_L1DS(udev->slot_id) | PORT_HIRD(hird);
3721 xhci_writel(xhci, temp, pm_addr);
3722
3723 /* Set port link state to U2(L1) */
3724 addr = port_array[port_num];
3725 xhci_set_link_state(xhci, port_array, port_num, XDEV_U2);
3726
3727 /* wait for ACK */
3728 spin_unlock_irqrestore(&xhci->lock, flags);
3729 msleep(10);
3730 spin_lock_irqsave(&xhci->lock, flags);
3731
3732 /* Check L1 Status */
3733 ret = handshake(xhci, pm_addr, PORT_L1S_MASK, PORT_L1S_SUCCESS, 125);
3734 if (ret != -ETIMEDOUT) {
3735 /* enter L1 successfully */
3736 temp = xhci_readl(xhci, addr);
3737 xhci_dbg(xhci, "port %d entered L1 state, port status 0x%x\n",
3738 port_num, temp);
3739 ret = 0;
3740 } else {
3741 temp = xhci_readl(xhci, pm_addr);
3742 xhci_dbg(xhci, "port %d software lpm failed, L1 status %d\n",
3743 port_num, temp & PORT_L1S_MASK);
3744 ret = -EINVAL;
3745 }
3746
3747 /* Resume the port */
3748 xhci_set_link_state(xhci, port_array, port_num, XDEV_U0);
3749
3750 spin_unlock_irqrestore(&xhci->lock, flags);
3751 msleep(10);
3752 spin_lock_irqsave(&xhci->lock, flags);
3753
3754 /* Clear PLC */
3755 xhci_test_and_clear_bit(xhci, port_array, port_num, PORT_PLC);
3756
3757 /* Check PORTSC to make sure the device is in the right state */
3758 if (!ret) {
3759 temp = xhci_readl(xhci, addr);
3760 xhci_dbg(xhci, "resumed port %d status 0x%x\n", port_num, temp);
3761 if (!(temp & PORT_CONNECT) || !(temp & PORT_PE) ||
3762 (temp & PORT_PLS_MASK) != XDEV_U0) {
3763 xhci_dbg(xhci, "port L1 resume fail\n");
3764 ret = -EINVAL;
3765 }
3766 }
3767
3768 if (ret) {
3769 /* Insert dev to lpm_failed_devs list */
3770 xhci_warn(xhci, "device LPM test failed, may disconnect and "
3771 "re-enumerate\n");
3772 dev_info = kzalloc(sizeof(struct dev_info), GFP_ATOMIC);
3773 if (!dev_info) {
3774 ret = -ENOMEM;
3775 goto finish;
3776 }
3777 dev_info->dev_id = dev_id;
3778 INIT_LIST_HEAD(&dev_info->list);
3779 list_add(&dev_info->list, &xhci->lpm_failed_devs);
3780 } else {
3781 xhci_ring_device(xhci, udev->slot_id);
3782 }
3783
3784finish:
3785 spin_unlock_irqrestore(&xhci->lock, flags);
3786 return ret;
3787}
3788
Andiry Xu65580b432011-09-23 14:19:52 -07003789int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
3790 struct usb_device *udev, int enable)
3791{
3792 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3793 __le32 __iomem **port_array;
3794 __le32 __iomem *pm_addr;
3795 u32 temp;
3796 unsigned int port_num;
3797 unsigned long flags;
Andiry Xuf99298b2011-12-12 16:45:28 +08003798 int hird;
Andiry Xu65580b432011-09-23 14:19:52 -07003799
3800 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
3801 !udev->lpm_capable)
3802 return -EPERM;
3803
3804 if (!udev->parent || udev->parent->parent ||
3805 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
3806 return -EPERM;
3807
3808 if (udev->usb2_hw_lpm_capable != 1)
3809 return -EPERM;
3810
3811 spin_lock_irqsave(&xhci->lock, flags);
3812
3813 port_array = xhci->usb2_ports;
3814 port_num = udev->portnum - 1;
3815 pm_addr = port_array[port_num] + 1;
3816 temp = xhci_readl(xhci, pm_addr);
3817
3818 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
3819 enable ? "enable" : "disable", port_num);
3820
Andiry Xuf99298b2011-12-12 16:45:28 +08003821 hird = xhci_calculate_hird_besl(xhci, udev);
Andiry Xu65580b432011-09-23 14:19:52 -07003822
3823 if (enable) {
3824 temp &= ~PORT_HIRD_MASK;
3825 temp |= PORT_HIRD(hird) | PORT_RWE;
3826 xhci_writel(xhci, temp, pm_addr);
3827 temp = xhci_readl(xhci, pm_addr);
3828 temp |= PORT_HLE;
3829 xhci_writel(xhci, temp, pm_addr);
3830 } else {
3831 temp &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK);
3832 xhci_writel(xhci, temp, pm_addr);
3833 }
3834
3835 spin_unlock_irqrestore(&xhci->lock, flags);
3836 return 0;
3837}
3838
Andiry Xu95743232011-09-23 14:19:51 -07003839int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
3840{
3841 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3842 int ret;
3843
3844 ret = xhci_usb2_software_lpm_test(hcd, udev);
Andiry Xu65580b432011-09-23 14:19:52 -07003845 if (!ret) {
Andiry Xu95743232011-09-23 14:19:51 -07003846 xhci_dbg(xhci, "software LPM test succeed\n");
Andiry Xu65580b432011-09-23 14:19:52 -07003847 if (xhci->hw_lpm_support == 1) {
3848 udev->usb2_hw_lpm_capable = 1;
3849 ret = xhci_set_usb2_hardware_lpm(hcd, udev, 1);
3850 if (!ret)
3851 udev->usb2_hw_lpm_enabled = 1;
3852 }
3853 }
Andiry Xu95743232011-09-23 14:19:51 -07003854
3855 return 0;
3856}
3857
3858#else
3859
Andiry Xu65580b432011-09-23 14:19:52 -07003860int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
3861 struct usb_device *udev, int enable)
3862{
3863 return 0;
3864}
3865
Andiry Xu95743232011-09-23 14:19:51 -07003866int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
3867{
3868 return 0;
3869}
3870
3871#endif /* CONFIG_USB_SUSPEND */
3872
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003873/* Once a hub descriptor is fetched for a device, we need to update the xHC's
3874 * internal data structures for the device.
3875 */
3876int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
3877 struct usb_tt *tt, gfp_t mem_flags)
3878{
3879 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3880 struct xhci_virt_device *vdev;
3881 struct xhci_command *config_cmd;
3882 struct xhci_input_control_ctx *ctrl_ctx;
3883 struct xhci_slot_ctx *slot_ctx;
3884 unsigned long flags;
3885 unsigned think_time;
3886 int ret;
3887
3888 /* Ignore root hubs */
3889 if (!hdev->parent)
3890 return 0;
3891
3892 vdev = xhci->devs[hdev->slot_id];
3893 if (!vdev) {
3894 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
3895 return -EINVAL;
3896 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08003897 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003898 if (!config_cmd) {
3899 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3900 return -ENOMEM;
3901 }
3902
3903 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07003904 if (hdev->speed == USB_SPEED_HIGH &&
3905 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
3906 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
3907 xhci_free_command(xhci, config_cmd);
3908 spin_unlock_irqrestore(&xhci->lock, flags);
3909 return -ENOMEM;
3910 }
3911
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003912 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
3913 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11003914 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003915 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11003916 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003917 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11003918 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003919 if (xhci->hci_version > 0x95) {
3920 xhci_dbg(xhci, "xHCI version %x needs hub "
3921 "TT think time and number of ports\n",
3922 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11003923 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003924 /* Set TT think time - convert from ns to FS bit times.
3925 * 0 = 8 FS bit times, 1 = 16 FS bit times,
3926 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08003927 *
3928 * xHCI 1.0: this field shall be 0 if the device is not a
3929 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003930 */
3931 think_time = tt->think_time;
3932 if (think_time != 0)
3933 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08003934 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
3935 slot_ctx->tt_info |=
3936 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003937 } else {
3938 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
3939 "TT think time or number of ports\n",
3940 (unsigned int) xhci->hci_version);
3941 }
3942 slot_ctx->dev_state = 0;
3943 spin_unlock_irqrestore(&xhci->lock, flags);
3944
3945 xhci_dbg(xhci, "Set up %s for hub device.\n",
3946 (xhci->hci_version > 0x95) ?
3947 "configure endpoint" : "evaluate context");
3948 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
3949 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
3950
3951 /* Issue and wait for the configure endpoint or
3952 * evaluate context command.
3953 */
3954 if (xhci->hci_version > 0x95)
3955 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
3956 false, false);
3957 else
3958 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
3959 true, false);
3960
3961 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
3962 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
3963
3964 xhci_free_command(xhci, config_cmd);
3965 return ret;
3966}
3967
Sarah Sharp66d4ead2009-04-27 19:52:28 -07003968int xhci_get_frame(struct usb_hcd *hcd)
3969{
3970 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3971 /* EHCI mods by the periodic size. Why? */
3972 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
3973}
3974
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07003975int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
3976{
3977 struct xhci_hcd *xhci;
3978 struct device *dev = hcd->self.controller;
3979 int retval;
3980 u32 temp;
3981
Andiry Xufdaf8b32012-03-05 17:49:38 +08003982 /* Accept arbitrarily long scatter-gather lists */
3983 hcd->self.sg_tablesize = ~0;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07003984
3985 if (usb_hcd_is_primary_hcd(hcd)) {
3986 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
3987 if (!xhci)
3988 return -ENOMEM;
3989 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
3990 xhci->main_hcd = hcd;
3991 /* Mark the first roothub as being USB 2.0.
3992 * The xHCI driver will register the USB 3.0 roothub.
3993 */
3994 hcd->speed = HCD_USB2;
3995 hcd->self.root_hub->speed = USB_SPEED_HIGH;
3996 /*
3997 * USB 2.0 roothub under xHCI has an integrated TT,
3998 * (rate matching hub) as opposed to having an OHCI/UHCI
3999 * companion controller.
4000 */
4001 hcd->has_tt = 1;
4002 } else {
4003 /* xHCI private pointer was set in xhci_pci_probe for the second
4004 * registered roothub.
4005 */
4006 xhci = hcd_to_xhci(hcd);
4007 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4008 if (HCC_64BIT_ADDR(temp)) {
4009 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4010 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4011 } else {
4012 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4013 }
4014 return 0;
4015 }
4016
4017 xhci->cap_regs = hcd->regs;
4018 xhci->op_regs = hcd->regs +
4019 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
4020 xhci->run_regs = hcd->regs +
4021 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
4022 /* Cache read-only capability registers */
4023 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
4024 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
4025 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
4026 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
4027 xhci->hci_version = HC_VERSION(xhci->hcc_params);
4028 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4029 xhci_print_registers(xhci);
4030
4031 get_quirks(dev, xhci);
4032
4033 /* Make sure the HC is halted. */
4034 retval = xhci_halt(xhci);
4035 if (retval)
4036 goto error;
4037
4038 xhci_dbg(xhci, "Resetting HCD\n");
4039 /* Reset the internal HC memory state and registers. */
4040 retval = xhci_reset(xhci);
4041 if (retval)
4042 goto error;
4043 xhci_dbg(xhci, "Reset complete\n");
4044
4045 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4046 if (HCC_64BIT_ADDR(temp)) {
4047 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4048 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4049 } else {
4050 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4051 }
4052
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004053 return 0;
4054error:
4055 kfree(xhci);
4056 return retval;
4057}
4058
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004059MODULE_DESCRIPTION(DRIVER_DESC);
4060MODULE_AUTHOR(DRIVER_AUTHOR);
4061MODULE_LICENSE("GPL");
4062
4063static int __init xhci_hcd_init(void)
4064{
Sebastian Andrzej Siewior0cc47d52011-09-23 14:20:02 -07004065 int retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004066
4067 retval = xhci_register_pci();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004068 if (retval < 0) {
4069 printk(KERN_DEBUG "Problem registering PCI driver.");
4070 return retval;
4071 }
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004072 retval = xhci_register_plat();
4073 if (retval < 0) {
4074 printk(KERN_DEBUG "Problem registering platform driver.");
4075 goto unreg_pci;
4076 }
Sarah Sharp98441972009-05-14 11:44:18 -07004077 /*
4078 * Check the compiler generated sizes of structures that must be laid
4079 * out in specific ways for hardware access.
4080 */
4081 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4082 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4083 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4084 /* xhci_device_control has eight fields, and also
4085 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4086 */
Sarah Sharp98441972009-05-14 11:44:18 -07004087 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4088 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4089 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4090 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4091 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4092 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4093 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
4094 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004095 return 0;
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004096unreg_pci:
4097 xhci_unregister_pci();
4098 return retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004099}
4100module_init(xhci_hcd_init);
4101
4102static void __exit xhci_hcd_cleanup(void)
4103{
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004104 xhci_unregister_pci();
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004105 xhci_unregister_plat();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004106}
4107module_exit(xhci_hcd_cleanup);