blob: df41b4fa82de49e5cb4fc15853e462569bc79adb [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 int xhci_try_enable_msi(struct usb_hcd *hcd)
322{
323 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
324 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
325 int ret;
326
327 /*
328 * Some Fresco Logic host controllers advertise MSI, but fail to
329 * generate interrupts. Don't even try to enable MSI.
330 */
331 if (xhci->quirks & XHCI_BROKEN_MSI)
332 return 0;
333
334 /* unregister the legacy interrupt */
335 if (hcd->irq)
336 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200337 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700338
339 ret = xhci_setup_msix(xhci);
340 if (ret)
341 /* fall back to msi*/
342 ret = xhci_setup_msi(xhci);
343
344 if (!ret)
Felipe Balbicd704692012-02-29 16:46:23 +0200345 /* hcd->irq is 0, we have MSI */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700346 return 0;
347
Sarah Sharp68d07f62012-02-13 16:25:57 -0800348 if (!pdev->irq) {
349 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
350 return -EINVAL;
351 }
352
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700353 /* fall back to legacy interrupt*/
354 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
355 hcd->irq_descr, hcd);
356 if (ret) {
357 xhci_err(xhci, "request interrupt %d failed\n",
358 pdev->irq);
359 return ret;
360 }
361 hcd->irq = pdev->irq;
362 return 0;
363}
364
365#else
366
367static int xhci_try_enable_msi(struct usb_hcd *hcd)
368{
369 return 0;
370}
371
372static void xhci_cleanup_msix(struct xhci_hcd *xhci)
373{
374}
375
Ido Shayevitzb546ed72012-06-06 20:27:45 +0300376#endif /* CONFIG_PCI */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700377
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700378/*
379 * Initialize memory for HCD and xHC (one-time init).
380 *
381 * Program the PAGESIZE register, initialize the device context array, create
382 * device contexts (?), set up a command ring segment (or two?), create event
383 * ring (one for now).
384 */
385int xhci_init(struct usb_hcd *hcd)
386{
387 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
388 int retval = 0;
389
390 xhci_dbg(xhci, "xhci_init\n");
391 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700392 if (xhci->hci_version == 0x95 && link_quirk) {
Sarah Sharpb0567b32009-08-07 14:04:36 -0700393 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
394 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
395 } else {
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700396 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700397 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700398 retval = xhci_mem_init(xhci, GFP_KERNEL);
399 xhci_dbg(xhci, "Finished xhci_init\n");
400
401 return retval;
402}
403
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700404/*-------------------------------------------------------------------------*/
405
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700406
407#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800408static void xhci_event_ring_work(unsigned long arg)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700409{
410 unsigned long flags;
411 int temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700412 u64 temp_64;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700413 struct xhci_hcd *xhci = (struct xhci_hcd *) arg;
414 int i, j;
415
416 xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies);
417
418 spin_lock_irqsave(&xhci->lock, flags);
419 temp = xhci_readl(xhci, &xhci->op_regs->status);
420 xhci_dbg(xhci, "op reg status = 0x%x\n", temp);
Sarah Sharp7bd89b42011-07-01 13:35:40 -0700421 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
422 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe4ab05d2009-09-16 16:42:30 -0700423 xhci_dbg(xhci, "HW died, polling stopped.\n");
424 spin_unlock_irqrestore(&xhci->lock, flags);
425 return;
426 }
427
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700428 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
429 xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700430 xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask);
431 xhci->error_bitmask = 0;
432 xhci_dbg(xhci, "Event ring:\n");
433 xhci_debug_segment(xhci, xhci->event_ring->deq_seg);
434 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
Sarah Sharp8e595a52009-07-27 12:03:31 -0700435 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
436 temp_64 &= ~ERST_PTR_MASK;
437 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700438 xhci_dbg(xhci, "Command ring:\n");
439 xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg);
440 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
441 xhci_dbg_cmd_ptrs(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700442 for (i = 0; i < MAX_HC_SLOTS; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700443 if (!xhci->devs[i])
444 continue;
445 for (j = 0; j < 31; ++j) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700446 xhci_dbg_ep_rings(xhci, i, j, &xhci->devs[i]->eps[j]);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700447 }
448 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700449 spin_unlock_irqrestore(&xhci->lock, flags);
450
451 if (!xhci->zombie)
452 mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ);
453 else
454 xhci_dbg(xhci, "Quit polling the event ring.\n");
455}
456#endif
457
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800458static int xhci_run_finished(struct xhci_hcd *xhci)
459{
460 if (xhci_start(xhci)) {
461 xhci_halt(xhci);
462 return -ENODEV;
463 }
464 xhci->shared_hcd->state = HC_STATE_RUNNING;
465
466 if (xhci->quirks & XHCI_NEC_HOST)
467 xhci_ring_cmd_db(xhci);
468
469 xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n");
470 return 0;
471}
472
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700473/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700474 * Start the HC after it was halted.
475 *
476 * This function is called by the USB core when the HC driver is added.
477 * Its opposite is xhci_stop().
478 *
479 * xhci_init() must be called once before this function can be called.
480 * Reset the HC, enable device slot contexts, program DCBAAP, and
481 * set command ring pointer and event ring pointer.
482 *
483 * Setup MSI-X vectors and enable interrupts.
484 */
485int xhci_run(struct usb_hcd *hcd)
486{
487 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700488 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700489 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700490 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700491
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800492 /* Start the xHCI host controller running only after the USB 2.0 roothub
493 * is setup.
494 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700495
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700496 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800497 if (!usb_hcd_is_primary_hcd(hcd))
498 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700499
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700500 xhci_dbg(xhci, "xhci_run\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700501
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +0200502 xhci_dbg(xhci, "Calling HCD init\n");
503 /* Initialize HCD and host controller data structures. */
504 ret = xhci_init(hcd);
505 if (ret)
506 return ret;
507 xhci_dbg(xhci, "Called HCD init\n");
508
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700509 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700510 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700511 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700512
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700513#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
514 init_timer(&xhci->event_ring_timer);
515 xhci->event_ring_timer.data = (unsigned long) xhci;
Sarah Sharp23e3be12009-04-29 19:05:20 -0700516 xhci->event_ring_timer.function = xhci_event_ring_work;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700517 /* Poll the event ring */
518 xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ;
519 xhci->zombie = 0;
520 xhci_dbg(xhci, "Setting event ring polling timer\n");
521 add_timer(&xhci->event_ring_timer);
522#endif
523
Sarah Sharp66e49d82009-07-27 12:03:46 -0700524 xhci_dbg(xhci, "Command ring memory map follows:\n");
525 xhci_debug_ring(xhci, xhci->cmd_ring);
526 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
527 xhci_dbg_cmd_ptrs(xhci);
528
529 xhci_dbg(xhci, "ERST memory map follows:\n");
530 xhci_dbg_erst(xhci, &xhci->erst);
531 xhci_dbg(xhci, "Event ring:\n");
532 xhci_debug_ring(xhci, xhci->event_ring);
533 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
534 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
535 temp_64 &= ~ERST_PTR_MASK;
536 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
537
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700538 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
539 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700540 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700541 temp |= (u32) 160;
542 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
543
544 /* Set the HCD state before we enable the irqs */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700545 temp = xhci_readl(xhci, &xhci->op_regs->command);
546 temp |= (CMD_EIE);
547 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
548 temp);
549 xhci_writel(xhci, temp, &xhci->op_regs->command);
550
551 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700552 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
553 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700554 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
555 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800556 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700557
Sarah Sharp02386342010-05-24 13:25:28 -0700558 if (xhci->quirks & XHCI_NEC_HOST)
559 xhci_queue_vendor_command(xhci, 0, 0, 0,
560 TRB_TYPE(TRB_NEC_GET_FW));
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700561
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800562 xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700563 return 0;
564}
565
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800566static void xhci_only_stop_hcd(struct usb_hcd *hcd)
567{
568 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
569
570 spin_lock_irq(&xhci->lock);
571 xhci_halt(xhci);
572
573 /* The shared_hcd is going to be deallocated shortly (the USB core only
574 * calls this function when allocation fails in usb_add_hcd(), or
575 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
576 */
577 xhci->shared_hcd = NULL;
578 spin_unlock_irq(&xhci->lock);
579}
580
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700581/*
582 * Stop xHCI driver.
583 *
584 * This function is called by the USB core when the HC driver is removed.
585 * Its opposite is xhci_run().
586 *
587 * Disable device contexts, disable IRQs, and quiesce the HC.
588 * Reset the HC, finish any completed transactions, and cleanup memory.
589 */
590void xhci_stop(struct usb_hcd *hcd)
591{
592 u32 temp;
593 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
594
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800595 if (!usb_hcd_is_primary_hcd(hcd)) {
596 xhci_only_stop_hcd(xhci->shared_hcd);
597 return;
598 }
599
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700600 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800601 /* Make sure the xHC is halted for a USB3 roothub
602 * (xhci_stop() could be called as part of failed init).
603 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700604 xhci_halt(xhci);
605 xhci_reset(xhci);
606 spin_unlock_irq(&xhci->lock);
607
Zhang Rui40a9fb12010-12-17 13:17:04 -0800608 xhci_cleanup_msix(xhci);
609
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700610#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
611 /* Tell the event ring poll function not to reschedule */
612 xhci->zombie = 1;
613 del_timer_sync(&xhci->event_ring_timer);
614#endif
615
Andiry Xuc41136b2011-03-22 17:08:14 +0800616 if (xhci->quirks & XHCI_AMD_PLL_FIX)
617 usb_amd_dev_put();
618
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700619 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
620 temp = xhci_readl(xhci, &xhci->op_regs->status);
621 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
622 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
623 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
624 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800625 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700626
627 xhci_dbg(xhci, "cleaning up memory\n");
628 xhci_mem_cleanup(xhci);
629 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
630 xhci_readl(xhci, &xhci->op_regs->status));
631}
632
633/*
634 * Shutdown HC (not bus-specific)
635 *
636 * This is called when the machine is rebooting or halting. We assume that the
637 * machine will be powered off, and the HC's internal state will be reset.
638 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800639 *
640 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700641 */
642void xhci_shutdown(struct usb_hcd *hcd)
643{
644 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
645
646 spin_lock_irq(&xhci->lock);
647 xhci_halt(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700648 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700649
Zhang Rui40a9fb12010-12-17 13:17:04 -0800650 xhci_cleanup_msix(xhci);
651
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700652 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
653 xhci_readl(xhci, &xhci->op_regs->status));
654}
655
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700656#ifdef CONFIG_PM
Ido Shayevitzb546ed72012-06-06 20:27:45 +0300657
658#ifdef CONFIG_PCI
659static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
660{
661 int i;
662
663 if (xhci->msix_entries) {
664 for (i = 0; i < xhci->msix_count; i++)
665 synchronize_irq(xhci->msix_entries[i].vector);
666 }
667}
668#else
669static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
670{
671}
672#endif /* CONFIG_PCI */
673
Andiry Xu5535b1d2010-10-14 07:23:06 -0700674static void xhci_save_registers(struct xhci_hcd *xhci)
675{
676 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
677 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
678 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
679 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700680 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
681 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
682 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700683 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
684 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700685}
686
687static void xhci_restore_registers(struct xhci_hcd *xhci)
688{
689 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
690 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
691 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
692 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700693 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
694 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
Sarah Sharpfb3d85b2012-03-16 13:27:39 -0700695 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700696 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
697 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700698}
699
Sarah Sharp89821322010-11-12 11:59:31 -0800700static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
701{
702 u64 val_64;
703
704 /* step 2: initialize command ring buffer */
705 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
706 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
707 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
708 xhci->cmd_ring->dequeue) &
709 (u64) ~CMD_RING_RSVD_BITS) |
710 xhci->cmd_ring->cycle_state;
711 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
712 (long unsigned long) val_64);
713 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
714}
715
716/*
717 * The whole command ring must be cleared to zero when we suspend the host.
718 *
719 * The host doesn't save the command ring pointer in the suspend well, so we
720 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
721 * aligned, because of the reserved bits in the command ring dequeue pointer
722 * register. Therefore, we can't just set the dequeue pointer back in the
723 * middle of the ring (TRBs are 16-byte aligned).
724 */
725static void xhci_clear_command_ring(struct xhci_hcd *xhci)
726{
727 struct xhci_ring *ring;
728 struct xhci_segment *seg;
729
730 ring = xhci->cmd_ring;
731 seg = ring->deq_seg;
732 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800733 memset(seg->trbs, 0,
734 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
735 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
736 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800737 seg = seg->next;
738 } while (seg != ring->deq_seg);
739
740 /* Reset the software enqueue and dequeue pointers */
741 ring->deq_seg = ring->first_seg;
742 ring->dequeue = ring->first_seg->trbs;
743 ring->enq_seg = ring->deq_seg;
744 ring->enqueue = ring->dequeue;
745
Andiry Xub008df62012-03-05 17:49:34 +0800746 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800747 /*
748 * Ring is now zeroed, so the HW should look for change of ownership
749 * when the cycle bit is set to 1.
750 */
751 ring->cycle_state = 1;
752
753 /*
754 * Reset the hardware dequeue pointer.
755 * Yes, this will need to be re-written after resume, but we're paranoid
756 * and want to make sure the hardware doesn't access bogus memory
757 * because, say, the BIOS or an SMI started the host without changing
758 * the command ring pointers.
759 */
760 xhci_set_cmd_ring_deq(xhci);
761}
762
Andiry Xu5535b1d2010-10-14 07:23:06 -0700763/*
764 * Stop HC (not bus-specific)
765 *
766 * This is called when the machine transition into S3/S4 mode.
767 *
768 */
769int xhci_suspend(struct xhci_hcd *xhci)
770{
771 int rc = 0;
772 struct usb_hcd *hcd = xhci_to_hcd(xhci);
773 u32 command;
774
775 spin_lock_irq(&xhci->lock);
776 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800777 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700778 /* step 1: stop endpoint */
779 /* skipped assuming that port suspend has done */
780
781 /* step 2: clear Run/Stop bit */
782 command = xhci_readl(xhci, &xhci->op_regs->command);
783 command &= ~CMD_RUN;
784 xhci_writel(xhci, command, &xhci->op_regs->command);
785 if (handshake(xhci, &xhci->op_regs->status,
786 STS_HALT, STS_HALT, 100*100)) {
787 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
788 spin_unlock_irq(&xhci->lock);
789 return -ETIMEDOUT;
790 }
Sarah Sharp89821322010-11-12 11:59:31 -0800791 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700792
793 /* step 3: save registers */
794 xhci_save_registers(xhci);
795
796 /* step 4: set CSS flag */
797 command = xhci_readl(xhci, &xhci->op_regs->command);
798 command |= CMD_CSS;
799 xhci_writel(xhci, command, &xhci->op_regs->command);
800 if (handshake(xhci, &xhci->op_regs->status, STS_SAVE, 0, 10*100)) {
801 xhci_warn(xhci, "WARN: xHC CMD_CSS timeout\n");
802 spin_unlock_irq(&xhci->lock);
803 return -ETIMEDOUT;
804 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700805 spin_unlock_irq(&xhci->lock);
806
Andiry Xu00292272010-12-27 17:39:02 +0800807 /* step 5: remove core well power */
808 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700809 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800810
Andiry Xu5535b1d2010-10-14 07:23:06 -0700811 return rc;
812}
813
814/*
815 * start xHC (not bus-specific)
816 *
817 * This is called when the machine transition from S3/S4 mode.
818 *
819 */
820int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
821{
822 u32 command, temp = 0;
823 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800824 struct usb_hcd *secondary_hcd;
Alan Sternf69e3122011-11-03 11:37:10 -0400825 int retval = 0;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700826
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800827 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300828 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800829 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800830 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
831 time_before(jiffies,
832 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d2010-10-14 07:23:06 -0700833 msleep(100);
834
Alan Sternf69e3122011-11-03 11:37:10 -0400835 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
836 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
837
Andiry Xu5535b1d2010-10-14 07:23:06 -0700838 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200839 if (xhci->quirks & XHCI_RESET_ON_RESUME)
840 hibernated = true;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700841
842 if (!hibernated) {
843 /* step 1: restore register */
844 xhci_restore_registers(xhci);
845 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800846 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700847 /* step 3: restore state and start state*/
848 /* step 3: set CRS flag */
849 command = xhci_readl(xhci, &xhci->op_regs->command);
850 command |= CMD_CRS;
851 xhci_writel(xhci, command, &xhci->op_regs->command);
852 if (handshake(xhci, &xhci->op_regs->status,
853 STS_RESTORE, 0, 10*100)) {
854 xhci_dbg(xhci, "WARN: xHC CMD_CSS timeout\n");
855 spin_unlock_irq(&xhci->lock);
856 return -ETIMEDOUT;
857 }
858 temp = xhci_readl(xhci, &xhci->op_regs->status);
859 }
860
861 /* If restore operation fails, re-initialize the HC during resume */
862 if ((temp & STS_SRE) || hibernated) {
Sarah Sharpfedd3832011-04-12 17:43:19 -0700863 /* Let the USB core know _both_ roothubs lost power. */
864 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
865 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700866
867 xhci_dbg(xhci, "Stop HCD\n");
868 xhci_halt(xhci);
869 xhci_reset(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700870 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +0800871 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700872
873#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
874 /* Tell the event ring poll function not to reschedule */
875 xhci->zombie = 1;
876 del_timer_sync(&xhci->event_ring_timer);
877#endif
878
879 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
880 temp = xhci_readl(xhci, &xhci->op_regs->status);
881 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
882 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
883 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
884 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800885 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700886
887 xhci_dbg(xhci, "cleaning up memory\n");
888 xhci_mem_cleanup(xhci);
889 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
890 xhci_readl(xhci, &xhci->op_regs->status));
891
Sarah Sharp65b22f92010-12-17 12:35:05 -0800892 /* USB core calls the PCI reinit and start functions twice:
893 * first with the primary HCD, and then with the secondary HCD.
894 * If we don't do the same, the host will never be started.
895 */
896 if (!usb_hcd_is_primary_hcd(hcd))
897 secondary_hcd = hcd;
898 else
899 secondary_hcd = xhci->shared_hcd;
900
901 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
902 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700903 if (retval)
904 return retval;
Sarah Sharp65b22f92010-12-17 12:35:05 -0800905 xhci_dbg(xhci, "Start the primary HCD\n");
906 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800907 if (!retval) {
Alan Sternf69e3122011-11-03 11:37:10 -0400908 xhci_dbg(xhci, "Start the secondary HCD\n");
909 retval = xhci_run(secondary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800910 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700911 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb3209372011-03-07 11:24:07 -0800912 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e3122011-11-03 11:37:10 -0400913 goto done;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700914 }
915
Andiry Xu5535b1d2010-10-14 07:23:06 -0700916 /* step 4: set Run/Stop bit */
917 command = xhci_readl(xhci, &xhci->op_regs->command);
918 command |= CMD_RUN;
919 xhci_writel(xhci, command, &xhci->op_regs->command);
920 handshake(xhci, &xhci->op_regs->status, STS_HALT,
921 0, 250 * 1000);
922
923 /* step 5: walk topology and initialize portsc,
924 * portpmsc and portli
925 */
926 /* this is done in bus_resume */
927
928 /* step 6: restart each of the previously
929 * Running endpoints by ringing their doorbells
930 */
931
Andiry Xu5535b1d2010-10-14 07:23:06 -0700932 spin_unlock_irq(&xhci->lock);
Alan Sternf69e3122011-11-03 11:37:10 -0400933
934 done:
935 if (retval == 0) {
936 usb_hcd_resume_root_hub(hcd);
937 usb_hcd_resume_root_hub(xhci->shared_hcd);
938 }
939 return retval;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700940}
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700941#endif /* CONFIG_PM */
942
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700943/*-------------------------------------------------------------------------*/
944
Sarah Sharpd0e96f52009-04-27 19:58:01 -0700945/**
946 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
947 * HCDs. Find the index for an endpoint given its descriptor. Use the return
948 * value to right shift 1 for the bitmask.
949 *
950 * Index = (epnum * 2) + direction - 1,
951 * where direction = 0 for OUT, 1 for IN.
952 * For control endpoints, the IN index is used (OUT index is unused), so
953 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
954 */
955unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
956{
957 unsigned int index;
958 if (usb_endpoint_xfer_control(desc))
959 index = (unsigned int) (usb_endpoint_num(desc)*2);
960 else
961 index = (unsigned int) (usb_endpoint_num(desc)*2) +
962 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
963 return index;
964}
965
Sarah Sharpf94e01862009-04-27 19:58:38 -0700966/* Find the flag for this endpoint (for use in the control context). Use the
967 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
968 * bit 1, etc.
969 */
970unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
971{
972 return 1 << (xhci_get_endpoint_index(desc) + 1);
973}
974
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700975/* Find the flag for this endpoint (for use in the control context). Use the
976 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
977 * bit 1, etc.
978 */
979unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
980{
981 return 1 << (ep_index + 1);
982}
983
Sarah Sharpf94e01862009-04-27 19:58:38 -0700984/* Compute the last valid endpoint context index. Basically, this is the
985 * endpoint index plus one. For slot contexts with more than valid endpoint,
986 * we find the most significant bit set in the added contexts flags.
987 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
988 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
989 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700990unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -0700991{
992 return fls(added_ctxs) - 1;
993}
994
Sarah Sharpd0e96f52009-04-27 19:58:01 -0700995/* Returns 1 if the arguments are OK;
996 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
997 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800998static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -0700999 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1000 const char *func) {
1001 struct xhci_hcd *xhci;
1002 struct xhci_virt_device *virt_dev;
1003
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001004 if (!hcd || (check_ep && !ep) || !udev) {
1005 printk(KERN_DEBUG "xHCI %s called with invalid args\n",
1006 func);
1007 return -EINVAL;
1008 }
1009 if (!udev->parent) {
1010 printk(KERN_DEBUG "xHCI %s called for root hub\n",
1011 func);
1012 return 0;
1013 }
Andiry Xu64927732010-10-14 07:22:45 -07001014
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001015 xhci = hcd_to_xhci(hcd);
1016 if (xhci->xhc_state & XHCI_STATE_HALTED)
1017 return -ENODEV;
1018
Andiry Xu64927732010-10-14 07:22:45 -07001019 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001020 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Andiry Xu64927732010-10-14 07:22:45 -07001021 printk(KERN_DEBUG "xHCI %s called with unaddressed "
1022 "device\n", func);
1023 return -EINVAL;
1024 }
1025
1026 virt_dev = xhci->devs[udev->slot_id];
1027 if (virt_dev->udev != udev) {
1028 printk(KERN_DEBUG "xHCI %s called with udev and "
1029 "virt_dev does not match\n", func);
1030 return -EINVAL;
1031 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001032 }
Andiry Xu64927732010-10-14 07:22:45 -07001033
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001034 return 1;
1035}
1036
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001037static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001038 struct usb_device *udev, struct xhci_command *command,
1039 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001040
1041/*
1042 * Full speed devices may have a max packet size greater than 8 bytes, but the
1043 * USB core doesn't know that until it reads the first 8 bytes of the
1044 * descriptor. If the usb_device's max packet size changes after that point,
1045 * we need to issue an evaluate context command and wait on it.
1046 */
1047static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1048 unsigned int ep_index, struct urb *urb)
1049{
1050 struct xhci_container_ctx *in_ctx;
1051 struct xhci_container_ctx *out_ctx;
1052 struct xhci_input_control_ctx *ctrl_ctx;
1053 struct xhci_ep_ctx *ep_ctx;
1054 int max_packet_size;
1055 int hw_max_packet_size;
1056 int ret = 0;
1057
1058 out_ctx = xhci->devs[slot_id]->out_ctx;
1059 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001060 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001061 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001062 if (hw_max_packet_size != max_packet_size) {
1063 xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n");
1064 xhci_dbg(xhci, "Max packet size in usb_device = %d\n",
1065 max_packet_size);
1066 xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n",
1067 hw_max_packet_size);
1068 xhci_dbg(xhci, "Issuing evaluate context command.\n");
1069
1070 /* Set up the modified control endpoint 0 */
Sarah Sharp913a8a32009-09-04 10:53:13 -07001071 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1072 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001073 in_ctx = xhci->devs[slot_id]->in_ctx;
1074 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001075 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1076 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001077
1078 /* Set up the input context flags for the command */
1079 /* FIXME: This won't work if a non-default control endpoint
1080 * changes max packet sizes.
1081 */
1082 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001083 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001084 ctrl_ctx->drop_flags = 0;
1085
1086 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1087 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1088 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1089 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1090
Sarah Sharp913a8a32009-09-04 10:53:13 -07001091 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1092 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001093
1094 /* Clean up the input context for later use by bandwidth
1095 * functions.
1096 */
Matt Evans28ccd292011-03-29 13:40:46 +11001097 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001098 }
1099 return ret;
1100}
1101
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001102/*
1103 * non-error returns are a promise to giveback() the urb later
1104 * we drop ownership so next owner (or urb unlink) can get it
1105 */
1106int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1107{
1108 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001109 struct xhci_td *buffer;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001110 unsigned long flags;
1111 int ret = 0;
1112 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001113 struct urb_priv *urb_priv;
1114 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001115
Andiry Xu64927732010-10-14 07:22:45 -07001116 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1117 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001118 return -EINVAL;
1119
1120 slot_id = urb->dev->slot_id;
1121 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001122
Alan Stern541c7d42010-06-22 16:39:10 -04001123 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001124 if (!in_interrupt())
1125 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1126 ret = -ESHUTDOWN;
1127 goto exit;
1128 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001129
1130 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1131 size = urb->number_of_packets;
1132 else
1133 size = 1;
1134
1135 urb_priv = kzalloc(sizeof(struct urb_priv) +
1136 size * sizeof(struct xhci_td *), mem_flags);
1137 if (!urb_priv)
1138 return -ENOMEM;
1139
Andiry Xu2ffdea22011-09-02 11:05:57 -07001140 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1141 if (!buffer) {
1142 kfree(urb_priv);
1143 return -ENOMEM;
1144 }
1145
Andiry Xu8e51adc2010-07-22 15:23:31 -07001146 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001147 urb_priv->td[i] = buffer;
1148 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001149 }
1150
1151 urb_priv->length = size;
1152 urb_priv->td_cnt = 0;
1153 urb->hcpriv = urb_priv;
1154
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001155 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1156 /* Check to see if the max packet size for the default control
1157 * endpoint changed during FS device enumeration
1158 */
1159 if (urb->dev->speed == USB_SPEED_FULL) {
1160 ret = xhci_check_maxpacket(xhci, slot_id,
1161 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001162 if (ret < 0) {
1163 xhci_urb_free_priv(xhci, urb_priv);
1164 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001165 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001166 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001167 }
1168
Sarah Sharpb11069f2009-07-27 12:03:23 -07001169 /* We have a spinlock and interrupts disabled, so we must pass
1170 * atomic context to this function, which may allocate memory.
1171 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001172 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001173 if (xhci->xhc_state & XHCI_STATE_DYING)
1174 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001175 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001176 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001177 if (ret)
1178 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001179 spin_unlock_irqrestore(&xhci->lock, flags);
1180 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1181 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001182 if (xhci->xhc_state & XHCI_STATE_DYING)
1183 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001184 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1185 EP_GETTING_STREAMS) {
1186 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1187 "is transitioning to using streams.\n");
1188 ret = -EINVAL;
1189 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1190 EP_GETTING_NO_STREAMS) {
1191 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1192 "is transitioning to "
1193 "not having streams.\n");
1194 ret = -EINVAL;
1195 } else {
1196 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1197 slot_id, ep_index);
1198 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001199 if (ret)
1200 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001201 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001202 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1203 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001204 if (xhci->xhc_state & XHCI_STATE_DYING)
1205 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001206 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1207 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001208 if (ret)
1209 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001210 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001211 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001212 spin_lock_irqsave(&xhci->lock, flags);
1213 if (xhci->xhc_state & XHCI_STATE_DYING)
1214 goto dying;
1215 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1216 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001217 if (ret)
1218 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001219 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001220 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001221exit:
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001222 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001223dying:
1224 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1225 "non-responsive xHCI host.\n",
1226 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001227 ret = -ESHUTDOWN;
1228free_priv:
1229 xhci_urb_free_priv(xhci, urb_priv);
1230 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001231 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001232 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001233}
1234
Sarah Sharp021bff92010-07-29 22:12:20 -07001235/* Get the right ring for the given URB.
1236 * If the endpoint supports streams, boundary check the URB's stream ID.
1237 * If the endpoint doesn't support streams, return the singular endpoint ring.
1238 */
1239static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1240 struct urb *urb)
1241{
1242 unsigned int slot_id;
1243 unsigned int ep_index;
1244 unsigned int stream_id;
1245 struct xhci_virt_ep *ep;
1246
1247 slot_id = urb->dev->slot_id;
1248 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1249 stream_id = urb->stream_id;
1250 ep = &xhci->devs[slot_id]->eps[ep_index];
1251 /* Common case: no streams */
1252 if (!(ep->ep_state & EP_HAS_STREAMS))
1253 return ep->ring;
1254
1255 if (stream_id == 0) {
1256 xhci_warn(xhci,
1257 "WARN: Slot ID %u, ep index %u has streams, "
1258 "but URB has no stream ID.\n",
1259 slot_id, ep_index);
1260 return NULL;
1261 }
1262
1263 if (stream_id < ep->stream_info->num_streams)
1264 return ep->stream_info->stream_rings[stream_id];
1265
1266 xhci_warn(xhci,
1267 "WARN: Slot ID %u, ep index %u has "
1268 "stream IDs 1 to %u allocated, "
1269 "but stream ID %u is requested.\n",
1270 slot_id, ep_index,
1271 ep->stream_info->num_streams - 1,
1272 stream_id);
1273 return NULL;
1274}
1275
Sarah Sharpae636742009-04-29 19:02:31 -07001276/*
1277 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1278 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1279 * should pick up where it left off in the TD, unless a Set Transfer Ring
1280 * Dequeue Pointer is issued.
1281 *
1282 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1283 * the ring. Since the ring is a contiguous structure, they can't be physically
1284 * removed. Instead, there are two options:
1285 *
1286 * 1) If the HC is in the middle of processing the URB to be canceled, we
1287 * simply move the ring's dequeue pointer past those TRBs using the Set
1288 * Transfer Ring Dequeue Pointer command. This will be the common case,
1289 * when drivers timeout on the last submitted URB and attempt to cancel.
1290 *
1291 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1292 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1293 * HC will need to invalidate the any TRBs it has cached after the stop
1294 * endpoint command, as noted in the xHCI 0.95 errata.
1295 *
1296 * 3) The TD may have completed by the time the Stop Endpoint Command
1297 * completes, so software needs to handle that case too.
1298 *
1299 * This function should protect against the TD enqueueing code ringing the
1300 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1301 * It also needs to account for multiple cancellations on happening at the same
1302 * time for the same endpoint.
1303 *
1304 * Note that this function can be called in any context, or so says
1305 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001306 */
1307int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1308{
Sarah Sharpae636742009-04-29 19:02:31 -07001309 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001310 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001311 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001312 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001313 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001314 struct xhci_td *td;
1315 unsigned int ep_index;
1316 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001317 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07001318
1319 xhci = hcd_to_xhci(hcd);
1320 spin_lock_irqsave(&xhci->lock, flags);
1321 /* Make sure the URB hasn't completed or been unlinked already */
1322 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1323 if (ret || !urb->hcpriv)
1324 goto done;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001325 temp = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001326 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001327 xhci_dbg(xhci, "HW died, freeing TD.\n");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001328 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001329 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1330 td = urb_priv->td[i];
1331 if (!list_empty(&td->td_list))
1332 list_del_init(&td->td_list);
1333 if (!list_empty(&td->cancelled_td_list))
1334 list_del_init(&td->cancelled_td_list);
1335 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001336
1337 usb_hcd_unlink_urb_from_ep(hcd, urb);
1338 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001339 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001340 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001341 return ret;
1342 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001343 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1344 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001345 xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on "
1346 "non-responsive xHCI host.\n",
1347 urb->ep->desc.bEndpointAddress, urb);
1348 /* Let the stop endpoint command watchdog timer (which set this
1349 * state) finish cleaning up the endpoint TD lists. We must
1350 * have caught it in the middle of dropping a lock and giving
1351 * back an URB.
1352 */
1353 goto done;
1354 }
Sarah Sharpae636742009-04-29 19:02:31 -07001355
Sarah Sharpae636742009-04-29 19:02:31 -07001356 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001357 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001358 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1359 if (!ep_ring) {
1360 ret = -EINVAL;
1361 goto done;
1362 }
1363
Andiry Xu8e51adc2010-07-22 15:23:31 -07001364 urb_priv = urb->hcpriv;
Sarah Sharp79688ac2011-12-19 16:56:04 -08001365 i = urb_priv->td_cnt;
1366 if (i < urb_priv->length)
1367 xhci_dbg(xhci, "Cancel URB %p, dev %s, ep 0x%x, "
1368 "starting at offset 0x%llx\n",
1369 urb, urb->dev->devpath,
1370 urb->ep->desc.bEndpointAddress,
1371 (unsigned long long) xhci_trb_virt_to_dma(
1372 urb_priv->td[i]->start_seg,
1373 urb_priv->td[i]->first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001374
Sarah Sharp79688ac2011-12-19 16:56:04 -08001375 for (; i < urb_priv->length; i++) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001376 td = urb_priv->td[i];
1377 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1378 }
1379
Sarah Sharpae636742009-04-29 19:02:31 -07001380 /* Queue a stop endpoint command, but only if this is
1381 * the first cancellation to be handled.
1382 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001383 if (!(ep->ep_state & EP_HALT_PENDING)) {
1384 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001385 ep->stop_cmds_pending++;
1386 ep->stop_cmd_timer.expires = jiffies +
1387 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1388 add_timer(&ep->stop_cmd_timer);
Andiry Xube88fe42010-10-14 07:22:57 -07001389 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001390 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001391 }
1392done:
1393 spin_unlock_irqrestore(&xhci->lock, flags);
1394 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001395}
1396
Sarah Sharpf94e01862009-04-27 19:58:38 -07001397/* Drop an endpoint from a new bandwidth configuration for this device.
1398 * Only one call to this function is allowed per endpoint before
1399 * check_bandwidth() or reset_bandwidth() must be called.
1400 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1401 * add the endpoint to the schedule with possibly new parameters denoted by a
1402 * different endpoint descriptor in usb_host_endpoint.
1403 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1404 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001405 *
1406 * The USB core will not allow URBs to be queued to an endpoint that is being
1407 * disabled, so there's no need for mutual exclusion to protect
1408 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001409 */
1410int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1411 struct usb_host_endpoint *ep)
1412{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001413 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001414 struct xhci_container_ctx *in_ctx, *out_ctx;
1415 struct xhci_input_control_ctx *ctrl_ctx;
1416 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001417 unsigned int last_ctx;
1418 unsigned int ep_index;
1419 struct xhci_ep_ctx *ep_ctx;
1420 u32 drop_flag;
1421 u32 new_add_flags, new_drop_flags, new_slot_info;
1422 int ret;
1423
Andiry Xu64927732010-10-14 07:22:45 -07001424 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001425 if (ret <= 0)
1426 return ret;
1427 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001428 if (xhci->xhc_state & XHCI_STATE_DYING)
1429 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001430
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001431 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001432 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1433 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1434 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1435 __func__, drop_flag);
1436 return 0;
1437 }
1438
Sarah Sharpf94e01862009-04-27 19:58:38 -07001439 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001440 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1441 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001442 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001443 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001444 /* If the HC already knows the endpoint is disabled,
1445 * or the HCD has noted it is disabled, ignore this request
1446 */
Matt Evansf5960b62011-06-01 10:22:55 +10001447 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1448 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001449 le32_to_cpu(ctrl_ctx->drop_flags) &
1450 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001451 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1452 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001453 return 0;
1454 }
1455
Matt Evans28ccd292011-03-29 13:40:46 +11001456 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1457 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001458
Matt Evans28ccd292011-03-29 13:40:46 +11001459 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1460 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001461
Matt Evans28ccd292011-03-29 13:40:46 +11001462 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
John Yound115b042009-07-27 12:05:15 -07001463 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001464 /* Update the last valid endpoint context, if we deleted the last one */
Matt Evans28ccd292011-03-29 13:40:46 +11001465 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1466 LAST_CTX(last_ctx)) {
1467 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1468 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001469 }
Matt Evans28ccd292011-03-29 13:40:46 +11001470 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001471
1472 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1473
Sarah Sharpf94e01862009-04-27 19:58:38 -07001474 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1475 (unsigned int) ep->desc.bEndpointAddress,
1476 udev->slot_id,
1477 (unsigned int) new_drop_flags,
1478 (unsigned int) new_add_flags,
1479 (unsigned int) new_slot_info);
1480 return 0;
1481}
1482
1483/* Add an endpoint to a new possible bandwidth configuration for this device.
1484 * Only one call to this function is allowed per endpoint before
1485 * check_bandwidth() or reset_bandwidth() must be called.
1486 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1487 * add the endpoint to the schedule with possibly new parameters denoted by a
1488 * different endpoint descriptor in usb_host_endpoint.
1489 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1490 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001491 *
1492 * The USB core will not allow URBs to be queued to an endpoint until the
1493 * configuration or alt setting is installed in the device, so there's no need
1494 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001495 */
1496int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1497 struct usb_host_endpoint *ep)
1498{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001499 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001500 struct xhci_container_ctx *in_ctx, *out_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001501 unsigned int ep_index;
1502 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001503 struct xhci_slot_ctx *slot_ctx;
1504 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001505 u32 added_ctxs;
1506 unsigned int last_ctx;
1507 u32 new_add_flags, new_drop_flags, new_slot_info;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001508 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001509 int ret = 0;
1510
Andiry Xu64927732010-10-14 07:22:45 -07001511 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001512 if (ret <= 0) {
1513 /* So we won't queue a reset ep command for a root hub */
1514 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001515 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001516 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001517 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001518 if (xhci->xhc_state & XHCI_STATE_DYING)
1519 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001520
1521 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1522 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1523 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1524 /* FIXME when we have to issue an evaluate endpoint command to
1525 * deal with ep0 max packet size changing once we get the
1526 * descriptors
1527 */
1528 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1529 __func__, added_ctxs);
1530 return 0;
1531 }
1532
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001533 virt_dev = xhci->devs[udev->slot_id];
1534 in_ctx = virt_dev->in_ctx;
1535 out_ctx = virt_dev->out_ctx;
John Yound115b042009-07-27 12:05:15 -07001536 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001537 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001538 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001539
1540 /* If this endpoint is already in use, and the upper layers are trying
1541 * to add it again without dropping it, reject the addition.
1542 */
1543 if (virt_dev->eps[ep_index].ring &&
1544 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1545 xhci_get_endpoint_flag(&ep->desc))) {
1546 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1547 "without dropping it.\n",
1548 (unsigned int) ep->desc.bEndpointAddress);
1549 return -EINVAL;
1550 }
1551
Sarah Sharpf94e01862009-04-27 19:58:38 -07001552 /* If the HCD has already noted the endpoint is enabled,
1553 * ignore this request.
1554 */
Matt Evans28ccd292011-03-29 13:40:46 +11001555 if (le32_to_cpu(ctrl_ctx->add_flags) &
1556 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001557 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1558 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001559 return 0;
1560 }
1561
Sarah Sharpf88ba782009-05-14 11:44:22 -07001562 /*
1563 * Configuration and alternate setting changes must be done in
1564 * process context, not interrupt context (or so documenation
1565 * for usb_set_interface() and usb_set_configuration() claim).
1566 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001567 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001568 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1569 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001570 return -ENOMEM;
1571 }
1572
Matt Evans28ccd292011-03-29 13:40:46 +11001573 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1574 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001575
1576 /* If xhci_endpoint_disable() was called for this endpoint, but the
1577 * xHC hasn't been notified yet through the check_bandwidth() call,
1578 * this re-adds a new state for the endpoint from the new endpoint
1579 * descriptors. We must drop and re-add this endpoint, so we leave the
1580 * drop flags alone.
1581 */
Matt Evans28ccd292011-03-29 13:40:46 +11001582 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001583
John Yound115b042009-07-27 12:05:15 -07001584 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001585 /* Update the last valid endpoint context, if we just added one past */
Matt Evans28ccd292011-03-29 13:40:46 +11001586 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1587 LAST_CTX(last_ctx)) {
1588 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1589 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001590 }
Matt Evans28ccd292011-03-29 13:40:46 +11001591 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001592
Sarah Sharpa1587d92009-07-27 12:03:15 -07001593 /* Store the usb_device pointer for later use */
1594 ep->hcpriv = udev;
1595
Sarah Sharpf94e01862009-04-27 19:58:38 -07001596 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1597 (unsigned int) ep->desc.bEndpointAddress,
1598 udev->slot_id,
1599 (unsigned int) new_drop_flags,
1600 (unsigned int) new_add_flags,
1601 (unsigned int) new_slot_info);
1602 return 0;
1603}
1604
John Yound115b042009-07-27 12:05:15 -07001605static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001606{
John Yound115b042009-07-27 12:05:15 -07001607 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001608 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001609 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001610 int i;
1611
1612 /* When a device's add flag and drop flag are zero, any subsequent
1613 * configure endpoint command will leave that endpoint's state
1614 * untouched. Make sure we don't leave any old state in the input
1615 * endpoint contexts.
1616 */
John Yound115b042009-07-27 12:05:15 -07001617 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1618 ctrl_ctx->drop_flags = 0;
1619 ctrl_ctx->add_flags = 0;
1620 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001621 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001622 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001623 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001624 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001625 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001626 ep_ctx->ep_info = 0;
1627 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001628 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001629 ep_ctx->tx_info = 0;
1630 }
1631}
1632
Sarah Sharpf2217e82009-08-07 14:04:43 -07001633static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001634 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001635{
1636 int ret;
1637
Sarah Sharp913a8a32009-09-04 10:53:13 -07001638 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001639 case COMP_ENOMEM:
1640 dev_warn(&udev->dev, "Not enough host controller resources "
1641 "for new device state.\n");
1642 ret = -ENOMEM;
1643 /* FIXME: can we allocate more resources for the HC? */
1644 break;
1645 case COMP_BW_ERR:
Hans de Goede71d85722012-01-04 23:29:18 +01001646 case COMP_2ND_BW_ERR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001647 dev_warn(&udev->dev, "Not enough bandwidth "
1648 "for new device state.\n");
1649 ret = -ENOSPC;
1650 /* FIXME: can we go back to the old state? */
1651 break;
1652 case COMP_TRB_ERR:
1653 /* the HCD set up something wrong */
1654 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1655 "add flag = 1, "
1656 "and endpoint is not disabled.\n");
1657 ret = -EINVAL;
1658 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001659 case COMP_DEV_ERR:
1660 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1661 "configure command.\n");
1662 ret = -ENODEV;
1663 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001664 case COMP_SUCCESS:
1665 dev_dbg(&udev->dev, "Successful Endpoint Configure command\n");
1666 ret = 0;
1667 break;
1668 default:
1669 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001670 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001671 ret = -EINVAL;
1672 break;
1673 }
1674 return ret;
1675}
1676
1677static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001678 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001679{
1680 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001681 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001682
Sarah Sharp913a8a32009-09-04 10:53:13 -07001683 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001684 case COMP_EINVAL:
1685 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1686 "context command.\n");
1687 ret = -EINVAL;
1688 break;
1689 case COMP_EBADSLT:
1690 dev_warn(&udev->dev, "WARN: slot not enabled for"
1691 "evaluate context command.\n");
1692 case COMP_CTX_STATE:
1693 dev_warn(&udev->dev, "WARN: invalid context state for "
1694 "evaluate context command.\n");
1695 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1696 ret = -EINVAL;
1697 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001698 case COMP_DEV_ERR:
1699 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
1700 "context command.\n");
1701 ret = -ENODEV;
1702 break;
Alex He1bb73a82011-05-05 18:14:12 +08001703 case COMP_MEL_ERR:
1704 /* Max Exit Latency too large error */
1705 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1706 ret = -EINVAL;
1707 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001708 case COMP_SUCCESS:
1709 dev_dbg(&udev->dev, "Successful evaluate context command\n");
1710 ret = 0;
1711 break;
1712 default:
1713 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001714 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001715 ret = -EINVAL;
1716 break;
1717 }
1718 return ret;
1719}
1720
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001721static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
1722 struct xhci_container_ctx *in_ctx)
1723{
1724 struct xhci_input_control_ctx *ctrl_ctx;
1725 u32 valid_add_flags;
1726 u32 valid_drop_flags;
1727
1728 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
1729 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1730 * (bit 1). The default control endpoint is added during the Address
1731 * Device command and is never removed until the slot is disabled.
1732 */
1733 valid_add_flags = ctrl_ctx->add_flags >> 2;
1734 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1735
1736 /* Use hweight32 to count the number of ones in the add flags, or
1737 * number of endpoints added. Don't count endpoints that are changed
1738 * (both added and dropped).
1739 */
1740 return hweight32(valid_add_flags) -
1741 hweight32(valid_add_flags & valid_drop_flags);
1742}
1743
1744static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
1745 struct xhci_container_ctx *in_ctx)
1746{
1747 struct xhci_input_control_ctx *ctrl_ctx;
1748 u32 valid_add_flags;
1749 u32 valid_drop_flags;
1750
1751 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
1752 valid_add_flags = ctrl_ctx->add_flags >> 2;
1753 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1754
1755 return hweight32(valid_drop_flags) -
1756 hweight32(valid_add_flags & valid_drop_flags);
1757}
1758
1759/*
1760 * We need to reserve the new number of endpoints before the configure endpoint
1761 * command completes. We can't subtract the dropped endpoints from the number
1762 * of active endpoints until the command completes because we can oversubscribe
1763 * the host in this case:
1764 *
1765 * - the first configure endpoint command drops more endpoints than it adds
1766 * - a second configure endpoint command that adds more endpoints is queued
1767 * - the first configure endpoint command fails, so the config is unchanged
1768 * - the second command may succeed, even though there isn't enough resources
1769 *
1770 * Must be called with xhci->lock held.
1771 */
1772static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
1773 struct xhci_container_ctx *in_ctx)
1774{
1775 u32 added_eps;
1776
1777 added_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
1778 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
1779 xhci_dbg(xhci, "Not enough ep ctxs: "
1780 "%u active, need to add %u, limit is %u.\n",
1781 xhci->num_active_eps, added_eps,
1782 xhci->limit_active_eps);
1783 return -ENOMEM;
1784 }
1785 xhci->num_active_eps += added_eps;
1786 xhci_dbg(xhci, "Adding %u ep ctxs, %u now active.\n", added_eps,
1787 xhci->num_active_eps);
1788 return 0;
1789}
1790
1791/*
1792 * The configure endpoint was failed by the xHC for some other reason, so we
1793 * need to revert the resources that failed configuration would have used.
1794 *
1795 * Must be called with xhci->lock held.
1796 */
1797static void xhci_free_host_resources(struct xhci_hcd *xhci,
1798 struct xhci_container_ctx *in_ctx)
1799{
1800 u32 num_failed_eps;
1801
1802 num_failed_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
1803 xhci->num_active_eps -= num_failed_eps;
1804 xhci_dbg(xhci, "Removing %u failed ep ctxs, %u now active.\n",
1805 num_failed_eps,
1806 xhci->num_active_eps);
1807}
1808
1809/*
1810 * Now that the command has completed, clean up the active endpoint count by
1811 * subtracting out the endpoints that were dropped (but not changed).
1812 *
1813 * Must be called with xhci->lock held.
1814 */
1815static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
1816 struct xhci_container_ctx *in_ctx)
1817{
1818 u32 num_dropped_eps;
1819
1820 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, in_ctx);
1821 xhci->num_active_eps -= num_dropped_eps;
1822 if (num_dropped_eps)
1823 xhci_dbg(xhci, "Removing %u dropped ep ctxs, %u now active.\n",
1824 num_dropped_eps,
1825 xhci->num_active_eps);
1826}
1827
Sarah Sharpc29eea62011-09-02 11:05:52 -07001828unsigned int xhci_get_block_size(struct usb_device *udev)
1829{
1830 switch (udev->speed) {
1831 case USB_SPEED_LOW:
1832 case USB_SPEED_FULL:
1833 return FS_BLOCK;
1834 case USB_SPEED_HIGH:
1835 return HS_BLOCK;
1836 case USB_SPEED_SUPER:
1837 return SS_BLOCK;
1838 case USB_SPEED_UNKNOWN:
1839 case USB_SPEED_WIRELESS:
1840 default:
1841 /* Should never happen */
1842 return 1;
1843 }
1844}
1845
1846unsigned int xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
1847{
1848 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1849 return LS_OVERHEAD;
1850 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1851 return FS_OVERHEAD;
1852 return HS_OVERHEAD;
1853}
1854
1855/* If we are changing a LS/FS device under a HS hub,
1856 * make sure (if we are activating a new TT) that the HS bus has enough
1857 * bandwidth for this new TT.
1858 */
1859static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
1860 struct xhci_virt_device *virt_dev,
1861 int old_active_eps)
1862{
1863 struct xhci_interval_bw_table *bw_table;
1864 struct xhci_tt_bw_info *tt_info;
1865
1866 /* Find the bandwidth table for the root port this TT is attached to. */
1867 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
1868 tt_info = virt_dev->tt_info;
1869 /* If this TT already had active endpoints, the bandwidth for this TT
1870 * has already been added. Removing all periodic endpoints (and thus
1871 * making the TT enactive) will only decrease the bandwidth used.
1872 */
1873 if (old_active_eps)
1874 return 0;
1875 if (old_active_eps == 0 && tt_info->active_eps != 0) {
1876 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
1877 return -ENOMEM;
1878 return 0;
1879 }
1880 /* Not sure why we would have no new active endpoints...
1881 *
1882 * Maybe because of an Evaluate Context change for a hub update or a
1883 * control endpoint 0 max packet size change?
1884 * FIXME: skip the bandwidth calculation in that case.
1885 */
1886 return 0;
1887}
1888
Sarah Sharp2b698992011-09-13 16:41:13 -07001889static int xhci_check_ss_bw(struct xhci_hcd *xhci,
1890 struct xhci_virt_device *virt_dev)
1891{
1892 unsigned int bw_reserved;
1893
1894 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
1895 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
1896 return -ENOMEM;
1897
1898 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
1899 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
1900 return -ENOMEM;
1901
1902 return 0;
1903}
1904
Sarah Sharpc29eea62011-09-02 11:05:52 -07001905/*
1906 * This algorithm is a very conservative estimate of the worst-case scheduling
1907 * scenario for any one interval. The hardware dynamically schedules the
1908 * packets, so we can't tell which microframe could be the limiting factor in
1909 * the bandwidth scheduling. This only takes into account periodic endpoints.
1910 *
1911 * Obviously, we can't solve an NP complete problem to find the minimum worst
1912 * case scenario. Instead, we come up with an estimate that is no less than
1913 * the worst case bandwidth used for any one microframe, but may be an
1914 * over-estimate.
1915 *
1916 * We walk the requirements for each endpoint by interval, starting with the
1917 * smallest interval, and place packets in the schedule where there is only one
1918 * possible way to schedule packets for that interval. In order to simplify
1919 * this algorithm, we record the largest max packet size for each interval, and
1920 * assume all packets will be that size.
1921 *
1922 * For interval 0, we obviously must schedule all packets for each interval.
1923 * The bandwidth for interval 0 is just the amount of data to be transmitted
1924 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
1925 * the number of packets).
1926 *
1927 * For interval 1, we have two possible microframes to schedule those packets
1928 * in. For this algorithm, if we can schedule the same number of packets for
1929 * each possible scheduling opportunity (each microframe), we will do so. The
1930 * remaining number of packets will be saved to be transmitted in the gaps in
1931 * the next interval's scheduling sequence.
1932 *
1933 * As we move those remaining packets to be scheduled with interval 2 packets,
1934 * we have to double the number of remaining packets to transmit. This is
1935 * because the intervals are actually powers of 2, and we would be transmitting
1936 * the previous interval's packets twice in this interval. We also have to be
1937 * sure that when we look at the largest max packet size for this interval, we
1938 * also look at the largest max packet size for the remaining packets and take
1939 * the greater of the two.
1940 *
1941 * The algorithm continues to evenly distribute packets in each scheduling
1942 * opportunity, and push the remaining packets out, until we get to the last
1943 * interval. Then those packets and their associated overhead are just added
1944 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07001945 */
1946static int xhci_check_bw_table(struct xhci_hcd *xhci,
1947 struct xhci_virt_device *virt_dev,
1948 int old_active_eps)
1949{
Sarah Sharpc29eea62011-09-02 11:05:52 -07001950 unsigned int bw_reserved;
1951 unsigned int max_bandwidth;
1952 unsigned int bw_used;
1953 unsigned int block_size;
1954 struct xhci_interval_bw_table *bw_table;
1955 unsigned int packet_size = 0;
1956 unsigned int overhead = 0;
1957 unsigned int packets_transmitted = 0;
1958 unsigned int packets_remaining = 0;
1959 unsigned int i;
1960
Sarah Sharp2b698992011-09-13 16:41:13 -07001961 if (virt_dev->udev->speed == USB_SPEED_SUPER)
1962 return xhci_check_ss_bw(xhci, virt_dev);
1963
Sarah Sharpc29eea62011-09-02 11:05:52 -07001964 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
1965 max_bandwidth = HS_BW_LIMIT;
1966 /* Convert percent of bus BW reserved to blocks reserved */
1967 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
1968 } else {
1969 max_bandwidth = FS_BW_LIMIT;
1970 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
1971 }
1972
1973 bw_table = virt_dev->bw_table;
1974 /* We need to translate the max packet size and max ESIT payloads into
1975 * the units the hardware uses.
1976 */
1977 block_size = xhci_get_block_size(virt_dev->udev);
1978
1979 /* If we are manipulating a LS/FS device under a HS hub, double check
1980 * that the HS bus has enough bandwidth if we are activing a new TT.
1981 */
1982 if (virt_dev->tt_info) {
1983 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
1984 virt_dev->real_port);
1985 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
1986 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
1987 "newly activated TT.\n");
1988 return -ENOMEM;
1989 }
1990 xhci_dbg(xhci, "Recalculating BW for TT slot %u port %u\n",
1991 virt_dev->tt_info->slot_id,
1992 virt_dev->tt_info->ttport);
1993 } else {
1994 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
1995 virt_dev->real_port);
1996 }
1997
1998 /* Add in how much bandwidth will be used for interval zero, or the
1999 * rounded max ESIT payload + number of packets * largest overhead.
2000 */
2001 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2002 bw_table->interval_bw[0].num_packets *
2003 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2004
2005 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2006 unsigned int bw_added;
2007 unsigned int largest_mps;
2008 unsigned int interval_overhead;
2009
2010 /*
2011 * How many packets could we transmit in this interval?
2012 * If packets didn't fit in the previous interval, we will need
2013 * to transmit that many packets twice within this interval.
2014 */
2015 packets_remaining = 2 * packets_remaining +
2016 bw_table->interval_bw[i].num_packets;
2017
2018 /* Find the largest max packet size of this or the previous
2019 * interval.
2020 */
2021 if (list_empty(&bw_table->interval_bw[i].endpoints))
2022 largest_mps = 0;
2023 else {
2024 struct xhci_virt_ep *virt_ep;
2025 struct list_head *ep_entry;
2026
2027 ep_entry = bw_table->interval_bw[i].endpoints.next;
2028 virt_ep = list_entry(ep_entry,
2029 struct xhci_virt_ep, bw_endpoint_list);
2030 /* Convert to blocks, rounding up */
2031 largest_mps = DIV_ROUND_UP(
2032 virt_ep->bw_info.max_packet_size,
2033 block_size);
2034 }
2035 if (largest_mps > packet_size)
2036 packet_size = largest_mps;
2037
2038 /* Use the larger overhead of this or the previous interval. */
2039 interval_overhead = xhci_get_largest_overhead(
2040 &bw_table->interval_bw[i]);
2041 if (interval_overhead > overhead)
2042 overhead = interval_overhead;
2043
2044 /* How many packets can we evenly distribute across
2045 * (1 << (i + 1)) possible scheduling opportunities?
2046 */
2047 packets_transmitted = packets_remaining >> (i + 1);
2048
2049 /* Add in the bandwidth used for those scheduled packets */
2050 bw_added = packets_transmitted * (overhead + packet_size);
2051
2052 /* How many packets do we have remaining to transmit? */
2053 packets_remaining = packets_remaining % (1 << (i + 1));
2054
2055 /* What largest max packet size should those packets have? */
2056 /* If we've transmitted all packets, don't carry over the
2057 * largest packet size.
2058 */
2059 if (packets_remaining == 0) {
2060 packet_size = 0;
2061 overhead = 0;
2062 } else if (packets_transmitted > 0) {
2063 /* Otherwise if we do have remaining packets, and we've
2064 * scheduled some packets in this interval, take the
2065 * largest max packet size from endpoints with this
2066 * interval.
2067 */
2068 packet_size = largest_mps;
2069 overhead = interval_overhead;
2070 }
2071 /* Otherwise carry over packet_size and overhead from the last
2072 * time we had a remainder.
2073 */
2074 bw_used += bw_added;
2075 if (bw_used > max_bandwidth) {
2076 xhci_warn(xhci, "Not enough bandwidth. "
2077 "Proposed: %u, Max: %u\n",
2078 bw_used, max_bandwidth);
2079 return -ENOMEM;
2080 }
2081 }
2082 /*
2083 * Ok, we know we have some packets left over after even-handedly
2084 * scheduling interval 15. We don't know which microframes they will
2085 * fit into, so we over-schedule and say they will be scheduled every
2086 * microframe.
2087 */
2088 if (packets_remaining > 0)
2089 bw_used += overhead + packet_size;
2090
2091 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2092 unsigned int port_index = virt_dev->real_port - 1;
2093
2094 /* OK, we're manipulating a HS device attached to a
2095 * root port bandwidth domain. Include the number of active TTs
2096 * in the bandwidth used.
2097 */
2098 bw_used += TT_HS_OVERHEAD *
2099 xhci->rh_bw[port_index].num_active_tts;
2100 }
2101
2102 xhci_dbg(xhci, "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2103 "Available: %u " "percent\n",
2104 bw_used, max_bandwidth, bw_reserved,
2105 (max_bandwidth - bw_used - bw_reserved) * 100 /
2106 max_bandwidth);
2107
2108 bw_used += bw_reserved;
2109 if (bw_used > max_bandwidth) {
2110 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2111 bw_used, max_bandwidth);
2112 return -ENOMEM;
2113 }
2114
2115 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002116 return 0;
2117}
2118
2119static bool xhci_is_async_ep(unsigned int ep_type)
2120{
2121 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2122 ep_type != ISOC_IN_EP &&
2123 ep_type != INT_IN_EP);
2124}
2125
Sarah Sharp2b698992011-09-13 16:41:13 -07002126static bool xhci_is_sync_in_ep(unsigned int ep_type)
2127{
2128 return (ep_type == ISOC_IN_EP || ep_type != INT_IN_EP);
2129}
2130
2131static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2132{
2133 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2134
2135 if (ep_bw->ep_interval == 0)
2136 return SS_OVERHEAD_BURST +
2137 (ep_bw->mult * ep_bw->num_packets *
2138 (SS_OVERHEAD + mps));
2139 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2140 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2141 1 << ep_bw->ep_interval);
2142
2143}
2144
Sarah Sharp2e279802011-09-02 11:05:50 -07002145void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2146 struct xhci_bw_info *ep_bw,
2147 struct xhci_interval_bw_table *bw_table,
2148 struct usb_device *udev,
2149 struct xhci_virt_ep *virt_ep,
2150 struct xhci_tt_bw_info *tt_info)
2151{
2152 struct xhci_interval_bw *interval_bw;
2153 int normalized_interval;
2154
Sarah Sharp2b698992011-09-13 16:41:13 -07002155 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002156 return;
2157
Sarah Sharp2b698992011-09-13 16:41:13 -07002158 if (udev->speed == USB_SPEED_SUPER) {
2159 if (xhci_is_sync_in_ep(ep_bw->type))
2160 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2161 xhci_get_ss_bw_consumed(ep_bw);
2162 else
2163 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2164 xhci_get_ss_bw_consumed(ep_bw);
2165 return;
2166 }
2167
2168 /* SuperSpeed endpoints never get added to intervals in the table, so
2169 * this check is only valid for HS/FS/LS devices.
2170 */
2171 if (list_empty(&virt_ep->bw_endpoint_list))
2172 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002173 /* For LS/FS devices, we need to translate the interval expressed in
2174 * microframes to frames.
2175 */
2176 if (udev->speed == USB_SPEED_HIGH)
2177 normalized_interval = ep_bw->ep_interval;
2178 else
2179 normalized_interval = ep_bw->ep_interval - 3;
2180
2181 if (normalized_interval == 0)
2182 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2183 interval_bw = &bw_table->interval_bw[normalized_interval];
2184 interval_bw->num_packets -= ep_bw->num_packets;
2185 switch (udev->speed) {
2186 case USB_SPEED_LOW:
2187 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2188 break;
2189 case USB_SPEED_FULL:
2190 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2191 break;
2192 case USB_SPEED_HIGH:
2193 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2194 break;
2195 case USB_SPEED_SUPER:
2196 case USB_SPEED_UNKNOWN:
2197 case USB_SPEED_WIRELESS:
2198 /* Should never happen because only LS/FS/HS endpoints will get
2199 * added to the endpoint list.
2200 */
2201 return;
2202 }
2203 if (tt_info)
2204 tt_info->active_eps -= 1;
2205 list_del_init(&virt_ep->bw_endpoint_list);
2206}
2207
2208static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2209 struct xhci_bw_info *ep_bw,
2210 struct xhci_interval_bw_table *bw_table,
2211 struct usb_device *udev,
2212 struct xhci_virt_ep *virt_ep,
2213 struct xhci_tt_bw_info *tt_info)
2214{
2215 struct xhci_interval_bw *interval_bw;
2216 struct xhci_virt_ep *smaller_ep;
2217 int normalized_interval;
2218
2219 if (xhci_is_async_ep(ep_bw->type))
2220 return;
2221
Sarah Sharp2b698992011-09-13 16:41:13 -07002222 if (udev->speed == USB_SPEED_SUPER) {
2223 if (xhci_is_sync_in_ep(ep_bw->type))
2224 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2225 xhci_get_ss_bw_consumed(ep_bw);
2226 else
2227 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2228 xhci_get_ss_bw_consumed(ep_bw);
2229 return;
2230 }
2231
Sarah Sharp2e279802011-09-02 11:05:50 -07002232 /* For LS/FS devices, we need to translate the interval expressed in
2233 * microframes to frames.
2234 */
2235 if (udev->speed == USB_SPEED_HIGH)
2236 normalized_interval = ep_bw->ep_interval;
2237 else
2238 normalized_interval = ep_bw->ep_interval - 3;
2239
2240 if (normalized_interval == 0)
2241 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2242 interval_bw = &bw_table->interval_bw[normalized_interval];
2243 interval_bw->num_packets += ep_bw->num_packets;
2244 switch (udev->speed) {
2245 case USB_SPEED_LOW:
2246 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2247 break;
2248 case USB_SPEED_FULL:
2249 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2250 break;
2251 case USB_SPEED_HIGH:
2252 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2253 break;
2254 case USB_SPEED_SUPER:
2255 case USB_SPEED_UNKNOWN:
2256 case USB_SPEED_WIRELESS:
2257 /* Should never happen because only LS/FS/HS endpoints will get
2258 * added to the endpoint list.
2259 */
2260 return;
2261 }
2262
2263 if (tt_info)
2264 tt_info->active_eps += 1;
2265 /* Insert the endpoint into the list, largest max packet size first. */
2266 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2267 bw_endpoint_list) {
2268 if (ep_bw->max_packet_size >=
2269 smaller_ep->bw_info.max_packet_size) {
2270 /* Add the new ep before the smaller endpoint */
2271 list_add_tail(&virt_ep->bw_endpoint_list,
2272 &smaller_ep->bw_endpoint_list);
2273 return;
2274 }
2275 }
2276 /* Add the new endpoint at the end of the list. */
2277 list_add_tail(&virt_ep->bw_endpoint_list,
2278 &interval_bw->endpoints);
2279}
2280
2281void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2282 struct xhci_virt_device *virt_dev,
2283 int old_active_eps)
2284{
2285 struct xhci_root_port_bw_info *rh_bw_info;
2286 if (!virt_dev->tt_info)
2287 return;
2288
2289 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2290 if (old_active_eps == 0 &&
2291 virt_dev->tt_info->active_eps != 0) {
2292 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002293 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002294 } else if (old_active_eps != 0 &&
2295 virt_dev->tt_info->active_eps == 0) {
2296 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002297 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002298 }
2299}
2300
2301static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2302 struct xhci_virt_device *virt_dev,
2303 struct xhci_container_ctx *in_ctx)
2304{
2305 struct xhci_bw_info ep_bw_info[31];
2306 int i;
2307 struct xhci_input_control_ctx *ctrl_ctx;
2308 int old_active_eps = 0;
2309
Sarah Sharp2e279802011-09-02 11:05:50 -07002310 if (virt_dev->tt_info)
2311 old_active_eps = virt_dev->tt_info->active_eps;
2312
2313 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2314
2315 for (i = 0; i < 31; i++) {
2316 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2317 continue;
2318
2319 /* Make a copy of the BW info in case we need to revert this */
2320 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2321 sizeof(ep_bw_info[i]));
2322 /* Drop the endpoint from the interval table if the endpoint is
2323 * being dropped or changed.
2324 */
2325 if (EP_IS_DROPPED(ctrl_ctx, i))
2326 xhci_drop_ep_from_interval_table(xhci,
2327 &virt_dev->eps[i].bw_info,
2328 virt_dev->bw_table,
2329 virt_dev->udev,
2330 &virt_dev->eps[i],
2331 virt_dev->tt_info);
2332 }
2333 /* Overwrite the information stored in the endpoints' bw_info */
2334 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2335 for (i = 0; i < 31; i++) {
2336 /* Add any changed or added endpoints to the interval table */
2337 if (EP_IS_ADDED(ctrl_ctx, i))
2338 xhci_add_ep_to_interval_table(xhci,
2339 &virt_dev->eps[i].bw_info,
2340 virt_dev->bw_table,
2341 virt_dev->udev,
2342 &virt_dev->eps[i],
2343 virt_dev->tt_info);
2344 }
2345
2346 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2347 /* Ok, this fits in the bandwidth we have.
2348 * Update the number of active TTs.
2349 */
2350 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2351 return 0;
2352 }
2353
2354 /* We don't have enough bandwidth for this, revert the stored info. */
2355 for (i = 0; i < 31; i++) {
2356 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2357 continue;
2358
2359 /* Drop the new copies of any added or changed endpoints from
2360 * the interval table.
2361 */
2362 if (EP_IS_ADDED(ctrl_ctx, i)) {
2363 xhci_drop_ep_from_interval_table(xhci,
2364 &virt_dev->eps[i].bw_info,
2365 virt_dev->bw_table,
2366 virt_dev->udev,
2367 &virt_dev->eps[i],
2368 virt_dev->tt_info);
2369 }
2370 /* Revert the endpoint back to its old information */
2371 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2372 sizeof(ep_bw_info[i]));
2373 /* Add any changed or dropped endpoints back into the table */
2374 if (EP_IS_DROPPED(ctrl_ctx, i))
2375 xhci_add_ep_to_interval_table(xhci,
2376 &virt_dev->eps[i].bw_info,
2377 virt_dev->bw_table,
2378 virt_dev->udev,
2379 &virt_dev->eps[i],
2380 virt_dev->tt_info);
2381 }
2382 return -ENOMEM;
2383}
2384
2385
Sarah Sharpf2217e82009-08-07 14:04:43 -07002386/* Issue a configure endpoint command or evaluate context command
2387 * and wait for it to finish.
2388 */
2389static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002390 struct usb_device *udev,
2391 struct xhci_command *command,
2392 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002393{
2394 int ret;
2395 int timeleft;
2396 unsigned long flags;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002397 struct xhci_container_ctx *in_ctx;
2398 struct completion *cmd_completion;
Matt Evans28ccd292011-03-29 13:40:46 +11002399 u32 *cmd_status;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002400 struct xhci_virt_device *virt_dev;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002401
2402 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002403 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002404
Sarah Sharp750645f2011-09-02 11:05:43 -07002405 if (command)
2406 in_ctx = command->in_ctx;
2407 else
2408 in_ctx = virt_dev->in_ctx;
2409
2410 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
2411 xhci_reserve_host_resources(xhci, in_ctx)) {
2412 spin_unlock_irqrestore(&xhci->lock, flags);
2413 xhci_warn(xhci, "Not enough host resources, "
2414 "active endpoint contexts = %u\n",
2415 xhci->num_active_eps);
2416 return -ENOMEM;
2417 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002418 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2419 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2420 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2421 xhci_free_host_resources(xhci, in_ctx);
2422 spin_unlock_irqrestore(&xhci->lock, flags);
2423 xhci_warn(xhci, "Not enough bandwidth\n");
2424 return -ENOMEM;
2425 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002426
2427 if (command) {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002428 cmd_completion = command->completion;
2429 cmd_status = &command->status;
2430 command->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002431
2432 /* Enqueue pointer can be left pointing to the link TRB,
2433 * we must handle that
2434 */
Matt Evansf5960b62011-06-01 10:22:55 +10002435 if (TRB_TYPE_LINK_LE32(command->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002436 command->command_trb =
2437 xhci->cmd_ring->enq_seg->next->trbs;
2438
Sarah Sharp913a8a32009-09-04 10:53:13 -07002439 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2440 } else {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002441 cmd_completion = &virt_dev->cmd_completion;
2442 cmd_status = &virt_dev->cmd_status;
2443 }
Andiry Xu1d680642010-03-12 17:10:04 +08002444 init_completion(cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002445
Sarah Sharpf2217e82009-08-07 14:04:43 -07002446 if (!ctx_change)
Sarah Sharp913a8a32009-09-04 10:53:13 -07002447 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2448 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002449 else
Sarah Sharp913a8a32009-09-04 10:53:13 -07002450 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
Sarah Sharpf2217e82009-08-07 14:04:43 -07002451 udev->slot_id);
2452 if (ret < 0) {
Sarah Sharpc01591b2009-12-09 15:58:58 -08002453 if (command)
2454 list_del(&command->cmd_list);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002455 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2456 xhci_free_host_resources(xhci, in_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002457 spin_unlock_irqrestore(&xhci->lock, flags);
2458 xhci_dbg(xhci, "FIXME allocate a new ring segment\n");
2459 return -ENOMEM;
2460 }
2461 xhci_ring_cmd_db(xhci);
2462 spin_unlock_irqrestore(&xhci->lock, flags);
2463
2464 /* Wait for the configure endpoint command to complete */
2465 timeleft = wait_for_completion_interruptible_timeout(
Sarah Sharp913a8a32009-09-04 10:53:13 -07002466 cmd_completion,
Vijayavardhan Vennapusa167dd312013-01-10 11:17:57 +05302467 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002468 if (timeleft <= 0) {
2469 xhci_warn(xhci, "%s while waiting for %s command\n",
2470 timeleft == 0 ? "Timeout" : "Signal",
2471 ctx_change == 0 ?
2472 "configure endpoint" :
2473 "evaluate context");
2474 /* FIXME cancel the configure endpoint command */
2475 return -ETIME;
2476 }
2477
2478 if (!ctx_change)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002479 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2480 else
2481 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2482
2483 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2484 spin_lock_irqsave(&xhci->lock, flags);
2485 /* If the command failed, remove the reserved resources.
2486 * Otherwise, clean up the estimate to include dropped eps.
2487 */
2488 if (ret)
2489 xhci_free_host_resources(xhci, in_ctx);
2490 else
2491 xhci_finish_resource_reservation(xhci, in_ctx);
2492 spin_unlock_irqrestore(&xhci->lock, flags);
2493 }
2494 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002495}
2496
Sarah Sharpf88ba782009-05-14 11:44:22 -07002497/* Called after one or more calls to xhci_add_endpoint() or
2498 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2499 * to call xhci_reset_bandwidth().
2500 *
2501 * Since we are in the middle of changing either configuration or
2502 * installing a new alt setting, the USB core won't allow URBs to be
2503 * enqueued for any endpoint on the old config or interface. Nothing
2504 * else should be touching the xhci->devs[slot_id] structure, so we
2505 * don't need to take the xhci->lock for manipulating that.
2506 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002507int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2508{
2509 int i;
2510 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002511 struct xhci_hcd *xhci;
2512 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002513 struct xhci_input_control_ctx *ctrl_ctx;
2514 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002515
Andiry Xu64927732010-10-14 07:22:45 -07002516 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002517 if (ret <= 0)
2518 return ret;
2519 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002520 if (xhci->xhc_state & XHCI_STATE_DYING)
2521 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002522
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002523 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002524 virt_dev = xhci->devs[udev->slot_id];
2525
2526 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
John Yound115b042009-07-27 12:05:15 -07002527 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002528 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2529 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2530 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002531
2532 /* Don't issue the command if there's no endpoints to update. */
2533 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2534 ctrl_ctx->drop_flags == 0)
2535 return 0;
2536
Sarah Sharpf94e01862009-04-27 19:58:38 -07002537 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002538 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2539 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002540 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002541
Sarah Sharp913a8a32009-09-04 10:53:13 -07002542 ret = xhci_configure_endpoint(xhci, udev, NULL,
2543 false, false);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002544 if (ret) {
2545 /* Callee should call reset_bandwidth() */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002546 return ret;
2547 }
2548
2549 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002550 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002551 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002552
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002553 /* Free any rings that were dropped, but not changed. */
2554 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002555 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2556 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002557 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2558 }
John Yound115b042009-07-27 12:05:15 -07002559 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002560 /*
2561 * Install any rings for completely new endpoints or changed endpoints,
2562 * and free or cache any old rings from changed endpoints.
2563 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002564 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002565 if (!virt_dev->eps[i].new_ring)
2566 continue;
2567 /* Only cache or free the old ring if it exists.
2568 * It may not if this is the first add of an endpoint.
2569 */
2570 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002571 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002572 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002573 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2574 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002575 }
2576
Sarah Sharpf94e01862009-04-27 19:58:38 -07002577 return ret;
2578}
2579
2580void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2581{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002582 struct xhci_hcd *xhci;
2583 struct xhci_virt_device *virt_dev;
2584 int i, ret;
2585
Andiry Xu64927732010-10-14 07:22:45 -07002586 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002587 if (ret <= 0)
2588 return;
2589 xhci = hcd_to_xhci(hcd);
2590
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002591 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002592 virt_dev = xhci->devs[udev->slot_id];
2593 /* Free any rings allocated for added endpoints */
2594 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002595 if (virt_dev->eps[i].new_ring) {
2596 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2597 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002598 }
2599 }
John Yound115b042009-07-27 12:05:15 -07002600 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002601}
2602
Sarah Sharp5270b952009-09-04 10:53:11 -07002603static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002604 struct xhci_container_ctx *in_ctx,
2605 struct xhci_container_ctx *out_ctx,
2606 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002607{
2608 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002609 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002610 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2611 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002612 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002613 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002614
Sarah Sharp913a8a32009-09-04 10:53:13 -07002615 xhci_dbg(xhci, "Input Context:\n");
2616 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002617}
2618
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002619static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002620 unsigned int slot_id, unsigned int ep_index,
2621 struct xhci_dequeue_state *deq_state)
2622{
2623 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002624 struct xhci_ep_ctx *ep_ctx;
2625 u32 added_ctxs;
2626 dma_addr_t addr;
2627
Sarah Sharp913a8a32009-09-04 10:53:13 -07002628 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2629 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002630 in_ctx = xhci->devs[slot_id]->in_ctx;
2631 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2632 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2633 deq_state->new_deq_ptr);
2634 if (addr == 0) {
2635 xhci_warn(xhci, "WARN Cannot submit config ep after "
2636 "reset ep command\n");
2637 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2638 deq_state->new_deq_seg,
2639 deq_state->new_deq_ptr);
2640 return;
2641 }
Matt Evans28ccd292011-03-29 13:40:46 +11002642 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002643
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002644 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002645 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
2646 xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002647}
2648
Sarah Sharp82d10092009-08-07 14:04:52 -07002649void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002650 struct usb_device *udev, unsigned int ep_index)
Sarah Sharp82d10092009-08-07 14:04:52 -07002651{
2652 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002653 struct xhci_virt_ep *ep;
Sarah Sharp82d10092009-08-07 14:04:52 -07002654
2655 xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002656 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002657 /* We need to move the HW's dequeue pointer past this TD,
2658 * or it will attempt to resend it on the next doorbell ring.
2659 */
2660 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002661 ep_index, ep->stopped_stream, ep->stopped_td,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002662 &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002663
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002664 /* HW with the reset endpoint quirk will use the saved dequeue state to
2665 * issue a configure endpoint command later.
2666 */
2667 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
2668 xhci_dbg(xhci, "Queueing new dequeue state\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002669 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002670 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002671 } else {
2672 /* Better hope no one uses the input context between now and the
2673 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002674 * XXX: No idea how this hardware will react when stream rings
2675 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002676 */
2677 xhci_dbg(xhci, "Setting up input context for "
2678 "configure endpoint command\n");
2679 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2680 ep_index, &deq_state);
2681 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002682}
2683
Sarah Sharpa1587d92009-07-27 12:03:15 -07002684/* Deal with stalled endpoints. The core should have sent the control message
2685 * to clear the halt condition. However, we need to make the xHCI hardware
2686 * reset its sequence number, since a device will expect a sequence number of
2687 * zero after the halt condition is cleared.
2688 * Context: in_interrupt
2689 */
2690void xhci_endpoint_reset(struct usb_hcd *hcd,
2691 struct usb_host_endpoint *ep)
2692{
2693 struct xhci_hcd *xhci;
2694 struct usb_device *udev;
2695 unsigned int ep_index;
2696 unsigned long flags;
2697 int ret;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002698 struct xhci_virt_ep *virt_ep;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002699
2700 xhci = hcd_to_xhci(hcd);
2701 udev = (struct usb_device *) ep->hcpriv;
2702 /* Called with a root hub endpoint (or an endpoint that wasn't added
2703 * with xhci_add_endpoint()
2704 */
2705 if (!ep->hcpriv)
2706 return;
2707 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002708 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
2709 if (!virt_ep->stopped_td) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002710 xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n",
2711 ep->desc.bEndpointAddress);
2712 return;
2713 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002714 if (usb_endpoint_xfer_control(&ep->desc)) {
2715 xhci_dbg(xhci, "Control endpoint stall already handled.\n");
2716 return;
2717 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07002718
2719 xhci_dbg(xhci, "Queueing reset endpoint command\n");
2720 spin_lock_irqsave(&xhci->lock, flags);
2721 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002722 /*
2723 * Can't change the ring dequeue pointer until it's transitioned to the
2724 * stopped state, which is only upon a successful reset endpoint
2725 * command. Better hope that last command worked!
2726 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002727 if (!ret) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002728 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
2729 kfree(virt_ep->stopped_td);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002730 xhci_ring_cmd_db(xhci);
2731 }
Sarah Sharp1624ae12010-05-06 13:40:08 -07002732 virt_ep->stopped_td = NULL;
2733 virt_ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07002734 virt_ep->stopped_stream = 0;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002735 spin_unlock_irqrestore(&xhci->lock, flags);
2736
2737 if (ret)
2738 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
2739}
2740
Sarah Sharp8df75f42010-04-02 15:34:16 -07002741static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2742 struct usb_device *udev, struct usb_host_endpoint *ep,
2743 unsigned int slot_id)
2744{
2745 int ret;
2746 unsigned int ep_index;
2747 unsigned int ep_state;
2748
2749 if (!ep)
2750 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002751 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002752 if (ret <= 0)
2753 return -EINVAL;
Alan Stern842f1692010-04-30 12:44:46 -04002754 if (ep->ss_ep_comp.bmAttributes == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002755 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2756 " descriptor for ep 0x%x does not support streams\n",
2757 ep->desc.bEndpointAddress);
2758 return -EINVAL;
2759 }
2760
2761 ep_index = xhci_get_endpoint_index(&ep->desc);
2762 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2763 if (ep_state & EP_HAS_STREAMS ||
2764 ep_state & EP_GETTING_STREAMS) {
2765 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2766 "already has streams set up.\n",
2767 ep->desc.bEndpointAddress);
2768 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2769 "dynamic stream context array reallocation.\n");
2770 return -EINVAL;
2771 }
2772 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2773 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2774 "endpoint 0x%x; URBs are pending.\n",
2775 ep->desc.bEndpointAddress);
2776 return -EINVAL;
2777 }
2778 return 0;
2779}
2780
2781static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2782 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2783{
2784 unsigned int max_streams;
2785
2786 /* The stream context array size must be a power of two */
2787 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2788 /*
2789 * Find out how many primary stream array entries the host controller
2790 * supports. Later we may use secondary stream arrays (similar to 2nd
2791 * level page entries), but that's an optional feature for xHCI host
2792 * controllers. xHCs must support at least 4 stream IDs.
2793 */
2794 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2795 if (*num_stream_ctxs > max_streams) {
2796 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2797 max_streams);
2798 *num_stream_ctxs = max_streams;
2799 *num_streams = max_streams;
2800 }
2801}
2802
2803/* Returns an error code if one of the endpoint already has streams.
2804 * This does not change any data structures, it only checks and gathers
2805 * information.
2806 */
2807static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2808 struct usb_device *udev,
2809 struct usb_host_endpoint **eps, unsigned int num_eps,
2810 unsigned int *num_streams, u32 *changed_ep_bitmask)
2811{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002812 unsigned int max_streams;
2813 unsigned int endpoint_flag;
2814 int i;
2815 int ret;
2816
2817 for (i = 0; i < num_eps; i++) {
2818 ret = xhci_check_streams_endpoint(xhci, udev,
2819 eps[i], udev->slot_id);
2820 if (ret < 0)
2821 return ret;
2822
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002823 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002824 if (max_streams < (*num_streams - 1)) {
2825 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2826 eps[i]->desc.bEndpointAddress,
2827 max_streams);
2828 *num_streams = max_streams+1;
2829 }
2830
2831 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
2832 if (*changed_ep_bitmask & endpoint_flag)
2833 return -EINVAL;
2834 *changed_ep_bitmask |= endpoint_flag;
2835 }
2836 return 0;
2837}
2838
2839static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
2840 struct usb_device *udev,
2841 struct usb_host_endpoint **eps, unsigned int num_eps)
2842{
2843 u32 changed_ep_bitmask = 0;
2844 unsigned int slot_id;
2845 unsigned int ep_index;
2846 unsigned int ep_state;
2847 int i;
2848
2849 slot_id = udev->slot_id;
2850 if (!xhci->devs[slot_id])
2851 return 0;
2852
2853 for (i = 0; i < num_eps; i++) {
2854 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2855 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2856 /* Are streams already being freed for the endpoint? */
2857 if (ep_state & EP_GETTING_NO_STREAMS) {
2858 xhci_warn(xhci, "WARN Can't disable streams for "
2859 "endpoint 0x%x\n, "
2860 "streams are being disabled already.",
2861 eps[i]->desc.bEndpointAddress);
2862 return 0;
2863 }
2864 /* Are there actually any streams to free? */
2865 if (!(ep_state & EP_HAS_STREAMS) &&
2866 !(ep_state & EP_GETTING_STREAMS)) {
2867 xhci_warn(xhci, "WARN Can't disable streams for "
2868 "endpoint 0x%x\n, "
2869 "streams are already disabled!",
2870 eps[i]->desc.bEndpointAddress);
2871 xhci_warn(xhci, "WARN xhci_free_streams() called "
2872 "with non-streams endpoint\n");
2873 return 0;
2874 }
2875 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
2876 }
2877 return changed_ep_bitmask;
2878}
2879
2880/*
2881 * The USB device drivers use this function (though the HCD interface in USB
2882 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
2883 * coordinate mass storage command queueing across multiple endpoints (basically
2884 * a stream ID == a task ID).
2885 *
2886 * Setting up streams involves allocating the same size stream context array
2887 * for each endpoint and issuing a configure endpoint command for all endpoints.
2888 *
2889 * Don't allow the call to succeed if one endpoint only supports one stream
2890 * (which means it doesn't support streams at all).
2891 *
2892 * Drivers may get less stream IDs than they asked for, if the host controller
2893 * hardware or endpoints claim they can't support the number of requested
2894 * stream IDs.
2895 */
2896int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
2897 struct usb_host_endpoint **eps, unsigned int num_eps,
2898 unsigned int num_streams, gfp_t mem_flags)
2899{
2900 int i, ret;
2901 struct xhci_hcd *xhci;
2902 struct xhci_virt_device *vdev;
2903 struct xhci_command *config_cmd;
2904 unsigned int ep_index;
2905 unsigned int num_stream_ctxs;
2906 unsigned long flags;
2907 u32 changed_ep_bitmask = 0;
2908
2909 if (!eps)
2910 return -EINVAL;
2911
2912 /* Add one to the number of streams requested to account for
2913 * stream 0 that is reserved for xHCI usage.
2914 */
2915 num_streams += 1;
2916 xhci = hcd_to_xhci(hcd);
2917 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
2918 num_streams);
2919
2920 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
2921 if (!config_cmd) {
2922 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
2923 return -ENOMEM;
2924 }
2925
2926 /* Check to make sure all endpoints are not already configured for
2927 * streams. While we're at it, find the maximum number of streams that
2928 * all the endpoints will support and check for duplicate endpoints.
2929 */
2930 spin_lock_irqsave(&xhci->lock, flags);
2931 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
2932 num_eps, &num_streams, &changed_ep_bitmask);
2933 if (ret < 0) {
2934 xhci_free_command(xhci, config_cmd);
2935 spin_unlock_irqrestore(&xhci->lock, flags);
2936 return ret;
2937 }
2938 if (num_streams <= 1) {
2939 xhci_warn(xhci, "WARN: endpoints can't handle "
2940 "more than one stream.\n");
2941 xhci_free_command(xhci, config_cmd);
2942 spin_unlock_irqrestore(&xhci->lock, flags);
2943 return -EINVAL;
2944 }
2945 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002946 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07002947 * xhci_urb_enqueue() will reject all URBs.
2948 */
2949 for (i = 0; i < num_eps; i++) {
2950 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2951 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
2952 }
2953 spin_unlock_irqrestore(&xhci->lock, flags);
2954
2955 /* Setup internal data structures and allocate HW data structures for
2956 * streams (but don't install the HW structures in the input context
2957 * until we're sure all memory allocation succeeded).
2958 */
2959 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
2960 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
2961 num_stream_ctxs, num_streams);
2962
2963 for (i = 0; i < num_eps; i++) {
2964 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2965 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
2966 num_stream_ctxs,
2967 num_streams, mem_flags);
2968 if (!vdev->eps[ep_index].stream_info)
2969 goto cleanup;
2970 /* Set maxPstreams in endpoint context and update deq ptr to
2971 * point to stream context array. FIXME
2972 */
2973 }
2974
2975 /* Set up the input context for a configure endpoint command. */
2976 for (i = 0; i < num_eps; i++) {
2977 struct xhci_ep_ctx *ep_ctx;
2978
2979 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2980 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
2981
2982 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
2983 vdev->out_ctx, ep_index);
2984 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
2985 vdev->eps[ep_index].stream_info);
2986 }
2987 /* Tell the HW to drop its old copy of the endpoint context info
2988 * and add the updated copy from the input context.
2989 */
2990 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
2991 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
2992
2993 /* Issue and wait for the configure endpoint command */
2994 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
2995 false, false);
2996
2997 /* xHC rejected the configure endpoint command for some reason, so we
2998 * leave the old ring intact and free our internal streams data
2999 * structure.
3000 */
3001 if (ret < 0)
3002 goto cleanup;
3003
3004 spin_lock_irqsave(&xhci->lock, flags);
3005 for (i = 0; i < num_eps; i++) {
3006 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3007 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3008 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3009 udev->slot_id, ep_index);
3010 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3011 }
3012 xhci_free_command(xhci, config_cmd);
3013 spin_unlock_irqrestore(&xhci->lock, flags);
3014
3015 /* Subtract 1 for stream 0, which drivers can't use */
3016 return num_streams - 1;
3017
3018cleanup:
3019 /* If it didn't work, free the streams! */
3020 for (i = 0; i < num_eps; i++) {
3021 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3022 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003023 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003024 /* FIXME Unset maxPstreams in endpoint context and
3025 * update deq ptr to point to normal string ring.
3026 */
3027 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3028 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3029 xhci_endpoint_zero(xhci, vdev, eps[i]);
3030 }
3031 xhci_free_command(xhci, config_cmd);
3032 return -ENOMEM;
3033}
3034
3035/* Transition the endpoint from using streams to being a "normal" endpoint
3036 * without streams.
3037 *
3038 * Modify the endpoint context state, submit a configure endpoint command,
3039 * and free all endpoint rings for streams if that completes successfully.
3040 */
3041int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3042 struct usb_host_endpoint **eps, unsigned int num_eps,
3043 gfp_t mem_flags)
3044{
3045 int i, ret;
3046 struct xhci_hcd *xhci;
3047 struct xhci_virt_device *vdev;
3048 struct xhci_command *command;
3049 unsigned int ep_index;
3050 unsigned long flags;
3051 u32 changed_ep_bitmask;
3052
3053 xhci = hcd_to_xhci(hcd);
3054 vdev = xhci->devs[udev->slot_id];
3055
3056 /* Set up a configure endpoint command to remove the streams rings */
3057 spin_lock_irqsave(&xhci->lock, flags);
3058 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3059 udev, eps, num_eps);
3060 if (changed_ep_bitmask == 0) {
3061 spin_unlock_irqrestore(&xhci->lock, flags);
3062 return -EINVAL;
3063 }
3064
3065 /* Use the xhci_command structure from the first endpoint. We may have
3066 * allocated too many, but the driver may call xhci_free_streams() for
3067 * each endpoint it grouped into one call to xhci_alloc_streams().
3068 */
3069 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3070 command = vdev->eps[ep_index].stream_info->free_streams_command;
3071 for (i = 0; i < num_eps; i++) {
3072 struct xhci_ep_ctx *ep_ctx;
3073
3074 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3075 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3076 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3077 EP_GETTING_NO_STREAMS;
3078
3079 xhci_endpoint_copy(xhci, command->in_ctx,
3080 vdev->out_ctx, ep_index);
3081 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3082 &vdev->eps[ep_index]);
3083 }
3084 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
3085 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
3086 spin_unlock_irqrestore(&xhci->lock, flags);
3087
3088 /* Issue and wait for the configure endpoint command,
3089 * which must succeed.
3090 */
3091 ret = xhci_configure_endpoint(xhci, udev, command,
3092 false, true);
3093
3094 /* xHC rejected the configure endpoint command for some reason, so we
3095 * leave the streams rings intact.
3096 */
3097 if (ret < 0)
3098 return ret;
3099
3100 spin_lock_irqsave(&xhci->lock, flags);
3101 for (i = 0; i < num_eps; i++) {
3102 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3103 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003104 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003105 /* FIXME Unset maxPstreams in endpoint context and
3106 * update deq ptr to point to normal string ring.
3107 */
3108 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3109 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3110 }
3111 spin_unlock_irqrestore(&xhci->lock, flags);
3112
3113 return 0;
3114}
3115
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003116/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003117 * Deletes endpoint resources for endpoints that were active before a Reset
3118 * Device command, or a Disable Slot command. The Reset Device command leaves
3119 * the control endpoint intact, whereas the Disable Slot command deletes it.
3120 *
3121 * Must be called with xhci->lock held.
3122 */
3123void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3124 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3125{
3126 int i;
3127 unsigned int num_dropped_eps = 0;
3128 unsigned int drop_flags = 0;
3129
3130 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3131 if (virt_dev->eps[i].ring) {
3132 drop_flags |= 1 << i;
3133 num_dropped_eps++;
3134 }
3135 }
3136 xhci->num_active_eps -= num_dropped_eps;
3137 if (num_dropped_eps)
3138 xhci_dbg(xhci, "Dropped %u ep ctxs, flags = 0x%x, "
3139 "%u now active.\n",
3140 num_dropped_eps, drop_flags,
3141 xhci->num_active_eps);
3142}
3143
3144/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003145 * This submits a Reset Device Command, which will set the device state to 0,
3146 * set the device address to 0, and disable all the endpoints except the default
3147 * control endpoint. The USB core should come back and call
3148 * xhci_address_device(), and then re-set up the configuration. If this is
3149 * called because of a usb_reset_and_verify_device(), then the old alternate
3150 * settings will be re-installed through the normal bandwidth allocation
3151 * functions.
3152 *
3153 * Wait for the Reset Device command to finish. Remove all structures
3154 * associated with the endpoints that were disabled. Clear the input device
3155 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003156 *
3157 * If the virt_dev to be reset does not exist or does not match the udev,
3158 * it means the device is lost, possibly due to the xHC restore error and
3159 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3160 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003161 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003162int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003163{
3164 int ret, i;
3165 unsigned long flags;
3166 struct xhci_hcd *xhci;
3167 unsigned int slot_id;
3168 struct xhci_virt_device *virt_dev;
3169 struct xhci_command *reset_device_cmd;
3170 int timeleft;
3171 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003172 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003173 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003174
Andiry Xuf0615c42010-10-14 07:22:48 -07003175 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003176 if (ret <= 0)
3177 return ret;
3178 xhci = hcd_to_xhci(hcd);
3179 slot_id = udev->slot_id;
3180 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003181 if (!virt_dev) {
3182 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3183 "not exist. Re-allocate the device\n", slot_id);
3184 ret = xhci_alloc_dev(hcd, udev);
3185 if (ret == 1)
3186 return 0;
3187 else
3188 return -EINVAL;
3189 }
3190
3191 if (virt_dev->udev != udev) {
3192 /* If the virt_dev and the udev does not match, this virt_dev
3193 * may belong to another udev.
3194 * Re-allocate the device.
3195 */
3196 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3197 "not match the udev. Re-allocate the device\n",
3198 slot_id);
3199 ret = xhci_alloc_dev(hcd, udev);
3200 if (ret == 1)
3201 return 0;
3202 else
3203 return -EINVAL;
3204 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003205
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003206 /* If device is not setup, there is no point in resetting it */
3207 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3208 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3209 SLOT_STATE_DISABLED)
3210 return 0;
3211
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003212 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3213 /* Allocate the command structure that holds the struct completion.
3214 * Assume we're in process context, since the normal device reset
3215 * process has to wait for the device anyway. Storage devices are
3216 * reset as part of error handling, so use GFP_NOIO instead of
3217 * GFP_KERNEL.
3218 */
3219 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3220 if (!reset_device_cmd) {
3221 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3222 return -ENOMEM;
3223 }
3224
3225 /* Attempt to submit the Reset Device command to the command ring */
3226 spin_lock_irqsave(&xhci->lock, flags);
3227 reset_device_cmd->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003228
3229 /* Enqueue pointer can be left pointing to the link TRB,
3230 * we must handle that
3231 */
Matt Evansf5960b62011-06-01 10:22:55 +10003232 if (TRB_TYPE_LINK_LE32(reset_device_cmd->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003233 reset_device_cmd->command_trb =
3234 xhci->cmd_ring->enq_seg->next->trbs;
3235
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003236 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3237 ret = xhci_queue_reset_device(xhci, slot_id);
3238 if (ret) {
3239 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3240 list_del(&reset_device_cmd->cmd_list);
3241 spin_unlock_irqrestore(&xhci->lock, flags);
3242 goto command_cleanup;
3243 }
3244 xhci_ring_cmd_db(xhci);
3245 spin_unlock_irqrestore(&xhci->lock, flags);
3246
3247 /* Wait for the Reset Device command to finish */
3248 timeleft = wait_for_completion_interruptible_timeout(
3249 reset_device_cmd->completion,
3250 USB_CTRL_SET_TIMEOUT);
3251 if (timeleft <= 0) {
3252 xhci_warn(xhci, "%s while waiting for reset device command\n",
3253 timeleft == 0 ? "Timeout" : "Signal");
3254 spin_lock_irqsave(&xhci->lock, flags);
3255 /* The timeout might have raced with the event ring handler, so
3256 * only delete from the list if the item isn't poisoned.
3257 */
3258 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3259 list_del(&reset_device_cmd->cmd_list);
3260 spin_unlock_irqrestore(&xhci->lock, flags);
3261 ret = -ETIME;
3262 goto command_cleanup;
3263 }
3264
3265 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3266 * unless we tried to reset a slot ID that wasn't enabled,
3267 * or the device wasn't in the addressed or configured state.
3268 */
3269 ret = reset_device_cmd->status;
3270 switch (ret) {
3271 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3272 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
3273 xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n",
3274 slot_id,
3275 xhci_get_slot_state(xhci, virt_dev->out_ctx));
3276 xhci_info(xhci, "Not freeing device rings.\n");
3277 /* Don't treat this as an error. May change my mind later. */
3278 ret = 0;
3279 goto command_cleanup;
3280 case COMP_SUCCESS:
3281 xhci_dbg(xhci, "Successful reset device command.\n");
3282 break;
3283 default:
3284 if (xhci_is_vendor_info_code(xhci, ret))
3285 break;
3286 xhci_warn(xhci, "Unknown completion code %u for "
3287 "reset device command.\n", ret);
3288 ret = -EINVAL;
3289 goto command_cleanup;
3290 }
3291
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003292 /* Free up host controller endpoint resources */
3293 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3294 spin_lock_irqsave(&xhci->lock, flags);
3295 /* Don't delete the default control endpoint resources */
3296 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3297 spin_unlock_irqrestore(&xhci->lock, flags);
3298 }
3299
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003300 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3301 last_freed_endpoint = 1;
3302 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003303 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3304
3305 if (ep->ep_state & EP_HAS_STREAMS) {
3306 xhci_free_stream_info(xhci, ep->stream_info);
3307 ep->stream_info = NULL;
3308 ep->ep_state &= ~EP_HAS_STREAMS;
3309 }
3310
3311 if (ep->ring) {
3312 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3313 last_freed_endpoint = i;
3314 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003315 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3316 xhci_drop_ep_from_interval_table(xhci,
3317 &virt_dev->eps[i].bw_info,
3318 virt_dev->bw_table,
3319 udev,
3320 &virt_dev->eps[i],
3321 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003322 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003323 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003324 /* If necessary, update the number of active TTs on this root port */
3325 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3326
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003327 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3328 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3329 ret = 0;
3330
3331command_cleanup:
3332 xhci_free_command(xhci, reset_device_cmd);
3333 return ret;
3334}
3335
3336/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003337 * At this point, the struct usb_device is about to go away, the device has
3338 * disconnected, and all traffic has been stopped and the endpoints have been
3339 * disabled. Free any HC data structures associated with that device.
3340 */
3341void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3342{
3343 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003344 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003345 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003346 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003347 int i, ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003348
Andiry Xu64927732010-10-14 07:22:45 -07003349 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003350 /* If the host is halted due to driver unload, we still need to free the
3351 * device.
3352 */
3353 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003354 return;
Andiry Xu64927732010-10-14 07:22:45 -07003355
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003356 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003357
3358 /* Stop any wayward timer functions (which may grab the lock) */
3359 for (i = 0; i < 31; ++i) {
3360 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3361 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3362 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003363
Andiry Xu65580b432011-09-23 14:19:52 -07003364 if (udev->usb2_hw_lpm_enabled) {
3365 xhci_set_usb2_hardware_lpm(hcd, udev, 0);
3366 udev->usb2_hw_lpm_enabled = 0;
3367 }
3368
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003369 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003370 /* Don't disable the slot if the host controller is dead. */
3371 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003372 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3373 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003374 xhci_free_virt_device(xhci, udev->slot_id);
3375 spin_unlock_irqrestore(&xhci->lock, flags);
3376 return;
3377 }
3378
Sarah Sharp23e3be12009-04-29 19:05:20 -07003379 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003380 spin_unlock_irqrestore(&xhci->lock, flags);
3381 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3382 return;
3383 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003384 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003385 spin_unlock_irqrestore(&xhci->lock, flags);
3386 /*
3387 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003388 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003389 */
3390}
3391
3392/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003393 * Checks if we have enough host controller resources for the default control
3394 * endpoint.
3395 *
3396 * Must be called with xhci->lock held.
3397 */
3398static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3399{
3400 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
3401 xhci_dbg(xhci, "Not enough ep ctxs: "
3402 "%u active, need to add 1, limit is %u.\n",
3403 xhci->num_active_eps, xhci->limit_active_eps);
3404 return -ENOMEM;
3405 }
3406 xhci->num_active_eps += 1;
3407 xhci_dbg(xhci, "Adding 1 ep ctx, %u now active.\n",
3408 xhci->num_active_eps);
3409 return 0;
3410}
3411
3412
3413/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003414 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3415 * timed out, or allocating memory failed. Returns 1 on success.
3416 */
3417int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3418{
3419 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3420 unsigned long flags;
3421 int timeleft;
3422 int ret;
3423
3424 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp23e3be12009-04-29 19:05:20 -07003425 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003426 if (ret) {
3427 spin_unlock_irqrestore(&xhci->lock, flags);
3428 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3429 return 0;
3430 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003431 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003432 spin_unlock_irqrestore(&xhci->lock, flags);
3433
3434 /* XXX: how much time for xHC slot assignment? */
3435 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Vijayavardhan Vennapusa167dd312013-01-10 11:17:57 +05303436 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003437 if (timeleft <= 0) {
3438 xhci_warn(xhci, "%s while waiting for a slot\n",
3439 timeleft == 0 ? "Timeout" : "Signal");
3440 /* FIXME cancel the enable slot request */
3441 return 0;
3442 }
3443
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003444 if (!xhci->slot_id) {
3445 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003446 return 0;
3447 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003448
3449 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3450 spin_lock_irqsave(&xhci->lock, flags);
3451 ret = xhci_reserve_host_control_ep_resources(xhci);
3452 if (ret) {
3453 spin_unlock_irqrestore(&xhci->lock, flags);
3454 xhci_warn(xhci, "Not enough host resources, "
3455 "active endpoint contexts = %u\n",
3456 xhci->num_active_eps);
3457 goto disable_slot;
3458 }
3459 spin_unlock_irqrestore(&xhci->lock, flags);
3460 }
3461 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003462 * xhci_discover_or_reset_device(), which may be called as part of
3463 * mass storage driver error handling.
3464 */
3465 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003466 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003467 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003468 }
3469 udev->slot_id = xhci->slot_id;
3470 /* Is this a LS or FS device under a HS hub? */
3471 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003472 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003473
3474disable_slot:
3475 /* Disable slot, if we can do it without mem alloc */
3476 spin_lock_irqsave(&xhci->lock, flags);
3477 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3478 xhci_ring_cmd_db(xhci);
3479 spin_unlock_irqrestore(&xhci->lock, flags);
3480 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003481}
3482
3483/*
3484 * Issue an Address Device command (which will issue a SetAddress request to
3485 * the device).
3486 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3487 * we should only issue and wait on one address command at the same time.
3488 *
3489 * We add one to the device address issued by the hardware because the USB core
3490 * uses address 1 for the root hubs (even though they're not really devices).
3491 */
3492int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3493{
3494 unsigned long flags;
3495 int timeleft;
3496 struct xhci_virt_device *virt_dev;
3497 int ret = 0;
3498 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003499 struct xhci_slot_ctx *slot_ctx;
3500 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003501 u64 temp_64;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003502
3503 if (!udev->slot_id) {
3504 xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id);
3505 return -EINVAL;
3506 }
3507
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003508 virt_dev = xhci->devs[udev->slot_id];
3509
Matt Evans7ed603e2011-03-29 13:40:56 +11003510 if (WARN_ON(!virt_dev)) {
3511 /*
3512 * In plug/unplug torture test with an NEC controller,
3513 * a zero-dereference was observed once due to virt_dev = 0.
3514 * Print useful debug rather than crash if it is observed again!
3515 */
3516 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3517 udev->slot_id);
3518 return -EINVAL;
3519 }
3520
Andiry Xuf0615c42010-10-14 07:22:48 -07003521 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
3522 /*
3523 * If this is the first Set Address since device plug-in or
3524 * virt_device realloaction after a resume with an xHCI power loss,
3525 * then set up the slot context.
3526 */
3527 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003528 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003529 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003530 else
3531 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003532 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3533 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3534 ctrl_ctx->drop_flags = 0;
3535
Sarah Sharp66e49d82009-07-27 12:03:46 -07003536 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003537 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003538
Sarah Sharpf88ba782009-05-14 11:44:22 -07003539 spin_lock_irqsave(&xhci->lock, flags);
John Yound115b042009-07-27 12:05:15 -07003540 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3541 udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003542 if (ret) {
3543 spin_unlock_irqrestore(&xhci->lock, flags);
3544 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3545 return ret;
3546 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003547 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003548 spin_unlock_irqrestore(&xhci->lock, flags);
3549
3550 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3551 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Vijayavardhan Vennapusa167dd312013-01-10 11:17:57 +05303552 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003553 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3554 * the SetAddress() "recovery interval" required by USB and aborting the
3555 * command on a timeout.
3556 */
3557 if (timeleft <= 0) {
Andiry Xucd681762011-09-23 14:19:55 -07003558 xhci_warn(xhci, "%s while waiting for address device command\n",
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003559 timeleft == 0 ? "Timeout" : "Signal");
3560 /* FIXME cancel the address device command */
3561 return -ETIME;
3562 }
3563
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003564 switch (virt_dev->cmd_status) {
3565 case COMP_CTX_STATE:
3566 case COMP_EBADSLT:
3567 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3568 udev->slot_id);
3569 ret = -EINVAL;
3570 break;
3571 case COMP_TX_ERR:
3572 dev_warn(&udev->dev, "Device not responding to set address.\n");
3573 ret = -EPROTO;
3574 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003575 case COMP_DEV_ERR:
3576 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3577 "device command.\n");
3578 ret = -ENODEV;
3579 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003580 case COMP_SUCCESS:
3581 xhci_dbg(xhci, "Successful Address Device command\n");
3582 break;
3583 default:
3584 xhci_err(xhci, "ERROR: unexpected command completion "
3585 "code 0x%x.\n", virt_dev->cmd_status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003586 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003587 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003588 ret = -EINVAL;
3589 break;
3590 }
3591 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003592 return ret;
3593 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003594 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
3595 xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64);
3596 xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n",
Matt Evans28ccd292011-03-29 13:40:46 +11003597 udev->slot_id,
3598 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3599 (unsigned long long)
3600 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07003601 xhci_dbg(xhci, "Output Context DMA address = %#08llx\n",
John Yound115b042009-07-27 12:05:15 -07003602 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003603 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003604 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003605 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003606 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003607 /*
3608 * USB core uses address 1 for the roothubs, so we add one to the
3609 * address given back to us by the HC.
3610 */
John Yound115b042009-07-27 12:05:15 -07003611 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003612 /* Use kernel assigned address for devices; store xHC assigned
3613 * address locally. */
Matt Evans28ccd292011-03-29 13:40:46 +11003614 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3615 + 1;
Sarah Sharpf94e01862009-04-27 19:58:38 -07003616 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003617 ctrl_ctx->add_flags = 0;
3618 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003619
Andiry Xuc8d4af82010-10-14 07:22:51 -07003620 xhci_dbg(xhci, "Internal device address = %d\n", virt_dev->address);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003621
3622 return 0;
3623}
3624
Andiry Xu95743232011-09-23 14:19:51 -07003625#ifdef CONFIG_USB_SUSPEND
3626
3627/* BESL to HIRD Encoding array for USB2 LPM */
3628static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3629 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3630
3631/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003632static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3633 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003634{
Andiry Xuf99298b2011-12-12 16:45:28 +08003635 int u2del, besl, besl_host;
3636 int besl_device = 0;
3637 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07003638
Andiry Xuf99298b2011-12-12 16:45:28 +08003639 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
3640 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3641
3642 if (field & USB_BESL_SUPPORT) {
3643 for (besl_host = 0; besl_host < 16; besl_host++) {
3644 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07003645 break;
3646 }
Andiry Xuf99298b2011-12-12 16:45:28 +08003647 /* Use baseline BESL value as default */
3648 if (field & USB_BESL_BASELINE_VALID)
3649 besl_device = USB_GET_BESL_BASELINE(field);
3650 else if (field & USB_BESL_DEEP_VALID)
3651 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07003652 } else {
3653 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08003654 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07003655 else
Andiry Xuf99298b2011-12-12 16:45:28 +08003656 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07003657 }
3658
Andiry Xuf99298b2011-12-12 16:45:28 +08003659 besl = besl_host + besl_device;
3660 if (besl > 15)
3661 besl = 15;
3662
3663 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07003664}
3665
3666static int xhci_usb2_software_lpm_test(struct usb_hcd *hcd,
3667 struct usb_device *udev)
3668{
3669 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3670 struct dev_info *dev_info;
3671 __le32 __iomem **port_array;
3672 __le32 __iomem *addr, *pm_addr;
3673 u32 temp, dev_id;
3674 unsigned int port_num;
3675 unsigned long flags;
Andiry Xuf99298b2011-12-12 16:45:28 +08003676 int hird;
Andiry Xu95743232011-09-23 14:19:51 -07003677 int ret;
3678
3679 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
3680 !udev->lpm_capable)
3681 return -EINVAL;
3682
3683 /* we only support lpm for non-hub device connected to root hub yet */
3684 if (!udev->parent || udev->parent->parent ||
3685 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
3686 return -EINVAL;
3687
3688 spin_lock_irqsave(&xhci->lock, flags);
3689
3690 /* Look for devices in lpm_failed_devs list */
3691 dev_id = le16_to_cpu(udev->descriptor.idVendor) << 16 |
3692 le16_to_cpu(udev->descriptor.idProduct);
3693 list_for_each_entry(dev_info, &xhci->lpm_failed_devs, list) {
3694 if (dev_info->dev_id == dev_id) {
3695 ret = -EINVAL;
3696 goto finish;
3697 }
3698 }
3699
3700 port_array = xhci->usb2_ports;
3701 port_num = udev->portnum - 1;
3702
3703 if (port_num > HCS_MAX_PORTS(xhci->hcs_params1)) {
3704 xhci_dbg(xhci, "invalid port number %d\n", udev->portnum);
3705 ret = -EINVAL;
3706 goto finish;
3707 }
3708
3709 /*
3710 * Test USB 2.0 software LPM.
3711 * FIXME: some xHCI 1.0 hosts may implement a new register to set up
3712 * hardware-controlled USB 2.0 LPM. See section 5.4.11 and 4.23.5.1.1.1
3713 * in the June 2011 errata release.
3714 */
3715 xhci_dbg(xhci, "test port %d software LPM\n", port_num);
3716 /*
3717 * Set L1 Device Slot and HIRD/BESL.
3718 * Check device's USB 2.0 extension descriptor to determine whether
3719 * HIRD or BESL shoule be used. See USB2.0 LPM errata.
3720 */
3721 pm_addr = port_array[port_num] + 1;
Andiry Xuf99298b2011-12-12 16:45:28 +08003722 hird = xhci_calculate_hird_besl(xhci, udev);
Andiry Xu95743232011-09-23 14:19:51 -07003723 temp = PORT_L1DS(udev->slot_id) | PORT_HIRD(hird);
3724 xhci_writel(xhci, temp, pm_addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05303725 if (xhci->quirks & XHCI_PORTSC_DELAY)
3726 ndelay(100);
Andiry Xu95743232011-09-23 14:19:51 -07003727
3728 /* Set port link state to U2(L1) */
3729 addr = port_array[port_num];
3730 xhci_set_link_state(xhci, port_array, port_num, XDEV_U2);
3731
3732 /* wait for ACK */
3733 spin_unlock_irqrestore(&xhci->lock, flags);
3734 msleep(10);
3735 spin_lock_irqsave(&xhci->lock, flags);
3736
3737 /* Check L1 Status */
3738 ret = handshake(xhci, pm_addr, PORT_L1S_MASK, PORT_L1S_SUCCESS, 125);
3739 if (ret != -ETIMEDOUT) {
3740 /* enter L1 successfully */
3741 temp = xhci_readl(xhci, addr);
3742 xhci_dbg(xhci, "port %d entered L1 state, port status 0x%x\n",
3743 port_num, temp);
3744 ret = 0;
3745 } else {
3746 temp = xhci_readl(xhci, pm_addr);
3747 xhci_dbg(xhci, "port %d software lpm failed, L1 status %d\n",
3748 port_num, temp & PORT_L1S_MASK);
3749 ret = -EINVAL;
3750 }
3751
3752 /* Resume the port */
3753 xhci_set_link_state(xhci, port_array, port_num, XDEV_U0);
3754
3755 spin_unlock_irqrestore(&xhci->lock, flags);
3756 msleep(10);
3757 spin_lock_irqsave(&xhci->lock, flags);
3758
3759 /* Clear PLC */
3760 xhci_test_and_clear_bit(xhci, port_array, port_num, PORT_PLC);
3761
3762 /* Check PORTSC to make sure the device is in the right state */
3763 if (!ret) {
3764 temp = xhci_readl(xhci, addr);
3765 xhci_dbg(xhci, "resumed port %d status 0x%x\n", port_num, temp);
3766 if (!(temp & PORT_CONNECT) || !(temp & PORT_PE) ||
3767 (temp & PORT_PLS_MASK) != XDEV_U0) {
3768 xhci_dbg(xhci, "port L1 resume fail\n");
3769 ret = -EINVAL;
3770 }
3771 }
3772
3773 if (ret) {
3774 /* Insert dev to lpm_failed_devs list */
3775 xhci_warn(xhci, "device LPM test failed, may disconnect and "
3776 "re-enumerate\n");
3777 dev_info = kzalloc(sizeof(struct dev_info), GFP_ATOMIC);
3778 if (!dev_info) {
3779 ret = -ENOMEM;
3780 goto finish;
3781 }
3782 dev_info->dev_id = dev_id;
3783 INIT_LIST_HEAD(&dev_info->list);
3784 list_add(&dev_info->list, &xhci->lpm_failed_devs);
3785 } else {
3786 xhci_ring_device(xhci, udev->slot_id);
3787 }
3788
3789finish:
3790 spin_unlock_irqrestore(&xhci->lock, flags);
3791 return ret;
3792}
3793
Andiry Xu65580b432011-09-23 14:19:52 -07003794int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
3795 struct usb_device *udev, int enable)
3796{
3797 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3798 __le32 __iomem **port_array;
3799 __le32 __iomem *pm_addr;
3800 u32 temp;
3801 unsigned int port_num;
3802 unsigned long flags;
Andiry Xuf99298b2011-12-12 16:45:28 +08003803 int hird;
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05303804 bool delay;
Andiry Xu65580b432011-09-23 14:19:52 -07003805
3806 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
3807 !udev->lpm_capable)
3808 return -EPERM;
3809
3810 if (!udev->parent || udev->parent->parent ||
3811 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
3812 return -EPERM;
3813
3814 if (udev->usb2_hw_lpm_capable != 1)
3815 return -EPERM;
3816
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05303817 if (xhci->quirks & XHCI_PORTSC_DELAY)
3818 delay = true;
3819
Andiry Xu65580b432011-09-23 14:19:52 -07003820 spin_lock_irqsave(&xhci->lock, flags);
3821
3822 port_array = xhci->usb2_ports;
3823 port_num = udev->portnum - 1;
3824 pm_addr = port_array[port_num] + 1;
3825 temp = xhci_readl(xhci, pm_addr);
3826
3827 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
3828 enable ? "enable" : "disable", port_num);
3829
Andiry Xuf99298b2011-12-12 16:45:28 +08003830 hird = xhci_calculate_hird_besl(xhci, udev);
Andiry Xu65580b432011-09-23 14:19:52 -07003831
3832 if (enable) {
3833 temp &= ~PORT_HIRD_MASK;
3834 temp |= PORT_HIRD(hird) | PORT_RWE;
3835 xhci_writel(xhci, temp, pm_addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05303836 if (delay)
3837 ndelay(100);
Andiry Xu65580b432011-09-23 14:19:52 -07003838 temp = xhci_readl(xhci, pm_addr);
3839 temp |= PORT_HLE;
3840 xhci_writel(xhci, temp, pm_addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05303841 if (delay)
3842 ndelay(100);
Andiry Xu65580b432011-09-23 14:19:52 -07003843 } else {
3844 temp &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK);
3845 xhci_writel(xhci, temp, pm_addr);
Pavankumar Kondetibd348b62012-06-12 13:38:59 +05303846 if (delay)
3847 ndelay(100);
Andiry Xu65580b432011-09-23 14:19:52 -07003848 }
3849
3850 spin_unlock_irqrestore(&xhci->lock, flags);
3851 return 0;
3852}
3853
Andiry Xu95743232011-09-23 14:19:51 -07003854int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
3855{
3856 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3857 int ret;
3858
3859 ret = xhci_usb2_software_lpm_test(hcd, udev);
Andiry Xu65580b432011-09-23 14:19:52 -07003860 if (!ret) {
Andiry Xu95743232011-09-23 14:19:51 -07003861 xhci_dbg(xhci, "software LPM test succeed\n");
Andiry Xu65580b432011-09-23 14:19:52 -07003862 if (xhci->hw_lpm_support == 1) {
3863 udev->usb2_hw_lpm_capable = 1;
3864 ret = xhci_set_usb2_hardware_lpm(hcd, udev, 1);
3865 if (!ret)
3866 udev->usb2_hw_lpm_enabled = 1;
3867 }
3868 }
Andiry Xu95743232011-09-23 14:19:51 -07003869
3870 return 0;
3871}
3872
3873#else
3874
Andiry Xu65580b432011-09-23 14:19:52 -07003875int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
3876 struct usb_device *udev, int enable)
3877{
3878 return 0;
3879}
3880
Andiry Xu95743232011-09-23 14:19:51 -07003881int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
3882{
3883 return 0;
3884}
3885
3886#endif /* CONFIG_USB_SUSPEND */
3887
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003888/* Once a hub descriptor is fetched for a device, we need to update the xHC's
3889 * internal data structures for the device.
3890 */
3891int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
3892 struct usb_tt *tt, gfp_t mem_flags)
3893{
3894 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3895 struct xhci_virt_device *vdev;
3896 struct xhci_command *config_cmd;
3897 struct xhci_input_control_ctx *ctrl_ctx;
3898 struct xhci_slot_ctx *slot_ctx;
3899 unsigned long flags;
3900 unsigned think_time;
3901 int ret;
3902
3903 /* Ignore root hubs */
3904 if (!hdev->parent)
3905 return 0;
3906
3907 vdev = xhci->devs[hdev->slot_id];
3908 if (!vdev) {
3909 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
3910 return -EINVAL;
3911 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08003912 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003913 if (!config_cmd) {
3914 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3915 return -ENOMEM;
3916 }
3917
3918 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07003919 if (hdev->speed == USB_SPEED_HIGH &&
3920 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
3921 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
3922 xhci_free_command(xhci, config_cmd);
3923 spin_unlock_irqrestore(&xhci->lock, flags);
3924 return -ENOMEM;
3925 }
3926
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003927 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
3928 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11003929 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003930 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11003931 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003932 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11003933 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003934 if (xhci->hci_version > 0x95) {
3935 xhci_dbg(xhci, "xHCI version %x needs hub "
3936 "TT think time and number of ports\n",
3937 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11003938 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003939 /* Set TT think time - convert from ns to FS bit times.
3940 * 0 = 8 FS bit times, 1 = 16 FS bit times,
3941 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08003942 *
3943 * xHCI 1.0: this field shall be 0 if the device is not a
3944 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003945 */
3946 think_time = tt->think_time;
3947 if (think_time != 0)
3948 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08003949 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
3950 slot_ctx->tt_info |=
3951 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003952 } else {
3953 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
3954 "TT think time or number of ports\n",
3955 (unsigned int) xhci->hci_version);
3956 }
3957 slot_ctx->dev_state = 0;
3958 spin_unlock_irqrestore(&xhci->lock, flags);
3959
3960 xhci_dbg(xhci, "Set up %s for hub device.\n",
3961 (xhci->hci_version > 0x95) ?
3962 "configure endpoint" : "evaluate context");
3963 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
3964 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
3965
3966 /* Issue and wait for the configure endpoint or
3967 * evaluate context command.
3968 */
3969 if (xhci->hci_version > 0x95)
3970 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
3971 false, false);
3972 else
3973 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
3974 true, false);
3975
3976 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
3977 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
3978
3979 xhci_free_command(xhci, config_cmd);
3980 return ret;
3981}
3982
Sarah Sharp66d4ead2009-04-27 19:52:28 -07003983int xhci_get_frame(struct usb_hcd *hcd)
3984{
3985 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3986 /* EHCI mods by the periodic size. Why? */
3987 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
3988}
3989
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07003990int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
3991{
3992 struct xhci_hcd *xhci;
3993 struct device *dev = hcd->self.controller;
3994 int retval;
3995 u32 temp;
3996
Andiry Xufdaf8b32012-03-05 17:49:38 +08003997 /* Accept arbitrarily long scatter-gather lists */
3998 hcd->self.sg_tablesize = ~0;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07003999
4000 if (usb_hcd_is_primary_hcd(hcd)) {
4001 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
4002 if (!xhci)
4003 return -ENOMEM;
4004 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
4005 xhci->main_hcd = hcd;
4006 /* Mark the first roothub as being USB 2.0.
4007 * The xHCI driver will register the USB 3.0 roothub.
4008 */
4009 hcd->speed = HCD_USB2;
4010 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4011 /*
4012 * USB 2.0 roothub under xHCI has an integrated TT,
4013 * (rate matching hub) as opposed to having an OHCI/UHCI
4014 * companion controller.
4015 */
4016 hcd->has_tt = 1;
4017 } else {
4018 /* xHCI private pointer was set in xhci_pci_probe for the second
4019 * registered roothub.
4020 */
4021 xhci = hcd_to_xhci(hcd);
4022 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4023 if (HCC_64BIT_ADDR(temp)) {
4024 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4025 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4026 } else {
4027 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4028 }
4029 return 0;
4030 }
4031
4032 xhci->cap_regs = hcd->regs;
4033 xhci->op_regs = hcd->regs +
4034 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
4035 xhci->run_regs = hcd->regs +
4036 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
4037 /* Cache read-only capability registers */
4038 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
4039 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
4040 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
4041 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
4042 xhci->hci_version = HC_VERSION(xhci->hcc_params);
4043 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4044 xhci_print_registers(xhci);
4045
4046 get_quirks(dev, xhci);
4047
4048 /* Make sure the HC is halted. */
4049 retval = xhci_halt(xhci);
4050 if (retval)
4051 goto error;
4052
4053 xhci_dbg(xhci, "Resetting HCD\n");
4054 /* Reset the internal HC memory state and registers. */
4055 retval = xhci_reset(xhci);
4056 if (retval)
4057 goto error;
4058 xhci_dbg(xhci, "Reset complete\n");
4059
4060 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4061 if (HCC_64BIT_ADDR(temp)) {
4062 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4063 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4064 } else {
4065 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4066 }
4067
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004068 return 0;
4069error:
4070 kfree(xhci);
4071 return retval;
4072}
4073
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004074MODULE_DESCRIPTION(DRIVER_DESC);
4075MODULE_AUTHOR(DRIVER_AUTHOR);
4076MODULE_LICENSE("GPL");
4077
4078static int __init xhci_hcd_init(void)
4079{
Sebastian Andrzej Siewior0cc47d52011-09-23 14:20:02 -07004080 int retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004081
4082 retval = xhci_register_pci();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004083 if (retval < 0) {
4084 printk(KERN_DEBUG "Problem registering PCI driver.");
4085 return retval;
4086 }
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004087 retval = xhci_register_plat();
4088 if (retval < 0) {
4089 printk(KERN_DEBUG "Problem registering platform driver.");
4090 goto unreg_pci;
4091 }
Sarah Sharp98441972009-05-14 11:44:18 -07004092 /*
4093 * Check the compiler generated sizes of structures that must be laid
4094 * out in specific ways for hardware access.
4095 */
4096 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4097 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4098 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4099 /* xhci_device_control has eight fields, and also
4100 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4101 */
Sarah Sharp98441972009-05-14 11:44:18 -07004102 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4103 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4104 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4105 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4106 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4107 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4108 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
4109 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004110 return 0;
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004111unreg_pci:
4112 xhci_unregister_pci();
4113 return retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004114}
4115module_init(xhci_hcd_init);
4116
4117static void __exit xhci_hcd_cleanup(void)
4118{
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004119 xhci_unregister_pci();
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004120 xhci_unregister_plat();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004121}
4122module_exit(xhci_hcd_cleanup);