blob: dd0dc15680b658bff5512fe88b97abe0c384449f [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;
109 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700110}
111
112/*
Sarah Sharped074532010-05-24 13:25:21 -0700113 * Set the run bit and wait for the host to be running.
114 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800115static int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700116{
117 u32 temp;
118 int ret;
119
120 temp = xhci_readl(xhci, &xhci->op_regs->command);
121 temp |= (CMD_RUN);
122 xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n",
123 temp);
124 xhci_writel(xhci, temp, &xhci->op_regs->command);
125
126 /*
127 * Wait for the HCHalted Status bit to be 0 to indicate the host is
128 * running.
129 */
130 ret = handshake(xhci, &xhci->op_regs->status,
131 STS_HALT, 0, XHCI_MAX_HALT_USEC);
132 if (ret == -ETIMEDOUT)
133 xhci_err(xhci, "Host took too long to start, "
134 "waited %u microseconds.\n",
135 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800136 if (!ret)
137 xhci->xhc_state &= ~XHCI_STATE_HALTED;
Sarah Sharped074532010-05-24 13:25:21 -0700138 return ret;
139}
140
141/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800142 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700143 *
144 * This resets pipelines, timers, counters, state machines, etc.
145 * Transactions will be terminated immediately, and operational registers
146 * will be set to their defaults.
147 */
148int xhci_reset(struct xhci_hcd *xhci)
149{
150 u32 command;
151 u32 state;
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700152 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700153
154 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpd3512f62009-07-27 12:03:50 -0700155 if ((state & STS_HALT) == 0) {
156 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
157 return 0;
158 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700159
160 xhci_dbg(xhci, "// Reset the HC\n");
161 command = xhci_readl(xhci, &xhci->op_regs->command);
162 command |= CMD_RESET;
163 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700164
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700165 ret = handshake(xhci, &xhci->op_regs->command,
166 CMD_RESET, 0, 250 * 1000);
167 if (ret)
168 return ret;
169
170 xhci_dbg(xhci, "Wait for controller to be ready for doorbell rings\n");
171 /*
172 * xHCI cannot write to any doorbells or operational registers other
173 * than status until the "Controller Not Ready" flag is cleared.
174 */
175 return handshake(xhci, &xhci->op_regs->status, STS_CNR, 0, 250 * 1000);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700176}
177
Dong Nguyen43b86af2010-07-21 16:56:08 -0700178/*
179 * Free IRQs
180 * free all IRQs request
181 */
182static void xhci_free_irq(struct xhci_hcd *xhci)
183{
184 int i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700185 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
186
Dong Nguyen43b86af2010-07-21 16:56:08 -0700187 /* return if using legacy interrupt */
188 if (xhci_to_hcd(xhci)->irq >= 0)
189 return;
190
191 if (xhci->msix_entries) {
192 for (i = 0; i < xhci->msix_count; i++)
193 if (xhci->msix_entries[i].vector)
194 free_irq(xhci->msix_entries[i].vector,
195 xhci_to_hcd(xhci));
196 } else if (pdev->irq >= 0)
197 free_irq(pdev->irq, xhci_to_hcd(xhci));
198
199 return;
200}
201
202/*
203 * Set up MSI
204 */
205static int xhci_setup_msi(struct xhci_hcd *xhci)
206{
207 int ret;
208 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
209
210 ret = pci_enable_msi(pdev);
211 if (ret) {
212 xhci_err(xhci, "failed to allocate MSI entry\n");
213 return ret;
214 }
215
216 ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq,
217 0, "xhci_hcd", xhci_to_hcd(xhci));
218 if (ret) {
219 xhci_err(xhci, "disable MSI interrupt\n");
220 pci_disable_msi(pdev);
221 }
222
223 return ret;
224}
225
226/*
227 * Set up MSI-X
228 */
229static int xhci_setup_msix(struct xhci_hcd *xhci)
230{
231 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800232 struct usb_hcd *hcd = xhci_to_hcd(xhci);
233 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700234
235 /*
236 * calculate number of msi-x vectors supported.
237 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
238 * with max number of interrupters based on the xhci HCSPARAMS1.
239 * - num_online_cpus: maximum msi-x vectors per CPUs core.
240 * Add additional 1 vector to ensure always available interrupt.
241 */
242 xhci->msix_count = min(num_online_cpus() + 1,
243 HCS_MAX_INTRS(xhci->hcs_params1));
244
245 xhci->msix_entries =
246 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
Greg Kroah-Hartman86871972010-11-11 09:41:02 -0800247 GFP_KERNEL);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700248 if (!xhci->msix_entries) {
249 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
250 return -ENOMEM;
251 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700252
253 for (i = 0; i < xhci->msix_count; i++) {
254 xhci->msix_entries[i].entry = i;
255 xhci->msix_entries[i].vector = 0;
256 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700257
258 ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count);
259 if (ret) {
260 xhci_err(xhci, "Failed to enable MSI-X\n");
261 goto free_entries;
262 }
263
Dong Nguyen43b86af2010-07-21 16:56:08 -0700264 for (i = 0; i < xhci->msix_count; i++) {
265 ret = request_irq(xhci->msix_entries[i].vector,
266 (irq_handler_t)xhci_msi_irq,
267 0, "xhci_hcd", xhci_to_hcd(xhci));
268 if (ret)
269 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700270 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700271
Andiry Xu00292272010-12-27 17:39:02 +0800272 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700273 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700274
275disable_msix:
Dong Nguyen43b86af2010-07-21 16:56:08 -0700276 xhci_err(xhci, "disable MSI-X interrupt\n");
277 xhci_free_irq(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700278 pci_disable_msix(pdev);
279free_entries:
280 kfree(xhci->msix_entries);
281 xhci->msix_entries = NULL;
282 return ret;
283}
284
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700285/* Free any IRQs and disable MSI-X */
286static void xhci_cleanup_msix(struct xhci_hcd *xhci)
287{
Andiry Xu00292272010-12-27 17:39:02 +0800288 struct usb_hcd *hcd = xhci_to_hcd(xhci);
289 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700290
Dong Nguyen43b86af2010-07-21 16:56:08 -0700291 xhci_free_irq(xhci);
292
293 if (xhci->msix_entries) {
294 pci_disable_msix(pdev);
295 kfree(xhci->msix_entries);
296 xhci->msix_entries = NULL;
297 } else {
298 pci_disable_msi(pdev);
299 }
300
Andiry Xu00292272010-12-27 17:39:02 +0800301 hcd->msix_enabled = 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700302 return;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700303}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700304
305/*
306 * Initialize memory for HCD and xHC (one-time init).
307 *
308 * Program the PAGESIZE register, initialize the device context array, create
309 * device contexts (?), set up a command ring segment (or two?), create event
310 * ring (one for now).
311 */
312int xhci_init(struct usb_hcd *hcd)
313{
314 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
315 int retval = 0;
316
317 xhci_dbg(xhci, "xhci_init\n");
318 spin_lock_init(&xhci->lock);
Sarah Sharpb0567b32009-08-07 14:04:36 -0700319 if (link_quirk) {
320 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
321 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
322 } else {
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700323 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700324 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700325 retval = xhci_mem_init(xhci, GFP_KERNEL);
326 xhci_dbg(xhci, "Finished xhci_init\n");
327
328 return retval;
329}
330
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700331/*-------------------------------------------------------------------------*/
332
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700333
334#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800335static void xhci_event_ring_work(unsigned long arg)
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700336{
337 unsigned long flags;
338 int temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700339 u64 temp_64;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700340 struct xhci_hcd *xhci = (struct xhci_hcd *) arg;
341 int i, j;
342
343 xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies);
344
345 spin_lock_irqsave(&xhci->lock, flags);
346 temp = xhci_readl(xhci, &xhci->op_regs->status);
347 xhci_dbg(xhci, "op reg status = 0x%x\n", temp);
Sarah Sharp7bd89b42011-07-01 13:35:40 -0700348 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
349 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe4ab05d2009-09-16 16:42:30 -0700350 xhci_dbg(xhci, "HW died, polling stopped.\n");
351 spin_unlock_irqrestore(&xhci->lock, flags);
352 return;
353 }
354
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700355 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
356 xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700357 xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask);
358 xhci->error_bitmask = 0;
359 xhci_dbg(xhci, "Event ring:\n");
360 xhci_debug_segment(xhci, xhci->event_ring->deq_seg);
361 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
Sarah Sharp8e595a52009-07-27 12:03:31 -0700362 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
363 temp_64 &= ~ERST_PTR_MASK;
364 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700365 xhci_dbg(xhci, "Command ring:\n");
366 xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg);
367 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
368 xhci_dbg_cmd_ptrs(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700369 for (i = 0; i < MAX_HC_SLOTS; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -0700370 if (!xhci->devs[i])
371 continue;
372 for (j = 0; j < 31; ++j) {
Sarah Sharpe9df17e2010-04-02 15:34:43 -0700373 xhci_dbg_ep_rings(xhci, i, j, &xhci->devs[i]->eps[j]);
Sarah Sharp3ffbba92009-04-27 19:57:38 -0700374 }
375 }
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700376 spin_unlock_irqrestore(&xhci->lock, flags);
377
378 if (!xhci->zombie)
379 mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ);
380 else
381 xhci_dbg(xhci, "Quit polling the event ring.\n");
382}
383#endif
384
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800385static int xhci_run_finished(struct xhci_hcd *xhci)
386{
387 if (xhci_start(xhci)) {
388 xhci_halt(xhci);
389 return -ENODEV;
390 }
391 xhci->shared_hcd->state = HC_STATE_RUNNING;
392
393 if (xhci->quirks & XHCI_NEC_HOST)
394 xhci_ring_cmd_db(xhci);
395
396 xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n");
397 return 0;
398}
399
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700400/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700401 * Start the HC after it was halted.
402 *
403 * This function is called by the USB core when the HC driver is added.
404 * Its opposite is xhci_stop().
405 *
406 * xhci_init() must be called once before this function can be called.
407 * Reset the HC, enable device slot contexts, program DCBAAP, and
408 * set command ring pointer and event ring pointer.
409 *
410 * Setup MSI-X vectors and enable interrupts.
411 */
412int xhci_run(struct usb_hcd *hcd)
413{
414 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700415 u64 temp_64;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700416 u32 ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700417 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700418 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700419
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800420 /* Start the xHCI host controller running only after the USB 2.0 roothub
421 * is setup.
422 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700423
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700424 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800425 if (!usb_hcd_is_primary_hcd(hcd))
426 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700427
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700428 xhci_dbg(xhci, "xhci_run\n");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700429 /* unregister the legacy interrupt */
430 if (hcd->irq)
431 free_irq(hcd->irq, hcd);
432 hcd->irq = -1;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700433
Sarah Sharpf5182b42011-06-02 11:33:02 -0700434 /* Some Fresco Logic host controllers advertise MSI, but fail to
435 * generate interrupts. Don't even try to enable MSI.
436 */
437 if (xhci->quirks & XHCI_BROKEN_MSI)
438 goto legacy_irq;
439
Dong Nguyen43b86af2010-07-21 16:56:08 -0700440 ret = xhci_setup_msix(xhci);
441 if (ret)
442 /* fall back to msi*/
443 ret = xhci_setup_msi(xhci);
444
445 if (ret) {
Sarah Sharpf5182b42011-06-02 11:33:02 -0700446legacy_irq:
Dong Nguyen43b86af2010-07-21 16:56:08 -0700447 /* fall back to legacy interrupt*/
448 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
449 hcd->irq_descr, hcd);
450 if (ret) {
451 xhci_err(xhci, "request interrupt %d failed\n",
452 pdev->irq);
453 return ret;
454 }
455 hcd->irq = pdev->irq;
456 }
457
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700458#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
459 init_timer(&xhci->event_ring_timer);
460 xhci->event_ring_timer.data = (unsigned long) xhci;
Sarah Sharp23e3be12009-04-29 19:05:20 -0700461 xhci->event_ring_timer.function = xhci_event_ring_work;
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700462 /* Poll the event ring */
463 xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ;
464 xhci->zombie = 0;
465 xhci_dbg(xhci, "Setting event ring polling timer\n");
466 add_timer(&xhci->event_ring_timer);
467#endif
468
Sarah Sharp66e49d82009-07-27 12:03:46 -0700469 xhci_dbg(xhci, "Command ring memory map follows:\n");
470 xhci_debug_ring(xhci, xhci->cmd_ring);
471 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
472 xhci_dbg_cmd_ptrs(xhci);
473
474 xhci_dbg(xhci, "ERST memory map follows:\n");
475 xhci_dbg_erst(xhci, &xhci->erst);
476 xhci_dbg(xhci, "Event ring:\n");
477 xhci_debug_ring(xhci, xhci->event_ring);
478 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
479 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
480 temp_64 &= ~ERST_PTR_MASK;
481 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
482
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700483 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
484 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700485 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700486 temp |= (u32) 160;
487 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
488
489 /* Set the HCD state before we enable the irqs */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700490 temp = xhci_readl(xhci, &xhci->op_regs->command);
491 temp |= (CMD_EIE);
492 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
493 temp);
494 xhci_writel(xhci, temp, &xhci->op_regs->command);
495
496 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700497 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
498 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700499 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
500 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800501 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700502
Sarah Sharp02386342010-05-24 13:25:28 -0700503 if (xhci->quirks & XHCI_NEC_HOST)
504 xhci_queue_vendor_command(xhci, 0, 0, 0,
505 TRB_TYPE(TRB_NEC_GET_FW));
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700506
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800507 xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700508 return 0;
509}
510
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800511static void xhci_only_stop_hcd(struct usb_hcd *hcd)
512{
513 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
514
515 spin_lock_irq(&xhci->lock);
516 xhci_halt(xhci);
517
518 /* The shared_hcd is going to be deallocated shortly (the USB core only
519 * calls this function when allocation fails in usb_add_hcd(), or
520 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
521 */
522 xhci->shared_hcd = NULL;
523 spin_unlock_irq(&xhci->lock);
524}
525
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700526/*
527 * Stop xHCI driver.
528 *
529 * This function is called by the USB core when the HC driver is removed.
530 * Its opposite is xhci_run().
531 *
532 * Disable device contexts, disable IRQs, and quiesce the HC.
533 * Reset the HC, finish any completed transactions, and cleanup memory.
534 */
535void xhci_stop(struct usb_hcd *hcd)
536{
537 u32 temp;
538 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
539
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800540 if (!usb_hcd_is_primary_hcd(hcd)) {
541 xhci_only_stop_hcd(xhci->shared_hcd);
542 return;
543 }
544
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700545 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800546 /* Make sure the xHC is halted for a USB3 roothub
547 * (xhci_stop() could be called as part of failed init).
548 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700549 xhci_halt(xhci);
550 xhci_reset(xhci);
551 spin_unlock_irq(&xhci->lock);
552
Zhang Rui40a9fb12010-12-17 13:17:04 -0800553 xhci_cleanup_msix(xhci);
554
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700555#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
556 /* Tell the event ring poll function not to reschedule */
557 xhci->zombie = 1;
558 del_timer_sync(&xhci->event_ring_timer);
559#endif
560
Andiry Xuc41136b2011-03-22 17:08:14 +0800561 if (xhci->quirks & XHCI_AMD_PLL_FIX)
562 usb_amd_dev_put();
563
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700564 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
565 temp = xhci_readl(xhci, &xhci->op_regs->status);
566 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
567 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
568 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
569 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800570 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700571
572 xhci_dbg(xhci, "cleaning up memory\n");
573 xhci_mem_cleanup(xhci);
574 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
575 xhci_readl(xhci, &xhci->op_regs->status));
576}
577
578/*
579 * Shutdown HC (not bus-specific)
580 *
581 * This is called when the machine is rebooting or halting. We assume that the
582 * machine will be powered off, and the HC's internal state will be reset.
583 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800584 *
585 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700586 */
587void xhci_shutdown(struct usb_hcd *hcd)
588{
589 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
590
591 spin_lock_irq(&xhci->lock);
592 xhci_halt(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700593 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700594
Zhang Rui40a9fb12010-12-17 13:17:04 -0800595 xhci_cleanup_msix(xhci);
596
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700597 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
598 xhci_readl(xhci, &xhci->op_regs->status));
599}
600
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700601#ifdef CONFIG_PM
Andiry Xu5535b1d2010-10-14 07:23:06 -0700602static void xhci_save_registers(struct xhci_hcd *xhci)
603{
604 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
605 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
606 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
607 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
608 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
609 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
610 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
611 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
612 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
613}
614
615static void xhci_restore_registers(struct xhci_hcd *xhci)
616{
617 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
618 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
619 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
620 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
621 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
622 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
623 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
624 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
625}
626
Sarah Sharp89821322010-11-12 11:59:31 -0800627static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
628{
629 u64 val_64;
630
631 /* step 2: initialize command ring buffer */
632 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
633 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
634 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
635 xhci->cmd_ring->dequeue) &
636 (u64) ~CMD_RING_RSVD_BITS) |
637 xhci->cmd_ring->cycle_state;
638 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
639 (long unsigned long) val_64);
640 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
641}
642
643/*
644 * The whole command ring must be cleared to zero when we suspend the host.
645 *
646 * The host doesn't save the command ring pointer in the suspend well, so we
647 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
648 * aligned, because of the reserved bits in the command ring dequeue pointer
649 * register. Therefore, we can't just set the dequeue pointer back in the
650 * middle of the ring (TRBs are 16-byte aligned).
651 */
652static void xhci_clear_command_ring(struct xhci_hcd *xhci)
653{
654 struct xhci_ring *ring;
655 struct xhci_segment *seg;
656
657 ring = xhci->cmd_ring;
658 seg = ring->deq_seg;
659 do {
660 memset(seg->trbs, 0, SEGMENT_SIZE);
661 seg = seg->next;
662 } while (seg != ring->deq_seg);
663
664 /* Reset the software enqueue and dequeue pointers */
665 ring->deq_seg = ring->first_seg;
666 ring->dequeue = ring->first_seg->trbs;
667 ring->enq_seg = ring->deq_seg;
668 ring->enqueue = ring->dequeue;
669
670 /*
671 * Ring is now zeroed, so the HW should look for change of ownership
672 * when the cycle bit is set to 1.
673 */
674 ring->cycle_state = 1;
675
676 /*
677 * Reset the hardware dequeue pointer.
678 * Yes, this will need to be re-written after resume, but we're paranoid
679 * and want to make sure the hardware doesn't access bogus memory
680 * because, say, the BIOS or an SMI started the host without changing
681 * the command ring pointers.
682 */
683 xhci_set_cmd_ring_deq(xhci);
684}
685
Andiry Xu5535b1d2010-10-14 07:23:06 -0700686/*
687 * Stop HC (not bus-specific)
688 *
689 * This is called when the machine transition into S3/S4 mode.
690 *
691 */
692int xhci_suspend(struct xhci_hcd *xhci)
693{
694 int rc = 0;
695 struct usb_hcd *hcd = xhci_to_hcd(xhci);
696 u32 command;
Andiry Xu00292272010-12-27 17:39:02 +0800697 int i;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700698
699 spin_lock_irq(&xhci->lock);
700 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800701 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700702 /* step 1: stop endpoint */
703 /* skipped assuming that port suspend has done */
704
705 /* step 2: clear Run/Stop bit */
706 command = xhci_readl(xhci, &xhci->op_regs->command);
707 command &= ~CMD_RUN;
708 xhci_writel(xhci, command, &xhci->op_regs->command);
709 if (handshake(xhci, &xhci->op_regs->status,
710 STS_HALT, STS_HALT, 100*100)) {
711 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
712 spin_unlock_irq(&xhci->lock);
713 return -ETIMEDOUT;
714 }
Sarah Sharp89821322010-11-12 11:59:31 -0800715 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700716
717 /* step 3: save registers */
718 xhci_save_registers(xhci);
719
720 /* step 4: set CSS flag */
721 command = xhci_readl(xhci, &xhci->op_regs->command);
722 command |= CMD_CSS;
723 xhci_writel(xhci, command, &xhci->op_regs->command);
724 if (handshake(xhci, &xhci->op_regs->status, STS_SAVE, 0, 10*100)) {
725 xhci_warn(xhci, "WARN: xHC CMD_CSS timeout\n");
726 spin_unlock_irq(&xhci->lock);
727 return -ETIMEDOUT;
728 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700729 spin_unlock_irq(&xhci->lock);
730
Andiry Xu00292272010-12-27 17:39:02 +0800731 /* step 5: remove core well power */
732 /* synchronize irq when using MSI-X */
733 if (xhci->msix_entries) {
734 for (i = 0; i < xhci->msix_count; i++)
735 synchronize_irq(xhci->msix_entries[i].vector);
736 }
737
Andiry Xu5535b1d2010-10-14 07:23:06 -0700738 return rc;
739}
740
741/*
742 * start xHC (not bus-specific)
743 *
744 * This is called when the machine transition from S3/S4 mode.
745 *
746 */
747int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
748{
749 u32 command, temp = 0;
750 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800751 struct usb_hcd *secondary_hcd;
Andiry Xu019a35f2011-01-06 15:43:17 +0800752 int retval;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700753
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800754 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300755 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800756 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800757 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
758 time_before(jiffies,
759 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d2010-10-14 07:23:06 -0700760 msleep(100);
761
762 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200763 if (xhci->quirks & XHCI_RESET_ON_RESUME)
764 hibernated = true;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700765
766 if (!hibernated) {
767 /* step 1: restore register */
768 xhci_restore_registers(xhci);
769 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800770 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700771 /* step 3: restore state and start state*/
772 /* step 3: set CRS flag */
773 command = xhci_readl(xhci, &xhci->op_regs->command);
774 command |= CMD_CRS;
775 xhci_writel(xhci, command, &xhci->op_regs->command);
776 if (handshake(xhci, &xhci->op_regs->status,
777 STS_RESTORE, 0, 10*100)) {
778 xhci_dbg(xhci, "WARN: xHC CMD_CSS timeout\n");
779 spin_unlock_irq(&xhci->lock);
780 return -ETIMEDOUT;
781 }
782 temp = xhci_readl(xhci, &xhci->op_regs->status);
783 }
784
785 /* If restore operation fails, re-initialize the HC during resume */
786 if ((temp & STS_SRE) || hibernated) {
Sarah Sharpfedd3832011-04-12 17:43:19 -0700787 /* Let the USB core know _both_ roothubs lost power. */
788 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
789 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700790
791 xhci_dbg(xhci, "Stop HCD\n");
792 xhci_halt(xhci);
793 xhci_reset(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700794 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +0800795 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700796
797#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
798 /* Tell the event ring poll function not to reschedule */
799 xhci->zombie = 1;
800 del_timer_sync(&xhci->event_ring_timer);
801#endif
802
803 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
804 temp = xhci_readl(xhci, &xhci->op_regs->status);
805 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
806 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
807 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
808 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800809 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700810
811 xhci_dbg(xhci, "cleaning up memory\n");
812 xhci_mem_cleanup(xhci);
813 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
814 xhci_readl(xhci, &xhci->op_regs->status));
815
Sarah Sharp65b22f92010-12-17 12:35:05 -0800816 /* USB core calls the PCI reinit and start functions twice:
817 * first with the primary HCD, and then with the secondary HCD.
818 * If we don't do the same, the host will never be started.
819 */
820 if (!usb_hcd_is_primary_hcd(hcd))
821 secondary_hcd = hcd;
822 else
823 secondary_hcd = xhci->shared_hcd;
824
825 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
826 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700827 if (retval)
828 return retval;
Sarah Sharp65b22f92010-12-17 12:35:05 -0800829 xhci_dbg(xhci, "Start the primary HCD\n");
830 retval = xhci_run(hcd->primary_hcd);
831 if (retval)
832 goto failed_restart;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700833
Sarah Sharp65b22f92010-12-17 12:35:05 -0800834 xhci_dbg(xhci, "Start the secondary HCD\n");
835 retval = xhci_run(secondary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -0800836 if (!retval) {
Andiry Xu5535b1d2010-10-14 07:23:06 -0700837 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800838 set_bit(HCD_FLAG_HW_ACCESSIBLE,
839 &xhci->shared_hcd->flags);
840 }
Sarah Sharp65b22f92010-12-17 12:35:05 -0800841failed_restart:
Andiry Xu5535b1d2010-10-14 07:23:06 -0700842 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb3209372011-03-07 11:24:07 -0800843 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700844 return retval;
845 }
846
Andiry Xu5535b1d2010-10-14 07:23:06 -0700847 /* step 4: set Run/Stop bit */
848 command = xhci_readl(xhci, &xhci->op_regs->command);
849 command |= CMD_RUN;
850 xhci_writel(xhci, command, &xhci->op_regs->command);
851 handshake(xhci, &xhci->op_regs->status, STS_HALT,
852 0, 250 * 1000);
853
854 /* step 5: walk topology and initialize portsc,
855 * portpmsc and portli
856 */
857 /* this is done in bus_resume */
858
859 /* step 6: restart each of the previously
860 * Running endpoints by ringing their doorbells
861 */
862
863 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800864 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700865
866 spin_unlock_irq(&xhci->lock);
867 return 0;
868}
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700869#endif /* CONFIG_PM */
870
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700871/*-------------------------------------------------------------------------*/
872
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -0700873/**
874 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
875 * HCDs. Find the index for an endpoint given its descriptor. Use the return
876 * value to right shift 1 for the bitmask.
877 *
878 * Index = (epnum * 2) + direction - 1,
879 * where direction = 0 for OUT, 1 for IN.
880 * For control endpoints, the IN index is used (OUT index is unused), so
881 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
882 */
883unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
884{
885 unsigned int index;
886 if (usb_endpoint_xfer_control(desc))
887 index = (unsigned int) (usb_endpoint_num(desc)*2);
888 else
889 index = (unsigned int) (usb_endpoint_num(desc)*2) +
890 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
891 return index;
892}
893
Sarah Sharpf94e01862009-04-27 19:58:38 -0700894/* Find the flag for this endpoint (for use in the control context). Use the
895 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
896 * bit 1, etc.
897 */
898unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
899{
900 return 1 << (xhci_get_endpoint_index(desc) + 1);
901}
902
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700903/* Find the flag for this endpoint (for use in the control context). Use the
904 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
905 * bit 1, etc.
906 */
907unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
908{
909 return 1 << (ep_index + 1);
910}
911
Sarah Sharpf94e01862009-04-27 19:58:38 -0700912/* Compute the last valid endpoint context index. Basically, this is the
913 * endpoint index plus one. For slot contexts with more than valid endpoint,
914 * we find the most significant bit set in the added contexts flags.
915 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
916 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
917 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -0700918unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -0700919{
920 return fls(added_ctxs) - 1;
921}
922
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -0700923/* Returns 1 if the arguments are OK;
924 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
925 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800926static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -0700927 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
928 const char *func) {
929 struct xhci_hcd *xhci;
930 struct xhci_virt_device *virt_dev;
931
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -0700932 if (!hcd || (check_ep && !ep) || !udev) {
933 printk(KERN_DEBUG "xHCI %s called with invalid args\n",
934 func);
935 return -EINVAL;
936 }
937 if (!udev->parent) {
938 printk(KERN_DEBUG "xHCI %s called for root hub\n",
939 func);
940 return 0;
941 }
Andiry Xu64927732010-10-14 07:22:45 -0700942
Sarah Sharp7bd89b42011-07-01 13:35:40 -0700943 xhci = hcd_to_xhci(hcd);
944 if (xhci->xhc_state & XHCI_STATE_HALTED)
945 return -ENODEV;
946
Andiry Xu64927732010-10-14 07:22:45 -0700947 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -0700948 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Andiry Xu64927732010-10-14 07:22:45 -0700949 printk(KERN_DEBUG "xHCI %s called with unaddressed "
950 "device\n", func);
951 return -EINVAL;
952 }
953
954 virt_dev = xhci->devs[udev->slot_id];
955 if (virt_dev->udev != udev) {
956 printk(KERN_DEBUG "xHCI %s called with udev and "
957 "virt_dev does not match\n", func);
958 return -EINVAL;
959 }
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -0700960 }
Andiry Xu64927732010-10-14 07:22:45 -0700961
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -0700962 return 1;
963}
964
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -0700965static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -0700966 struct usb_device *udev, struct xhci_command *command,
967 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -0700968
969/*
970 * Full speed devices may have a max packet size greater than 8 bytes, but the
971 * USB core doesn't know that until it reads the first 8 bytes of the
972 * descriptor. If the usb_device's max packet size changes after that point,
973 * we need to issue an evaluate context command and wait on it.
974 */
975static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
976 unsigned int ep_index, struct urb *urb)
977{
978 struct xhci_container_ctx *in_ctx;
979 struct xhci_container_ctx *out_ctx;
980 struct xhci_input_control_ctx *ctrl_ctx;
981 struct xhci_ep_ctx *ep_ctx;
982 int max_packet_size;
983 int hw_max_packet_size;
984 int ret = 0;
985
986 out_ctx = xhci->devs[slot_id]->out_ctx;
987 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +1100988 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700989 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -0700990 if (hw_max_packet_size != max_packet_size) {
991 xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n");
992 xhci_dbg(xhci, "Max packet size in usb_device = %d\n",
993 max_packet_size);
994 xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n",
995 hw_max_packet_size);
996 xhci_dbg(xhci, "Issuing evaluate context command.\n");
997
998 /* Set up the modified control endpoint 0 */
Sarah Sharp913a8a32009-09-04 10:53:13 -0700999 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1000 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001001 in_ctx = xhci->devs[slot_id]->in_ctx;
1002 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001003 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1004 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001005
1006 /* Set up the input context flags for the command */
1007 /* FIXME: This won't work if a non-default control endpoint
1008 * changes max packet sizes.
1009 */
1010 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001011 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001012 ctrl_ctx->drop_flags = 0;
1013
1014 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1015 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1016 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1017 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1018
Sarah Sharp913a8a32009-09-04 10:53:13 -07001019 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1020 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001021
1022 /* Clean up the input context for later use by bandwidth
1023 * functions.
1024 */
Matt Evans28ccd292011-03-29 13:40:46 +11001025 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001026 }
1027 return ret;
1028}
1029
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001030/*
1031 * non-error returns are a promise to giveback() the urb later
1032 * we drop ownership so next owner (or urb unlink) can get it
1033 */
1034int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1035{
1036 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001037 struct xhci_td *buffer;
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001038 unsigned long flags;
1039 int ret = 0;
1040 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001041 struct urb_priv *urb_priv;
1042 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001043
Andiry Xu64927732010-10-14 07:22:45 -07001044 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1045 true, true, __func__) <= 0)
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001046 return -EINVAL;
1047
1048 slot_id = urb->dev->slot_id;
1049 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001050
Alan Stern541c7d42010-06-22 16:39:10 -04001051 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001052 if (!in_interrupt())
1053 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1054 ret = -ESHUTDOWN;
1055 goto exit;
1056 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001057
1058 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1059 size = urb->number_of_packets;
1060 else
1061 size = 1;
1062
1063 urb_priv = kzalloc(sizeof(struct urb_priv) +
1064 size * sizeof(struct xhci_td *), mem_flags);
1065 if (!urb_priv)
1066 return -ENOMEM;
1067
Andiry Xu2ffdea22011-09-02 11:05:57 -07001068 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1069 if (!buffer) {
1070 kfree(urb_priv);
1071 return -ENOMEM;
1072 }
1073
Andiry Xu8e51adc2010-07-22 15:23:31 -07001074 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001075 urb_priv->td[i] = buffer;
1076 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001077 }
1078
1079 urb_priv->length = size;
1080 urb_priv->td_cnt = 0;
1081 urb->hcpriv = urb_priv;
1082
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001083 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1084 /* Check to see if the max packet size for the default control
1085 * endpoint changed during FS device enumeration
1086 */
1087 if (urb->dev->speed == USB_SPEED_FULL) {
1088 ret = xhci_check_maxpacket(xhci, slot_id,
1089 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001090 if (ret < 0) {
1091 xhci_urb_free_priv(xhci, urb_priv);
1092 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001093 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001094 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001095 }
1096
Sarah Sharpb11069f2009-07-27 12:03:23 -07001097 /* We have a spinlock and interrupts disabled, so we must pass
1098 * atomic context to this function, which may allocate memory.
1099 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001100 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001101 if (xhci->xhc_state & XHCI_STATE_DYING)
1102 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001103 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001104 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001105 if (ret)
1106 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001107 spin_unlock_irqrestore(&xhci->lock, flags);
1108 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1109 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001110 if (xhci->xhc_state & XHCI_STATE_DYING)
1111 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001112 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1113 EP_GETTING_STREAMS) {
1114 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1115 "is transitioning to using streams.\n");
1116 ret = -EINVAL;
1117 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1118 EP_GETTING_NO_STREAMS) {
1119 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1120 "is transitioning to "
1121 "not having streams.\n");
1122 ret = -EINVAL;
1123 } else {
1124 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1125 slot_id, ep_index);
1126 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001127 if (ret)
1128 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001129 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001130 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1131 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001132 if (xhci->xhc_state & XHCI_STATE_DYING)
1133 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001134 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1135 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001136 if (ret)
1137 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001138 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001139 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001140 spin_lock_irqsave(&xhci->lock, flags);
1141 if (xhci->xhc_state & XHCI_STATE_DYING)
1142 goto dying;
1143 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1144 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001145 if (ret)
1146 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001147 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001148 }
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001149exit:
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001150 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001151dying:
1152 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1153 "non-responsive xHCI host.\n",
1154 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001155 ret = -ESHUTDOWN;
1156free_priv:
1157 xhci_urb_free_priv(xhci, urb_priv);
1158 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001159 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001160 return ret;
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001161}
1162
Sarah Sharp021bff92010-07-29 22:12:20 -07001163/* Get the right ring for the given URB.
1164 * If the endpoint supports streams, boundary check the URB's stream ID.
1165 * If the endpoint doesn't support streams, return the singular endpoint ring.
1166 */
1167static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1168 struct urb *urb)
1169{
1170 unsigned int slot_id;
1171 unsigned int ep_index;
1172 unsigned int stream_id;
1173 struct xhci_virt_ep *ep;
1174
1175 slot_id = urb->dev->slot_id;
1176 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1177 stream_id = urb->stream_id;
1178 ep = &xhci->devs[slot_id]->eps[ep_index];
1179 /* Common case: no streams */
1180 if (!(ep->ep_state & EP_HAS_STREAMS))
1181 return ep->ring;
1182
1183 if (stream_id == 0) {
1184 xhci_warn(xhci,
1185 "WARN: Slot ID %u, ep index %u has streams, "
1186 "but URB has no stream ID.\n",
1187 slot_id, ep_index);
1188 return NULL;
1189 }
1190
1191 if (stream_id < ep->stream_info->num_streams)
1192 return ep->stream_info->stream_rings[stream_id];
1193
1194 xhci_warn(xhci,
1195 "WARN: Slot ID %u, ep index %u has "
1196 "stream IDs 1 to %u allocated, "
1197 "but stream ID %u is requested.\n",
1198 slot_id, ep_index,
1199 ep->stream_info->num_streams - 1,
1200 stream_id);
1201 return NULL;
1202}
1203
Sarah Sharpae636742009-04-29 19:02:31 -07001204/*
1205 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1206 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1207 * should pick up where it left off in the TD, unless a Set Transfer Ring
1208 * Dequeue Pointer is issued.
1209 *
1210 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1211 * the ring. Since the ring is a contiguous structure, they can't be physically
1212 * removed. Instead, there are two options:
1213 *
1214 * 1) If the HC is in the middle of processing the URB to be canceled, we
1215 * simply move the ring's dequeue pointer past those TRBs using the Set
1216 * Transfer Ring Dequeue Pointer command. This will be the common case,
1217 * when drivers timeout on the last submitted URB and attempt to cancel.
1218 *
1219 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1220 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1221 * HC will need to invalidate the any TRBs it has cached after the stop
1222 * endpoint command, as noted in the xHCI 0.95 errata.
1223 *
1224 * 3) The TD may have completed by the time the Stop Endpoint Command
1225 * completes, so software needs to handle that case too.
1226 *
1227 * This function should protect against the TD enqueueing code ringing the
1228 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1229 * It also needs to account for multiple cancellations on happening at the same
1230 * time for the same endpoint.
1231 *
1232 * Note that this function can be called in any context, or so says
1233 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001234 */
1235int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1236{
Sarah Sharpae636742009-04-29 19:02:31 -07001237 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001238 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001239 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001240 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001241 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001242 struct xhci_td *td;
1243 unsigned int ep_index;
1244 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001245 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07001246
1247 xhci = hcd_to_xhci(hcd);
1248 spin_lock_irqsave(&xhci->lock, flags);
1249 /* Make sure the URB hasn't completed or been unlinked already */
1250 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1251 if (ret || !urb->hcpriv)
1252 goto done;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001253 temp = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001254 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001255 xhci_dbg(xhci, "HW died, freeing TD.\n");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001256 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001257 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1258 td = urb_priv->td[i];
1259 if (!list_empty(&td->td_list))
1260 list_del_init(&td->td_list);
1261 if (!list_empty(&td->cancelled_td_list))
1262 list_del_init(&td->cancelled_td_list);
1263 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001264
1265 usb_hcd_unlink_urb_from_ep(hcd, urb);
1266 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001267 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001268 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001269 return ret;
1270 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001271 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1272 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001273 xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on "
1274 "non-responsive xHCI host.\n",
1275 urb->ep->desc.bEndpointAddress, urb);
1276 /* Let the stop endpoint command watchdog timer (which set this
1277 * state) finish cleaning up the endpoint TD lists. We must
1278 * have caught it in the middle of dropping a lock and giving
1279 * back an URB.
1280 */
1281 goto done;
1282 }
Sarah Sharpae636742009-04-29 19:02:31 -07001283
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001284 xhci_dbg(xhci, "Cancel URB %p\n", urb);
Sarah Sharp66e49d82009-07-27 12:03:46 -07001285 xhci_dbg(xhci, "Event ring:\n");
1286 xhci_debug_ring(xhci, xhci->event_ring);
Sarah Sharpae636742009-04-29 19:02:31 -07001287 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001288 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001289 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1290 if (!ep_ring) {
1291 ret = -EINVAL;
1292 goto done;
1293 }
1294
Sarah Sharp66e49d82009-07-27 12:03:46 -07001295 xhci_dbg(xhci, "Endpoint ring:\n");
1296 xhci_debug_ring(xhci, ep_ring);
Sarah Sharpae636742009-04-29 19:02:31 -07001297
Andiry Xu8e51adc2010-07-22 15:23:31 -07001298 urb_priv = urb->hcpriv;
1299
1300 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1301 td = urb_priv->td[i];
1302 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1303 }
1304
Sarah Sharpae636742009-04-29 19:02:31 -07001305 /* Queue a stop endpoint command, but only if this is
1306 * the first cancellation to be handled.
1307 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001308 if (!(ep->ep_state & EP_HALT_PENDING)) {
1309 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001310 ep->stop_cmds_pending++;
1311 ep->stop_cmd_timer.expires = jiffies +
1312 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1313 add_timer(&ep->stop_cmd_timer);
Andiry Xube88fe42010-10-14 07:22:57 -07001314 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001315 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001316 }
1317done:
1318 spin_unlock_irqrestore(&xhci->lock, flags);
1319 return ret;
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001320}
1321
Sarah Sharpf94e01862009-04-27 19:58:38 -07001322/* Drop an endpoint from a new bandwidth configuration for this device.
1323 * Only one call to this function is allowed per endpoint before
1324 * check_bandwidth() or reset_bandwidth() must be called.
1325 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1326 * add the endpoint to the schedule with possibly new parameters denoted by a
1327 * different endpoint descriptor in usb_host_endpoint.
1328 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1329 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001330 *
1331 * The USB core will not allow URBs to be queued to an endpoint that is being
1332 * disabled, so there's no need for mutual exclusion to protect
1333 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001334 */
1335int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1336 struct usb_host_endpoint *ep)
1337{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001338 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001339 struct xhci_container_ctx *in_ctx, *out_ctx;
1340 struct xhci_input_control_ctx *ctrl_ctx;
1341 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001342 unsigned int last_ctx;
1343 unsigned int ep_index;
1344 struct xhci_ep_ctx *ep_ctx;
1345 u32 drop_flag;
1346 u32 new_add_flags, new_drop_flags, new_slot_info;
1347 int ret;
1348
Andiry Xu64927732010-10-14 07:22:45 -07001349 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001350 if (ret <= 0)
1351 return ret;
1352 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001353 if (xhci->xhc_state & XHCI_STATE_DYING)
1354 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001355
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001356 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001357 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1358 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1359 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1360 __func__, drop_flag);
1361 return 0;
1362 }
1363
Sarah Sharpf94e01862009-04-27 19:58:38 -07001364 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001365 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1366 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001367 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001368 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001369 /* If the HC already knows the endpoint is disabled,
1370 * or the HCD has noted it is disabled, ignore this request
1371 */
Matt Evansf5960b62011-06-01 10:22:55 +10001372 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1373 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001374 le32_to_cpu(ctrl_ctx->drop_flags) &
1375 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001376 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1377 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001378 return 0;
1379 }
1380
Matt Evans28ccd292011-03-29 13:40:46 +11001381 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1382 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001383
Matt Evans28ccd292011-03-29 13:40:46 +11001384 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1385 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001386
Matt Evans28ccd292011-03-29 13:40:46 +11001387 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
John Yound115b042009-07-27 12:05:15 -07001388 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001389 /* Update the last valid endpoint context, if we deleted the last one */
Matt Evans28ccd292011-03-29 13:40:46 +11001390 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1391 LAST_CTX(last_ctx)) {
1392 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1393 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001394 }
Matt Evans28ccd292011-03-29 13:40:46 +11001395 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001396
1397 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1398
Sarah Sharpf94e01862009-04-27 19:58:38 -07001399 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1400 (unsigned int) ep->desc.bEndpointAddress,
1401 udev->slot_id,
1402 (unsigned int) new_drop_flags,
1403 (unsigned int) new_add_flags,
1404 (unsigned int) new_slot_info);
1405 return 0;
1406}
1407
1408/* Add an endpoint to a new possible bandwidth configuration for this device.
1409 * Only one call to this function is allowed per endpoint before
1410 * check_bandwidth() or reset_bandwidth() must be called.
1411 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1412 * add the endpoint to the schedule with possibly new parameters denoted by a
1413 * different endpoint descriptor in usb_host_endpoint.
1414 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1415 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001416 *
1417 * The USB core will not allow URBs to be queued to an endpoint until the
1418 * configuration or alt setting is installed in the device, so there's no need
1419 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001420 */
1421int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1422 struct usb_host_endpoint *ep)
1423{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001424 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001425 struct xhci_container_ctx *in_ctx, *out_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001426 unsigned int ep_index;
1427 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001428 struct xhci_slot_ctx *slot_ctx;
1429 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001430 u32 added_ctxs;
1431 unsigned int last_ctx;
1432 u32 new_add_flags, new_drop_flags, new_slot_info;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001433 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001434 int ret = 0;
1435
Andiry Xu64927732010-10-14 07:22:45 -07001436 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001437 if (ret <= 0) {
1438 /* So we won't queue a reset ep command for a root hub */
1439 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001440 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001441 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001442 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001443 if (xhci->xhc_state & XHCI_STATE_DYING)
1444 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001445
1446 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1447 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1448 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1449 /* FIXME when we have to issue an evaluate endpoint command to
1450 * deal with ep0 max packet size changing once we get the
1451 * descriptors
1452 */
1453 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1454 __func__, added_ctxs);
1455 return 0;
1456 }
1457
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001458 virt_dev = xhci->devs[udev->slot_id];
1459 in_ctx = virt_dev->in_ctx;
1460 out_ctx = virt_dev->out_ctx;
John Yound115b042009-07-27 12:05:15 -07001461 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001462 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001463 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001464
1465 /* If this endpoint is already in use, and the upper layers are trying
1466 * to add it again without dropping it, reject the addition.
1467 */
1468 if (virt_dev->eps[ep_index].ring &&
1469 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1470 xhci_get_endpoint_flag(&ep->desc))) {
1471 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1472 "without dropping it.\n",
1473 (unsigned int) ep->desc.bEndpointAddress);
1474 return -EINVAL;
1475 }
1476
Sarah Sharpf94e01862009-04-27 19:58:38 -07001477 /* If the HCD has already noted the endpoint is enabled,
1478 * ignore this request.
1479 */
Matt Evans28ccd292011-03-29 13:40:46 +11001480 if (le32_to_cpu(ctrl_ctx->add_flags) &
1481 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001482 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1483 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001484 return 0;
1485 }
1486
Sarah Sharpf88ba782009-05-14 11:44:22 -07001487 /*
1488 * Configuration and alternate setting changes must be done in
1489 * process context, not interrupt context (or so documenation
1490 * for usb_set_interface() and usb_set_configuration() claim).
1491 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001492 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001493 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1494 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001495 return -ENOMEM;
1496 }
1497
Matt Evans28ccd292011-03-29 13:40:46 +11001498 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1499 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001500
1501 /* If xhci_endpoint_disable() was called for this endpoint, but the
1502 * xHC hasn't been notified yet through the check_bandwidth() call,
1503 * this re-adds a new state for the endpoint from the new endpoint
1504 * descriptors. We must drop and re-add this endpoint, so we leave the
1505 * drop flags alone.
1506 */
Matt Evans28ccd292011-03-29 13:40:46 +11001507 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001508
John Yound115b042009-07-27 12:05:15 -07001509 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001510 /* Update the last valid endpoint context, if we just added one past */
Matt Evans28ccd292011-03-29 13:40:46 +11001511 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1512 LAST_CTX(last_ctx)) {
1513 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1514 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001515 }
Matt Evans28ccd292011-03-29 13:40:46 +11001516 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001517
Sarah Sharpa1587d92009-07-27 12:03:15 -07001518 /* Store the usb_device pointer for later use */
1519 ep->hcpriv = udev;
1520
Sarah Sharpf94e01862009-04-27 19:58:38 -07001521 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1522 (unsigned int) ep->desc.bEndpointAddress,
1523 udev->slot_id,
1524 (unsigned int) new_drop_flags,
1525 (unsigned int) new_add_flags,
1526 (unsigned int) new_slot_info);
1527 return 0;
1528}
1529
John Yound115b042009-07-27 12:05:15 -07001530static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001531{
John Yound115b042009-07-27 12:05:15 -07001532 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001533 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001534 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001535 int i;
1536
1537 /* When a device's add flag and drop flag are zero, any subsequent
1538 * configure endpoint command will leave that endpoint's state
1539 * untouched. Make sure we don't leave any old state in the input
1540 * endpoint contexts.
1541 */
John Yound115b042009-07-27 12:05:15 -07001542 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1543 ctrl_ctx->drop_flags = 0;
1544 ctrl_ctx->add_flags = 0;
1545 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001546 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001547 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001548 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001549 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001550 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001551 ep_ctx->ep_info = 0;
1552 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001553 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001554 ep_ctx->tx_info = 0;
1555 }
1556}
1557
Sarah Sharpf2217e82009-08-07 14:04:43 -07001558static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001559 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001560{
1561 int ret;
1562
Sarah Sharp913a8a32009-09-04 10:53:13 -07001563 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001564 case COMP_ENOMEM:
1565 dev_warn(&udev->dev, "Not enough host controller resources "
1566 "for new device state.\n");
1567 ret = -ENOMEM;
1568 /* FIXME: can we allocate more resources for the HC? */
1569 break;
1570 case COMP_BW_ERR:
1571 dev_warn(&udev->dev, "Not enough bandwidth "
1572 "for new device state.\n");
1573 ret = -ENOSPC;
1574 /* FIXME: can we go back to the old state? */
1575 break;
1576 case COMP_TRB_ERR:
1577 /* the HCD set up something wrong */
1578 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1579 "add flag = 1, "
1580 "and endpoint is not disabled.\n");
1581 ret = -EINVAL;
1582 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001583 case COMP_DEV_ERR:
1584 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1585 "configure command.\n");
1586 ret = -ENODEV;
1587 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001588 case COMP_SUCCESS:
1589 dev_dbg(&udev->dev, "Successful Endpoint Configure command\n");
1590 ret = 0;
1591 break;
1592 default:
1593 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001594 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001595 ret = -EINVAL;
1596 break;
1597 }
1598 return ret;
1599}
1600
1601static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001602 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001603{
1604 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001605 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001606
Sarah Sharp913a8a32009-09-04 10:53:13 -07001607 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001608 case COMP_EINVAL:
1609 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1610 "context command.\n");
1611 ret = -EINVAL;
1612 break;
1613 case COMP_EBADSLT:
1614 dev_warn(&udev->dev, "WARN: slot not enabled for"
1615 "evaluate context command.\n");
1616 case COMP_CTX_STATE:
1617 dev_warn(&udev->dev, "WARN: invalid context state for "
1618 "evaluate context command.\n");
1619 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1620 ret = -EINVAL;
1621 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001622 case COMP_DEV_ERR:
1623 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
1624 "context command.\n");
1625 ret = -ENODEV;
1626 break;
Alex He1bb73a82011-05-05 18:14:12 +08001627 case COMP_MEL_ERR:
1628 /* Max Exit Latency too large error */
1629 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1630 ret = -EINVAL;
1631 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001632 case COMP_SUCCESS:
1633 dev_dbg(&udev->dev, "Successful evaluate context command\n");
1634 ret = 0;
1635 break;
1636 default:
1637 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001638 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001639 ret = -EINVAL;
1640 break;
1641 }
1642 return ret;
1643}
1644
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001645static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
1646 struct xhci_container_ctx *in_ctx)
1647{
1648 struct xhci_input_control_ctx *ctrl_ctx;
1649 u32 valid_add_flags;
1650 u32 valid_drop_flags;
1651
1652 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
1653 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1654 * (bit 1). The default control endpoint is added during the Address
1655 * Device command and is never removed until the slot is disabled.
1656 */
1657 valid_add_flags = ctrl_ctx->add_flags >> 2;
1658 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1659
1660 /* Use hweight32 to count the number of ones in the add flags, or
1661 * number of endpoints added. Don't count endpoints that are changed
1662 * (both added and dropped).
1663 */
1664 return hweight32(valid_add_flags) -
1665 hweight32(valid_add_flags & valid_drop_flags);
1666}
1667
1668static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
1669 struct xhci_container_ctx *in_ctx)
1670{
1671 struct xhci_input_control_ctx *ctrl_ctx;
1672 u32 valid_add_flags;
1673 u32 valid_drop_flags;
1674
1675 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
1676 valid_add_flags = ctrl_ctx->add_flags >> 2;
1677 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1678
1679 return hweight32(valid_drop_flags) -
1680 hweight32(valid_add_flags & valid_drop_flags);
1681}
1682
1683/*
1684 * We need to reserve the new number of endpoints before the configure endpoint
1685 * command completes. We can't subtract the dropped endpoints from the number
1686 * of active endpoints until the command completes because we can oversubscribe
1687 * the host in this case:
1688 *
1689 * - the first configure endpoint command drops more endpoints than it adds
1690 * - a second configure endpoint command that adds more endpoints is queued
1691 * - the first configure endpoint command fails, so the config is unchanged
1692 * - the second command may succeed, even though there isn't enough resources
1693 *
1694 * Must be called with xhci->lock held.
1695 */
1696static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
1697 struct xhci_container_ctx *in_ctx)
1698{
1699 u32 added_eps;
1700
1701 added_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
1702 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
1703 xhci_dbg(xhci, "Not enough ep ctxs: "
1704 "%u active, need to add %u, limit is %u.\n",
1705 xhci->num_active_eps, added_eps,
1706 xhci->limit_active_eps);
1707 return -ENOMEM;
1708 }
1709 xhci->num_active_eps += added_eps;
1710 xhci_dbg(xhci, "Adding %u ep ctxs, %u now active.\n", added_eps,
1711 xhci->num_active_eps);
1712 return 0;
1713}
1714
1715/*
1716 * The configure endpoint was failed by the xHC for some other reason, so we
1717 * need to revert the resources that failed configuration would have used.
1718 *
1719 * Must be called with xhci->lock held.
1720 */
1721static void xhci_free_host_resources(struct xhci_hcd *xhci,
1722 struct xhci_container_ctx *in_ctx)
1723{
1724 u32 num_failed_eps;
1725
1726 num_failed_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
1727 xhci->num_active_eps -= num_failed_eps;
1728 xhci_dbg(xhci, "Removing %u failed ep ctxs, %u now active.\n",
1729 num_failed_eps,
1730 xhci->num_active_eps);
1731}
1732
1733/*
1734 * Now that the command has completed, clean up the active endpoint count by
1735 * subtracting out the endpoints that were dropped (but not changed).
1736 *
1737 * Must be called with xhci->lock held.
1738 */
1739static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
1740 struct xhci_container_ctx *in_ctx)
1741{
1742 u32 num_dropped_eps;
1743
1744 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, in_ctx);
1745 xhci->num_active_eps -= num_dropped_eps;
1746 if (num_dropped_eps)
1747 xhci_dbg(xhci, "Removing %u dropped ep ctxs, %u now active.\n",
1748 num_dropped_eps,
1749 xhci->num_active_eps);
1750}
1751
Sarah Sharpc29eea62011-09-02 11:05:52 -07001752unsigned int xhci_get_block_size(struct usb_device *udev)
1753{
1754 switch (udev->speed) {
1755 case USB_SPEED_LOW:
1756 case USB_SPEED_FULL:
1757 return FS_BLOCK;
1758 case USB_SPEED_HIGH:
1759 return HS_BLOCK;
1760 case USB_SPEED_SUPER:
1761 return SS_BLOCK;
1762 case USB_SPEED_UNKNOWN:
1763 case USB_SPEED_WIRELESS:
1764 default:
1765 /* Should never happen */
1766 return 1;
1767 }
1768}
1769
1770unsigned int xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
1771{
1772 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1773 return LS_OVERHEAD;
1774 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1775 return FS_OVERHEAD;
1776 return HS_OVERHEAD;
1777}
1778
1779/* If we are changing a LS/FS device under a HS hub,
1780 * make sure (if we are activating a new TT) that the HS bus has enough
1781 * bandwidth for this new TT.
1782 */
1783static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
1784 struct xhci_virt_device *virt_dev,
1785 int old_active_eps)
1786{
1787 struct xhci_interval_bw_table *bw_table;
1788 struct xhci_tt_bw_info *tt_info;
1789
1790 /* Find the bandwidth table for the root port this TT is attached to. */
1791 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
1792 tt_info = virt_dev->tt_info;
1793 /* If this TT already had active endpoints, the bandwidth for this TT
1794 * has already been added. Removing all periodic endpoints (and thus
1795 * making the TT enactive) will only decrease the bandwidth used.
1796 */
1797 if (old_active_eps)
1798 return 0;
1799 if (old_active_eps == 0 && tt_info->active_eps != 0) {
1800 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
1801 return -ENOMEM;
1802 return 0;
1803 }
1804 /* Not sure why we would have no new active endpoints...
1805 *
1806 * Maybe because of an Evaluate Context change for a hub update or a
1807 * control endpoint 0 max packet size change?
1808 * FIXME: skip the bandwidth calculation in that case.
1809 */
1810 return 0;
1811}
1812
1813/*
1814 * This algorithm is a very conservative estimate of the worst-case scheduling
1815 * scenario for any one interval. The hardware dynamically schedules the
1816 * packets, so we can't tell which microframe could be the limiting factor in
1817 * the bandwidth scheduling. This only takes into account periodic endpoints.
1818 *
1819 * Obviously, we can't solve an NP complete problem to find the minimum worst
1820 * case scenario. Instead, we come up with an estimate that is no less than
1821 * the worst case bandwidth used for any one microframe, but may be an
1822 * over-estimate.
1823 *
1824 * We walk the requirements for each endpoint by interval, starting with the
1825 * smallest interval, and place packets in the schedule where there is only one
1826 * possible way to schedule packets for that interval. In order to simplify
1827 * this algorithm, we record the largest max packet size for each interval, and
1828 * assume all packets will be that size.
1829 *
1830 * For interval 0, we obviously must schedule all packets for each interval.
1831 * The bandwidth for interval 0 is just the amount of data to be transmitted
1832 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
1833 * the number of packets).
1834 *
1835 * For interval 1, we have two possible microframes to schedule those packets
1836 * in. For this algorithm, if we can schedule the same number of packets for
1837 * each possible scheduling opportunity (each microframe), we will do so. The
1838 * remaining number of packets will be saved to be transmitted in the gaps in
1839 * the next interval's scheduling sequence.
1840 *
1841 * As we move those remaining packets to be scheduled with interval 2 packets,
1842 * we have to double the number of remaining packets to transmit. This is
1843 * because the intervals are actually powers of 2, and we would be transmitting
1844 * the previous interval's packets twice in this interval. We also have to be
1845 * sure that when we look at the largest max packet size for this interval, we
1846 * also look at the largest max packet size for the remaining packets and take
1847 * the greater of the two.
1848 *
1849 * The algorithm continues to evenly distribute packets in each scheduling
1850 * opportunity, and push the remaining packets out, until we get to the last
1851 * interval. Then those packets and their associated overhead are just added
1852 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07001853 */
1854static int xhci_check_bw_table(struct xhci_hcd *xhci,
1855 struct xhci_virt_device *virt_dev,
1856 int old_active_eps)
1857{
Sarah Sharpc29eea62011-09-02 11:05:52 -07001858 unsigned int bw_reserved;
1859 unsigned int max_bandwidth;
1860 unsigned int bw_used;
1861 unsigned int block_size;
1862 struct xhci_interval_bw_table *bw_table;
1863 unsigned int packet_size = 0;
1864 unsigned int overhead = 0;
1865 unsigned int packets_transmitted = 0;
1866 unsigned int packets_remaining = 0;
1867 unsigned int i;
1868
1869 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
1870 max_bandwidth = HS_BW_LIMIT;
1871 /* Convert percent of bus BW reserved to blocks reserved */
1872 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
1873 } else {
1874 max_bandwidth = FS_BW_LIMIT;
1875 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
1876 }
1877
1878 bw_table = virt_dev->bw_table;
1879 /* We need to translate the max packet size and max ESIT payloads into
1880 * the units the hardware uses.
1881 */
1882 block_size = xhci_get_block_size(virt_dev->udev);
1883
1884 /* If we are manipulating a LS/FS device under a HS hub, double check
1885 * that the HS bus has enough bandwidth if we are activing a new TT.
1886 */
1887 if (virt_dev->tt_info) {
1888 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
1889 virt_dev->real_port);
1890 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
1891 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
1892 "newly activated TT.\n");
1893 return -ENOMEM;
1894 }
1895 xhci_dbg(xhci, "Recalculating BW for TT slot %u port %u\n",
1896 virt_dev->tt_info->slot_id,
1897 virt_dev->tt_info->ttport);
1898 } else {
1899 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
1900 virt_dev->real_port);
1901 }
1902
1903 /* Add in how much bandwidth will be used for interval zero, or the
1904 * rounded max ESIT payload + number of packets * largest overhead.
1905 */
1906 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
1907 bw_table->interval_bw[0].num_packets *
1908 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
1909
1910 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
1911 unsigned int bw_added;
1912 unsigned int largest_mps;
1913 unsigned int interval_overhead;
1914
1915 /*
1916 * How many packets could we transmit in this interval?
1917 * If packets didn't fit in the previous interval, we will need
1918 * to transmit that many packets twice within this interval.
1919 */
1920 packets_remaining = 2 * packets_remaining +
1921 bw_table->interval_bw[i].num_packets;
1922
1923 /* Find the largest max packet size of this or the previous
1924 * interval.
1925 */
1926 if (list_empty(&bw_table->interval_bw[i].endpoints))
1927 largest_mps = 0;
1928 else {
1929 struct xhci_virt_ep *virt_ep;
1930 struct list_head *ep_entry;
1931
1932 ep_entry = bw_table->interval_bw[i].endpoints.next;
1933 virt_ep = list_entry(ep_entry,
1934 struct xhci_virt_ep, bw_endpoint_list);
1935 /* Convert to blocks, rounding up */
1936 largest_mps = DIV_ROUND_UP(
1937 virt_ep->bw_info.max_packet_size,
1938 block_size);
1939 }
1940 if (largest_mps > packet_size)
1941 packet_size = largest_mps;
1942
1943 /* Use the larger overhead of this or the previous interval. */
1944 interval_overhead = xhci_get_largest_overhead(
1945 &bw_table->interval_bw[i]);
1946 if (interval_overhead > overhead)
1947 overhead = interval_overhead;
1948
1949 /* How many packets can we evenly distribute across
1950 * (1 << (i + 1)) possible scheduling opportunities?
1951 */
1952 packets_transmitted = packets_remaining >> (i + 1);
1953
1954 /* Add in the bandwidth used for those scheduled packets */
1955 bw_added = packets_transmitted * (overhead + packet_size);
1956
1957 /* How many packets do we have remaining to transmit? */
1958 packets_remaining = packets_remaining % (1 << (i + 1));
1959
1960 /* What largest max packet size should those packets have? */
1961 /* If we've transmitted all packets, don't carry over the
1962 * largest packet size.
1963 */
1964 if (packets_remaining == 0) {
1965 packet_size = 0;
1966 overhead = 0;
1967 } else if (packets_transmitted > 0) {
1968 /* Otherwise if we do have remaining packets, and we've
1969 * scheduled some packets in this interval, take the
1970 * largest max packet size from endpoints with this
1971 * interval.
1972 */
1973 packet_size = largest_mps;
1974 overhead = interval_overhead;
1975 }
1976 /* Otherwise carry over packet_size and overhead from the last
1977 * time we had a remainder.
1978 */
1979 bw_used += bw_added;
1980 if (bw_used > max_bandwidth) {
1981 xhci_warn(xhci, "Not enough bandwidth. "
1982 "Proposed: %u, Max: %u\n",
1983 bw_used, max_bandwidth);
1984 return -ENOMEM;
1985 }
1986 }
1987 /*
1988 * Ok, we know we have some packets left over after even-handedly
1989 * scheduling interval 15. We don't know which microframes they will
1990 * fit into, so we over-schedule and say they will be scheduled every
1991 * microframe.
1992 */
1993 if (packets_remaining > 0)
1994 bw_used += overhead + packet_size;
1995
1996 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
1997 unsigned int port_index = virt_dev->real_port - 1;
1998
1999 /* OK, we're manipulating a HS device attached to a
2000 * root port bandwidth domain. Include the number of active TTs
2001 * in the bandwidth used.
2002 */
2003 bw_used += TT_HS_OVERHEAD *
2004 xhci->rh_bw[port_index].num_active_tts;
2005 }
2006
2007 xhci_dbg(xhci, "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2008 "Available: %u " "percent\n",
2009 bw_used, max_bandwidth, bw_reserved,
2010 (max_bandwidth - bw_used - bw_reserved) * 100 /
2011 max_bandwidth);
2012
2013 bw_used += bw_reserved;
2014 if (bw_used > max_bandwidth) {
2015 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2016 bw_used, max_bandwidth);
2017 return -ENOMEM;
2018 }
2019
2020 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002021 return 0;
2022}
2023
2024static bool xhci_is_async_ep(unsigned int ep_type)
2025{
2026 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2027 ep_type != ISOC_IN_EP &&
2028 ep_type != INT_IN_EP);
2029}
2030
2031void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2032 struct xhci_bw_info *ep_bw,
2033 struct xhci_interval_bw_table *bw_table,
2034 struct usb_device *udev,
2035 struct xhci_virt_ep *virt_ep,
2036 struct xhci_tt_bw_info *tt_info)
2037{
2038 struct xhci_interval_bw *interval_bw;
2039 int normalized_interval;
2040
2041 if (xhci_is_async_ep(ep_bw->type) ||
2042 list_empty(&virt_ep->bw_endpoint_list))
2043 return;
2044
2045 /* For LS/FS devices, we need to translate the interval expressed in
2046 * microframes to frames.
2047 */
2048 if (udev->speed == USB_SPEED_HIGH)
2049 normalized_interval = ep_bw->ep_interval;
2050 else
2051 normalized_interval = ep_bw->ep_interval - 3;
2052
2053 if (normalized_interval == 0)
2054 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2055 interval_bw = &bw_table->interval_bw[normalized_interval];
2056 interval_bw->num_packets -= ep_bw->num_packets;
2057 switch (udev->speed) {
2058 case USB_SPEED_LOW:
2059 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2060 break;
2061 case USB_SPEED_FULL:
2062 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2063 break;
2064 case USB_SPEED_HIGH:
2065 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2066 break;
2067 case USB_SPEED_SUPER:
2068 case USB_SPEED_UNKNOWN:
2069 case USB_SPEED_WIRELESS:
2070 /* Should never happen because only LS/FS/HS endpoints will get
2071 * added to the endpoint list.
2072 */
2073 return;
2074 }
2075 if (tt_info)
2076 tt_info->active_eps -= 1;
2077 list_del_init(&virt_ep->bw_endpoint_list);
2078}
2079
2080static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2081 struct xhci_bw_info *ep_bw,
2082 struct xhci_interval_bw_table *bw_table,
2083 struct usb_device *udev,
2084 struct xhci_virt_ep *virt_ep,
2085 struct xhci_tt_bw_info *tt_info)
2086{
2087 struct xhci_interval_bw *interval_bw;
2088 struct xhci_virt_ep *smaller_ep;
2089 int normalized_interval;
2090
2091 if (xhci_is_async_ep(ep_bw->type))
2092 return;
2093
2094 /* For LS/FS devices, we need to translate the interval expressed in
2095 * microframes to frames.
2096 */
2097 if (udev->speed == USB_SPEED_HIGH)
2098 normalized_interval = ep_bw->ep_interval;
2099 else
2100 normalized_interval = ep_bw->ep_interval - 3;
2101
2102 if (normalized_interval == 0)
2103 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2104 interval_bw = &bw_table->interval_bw[normalized_interval];
2105 interval_bw->num_packets += ep_bw->num_packets;
2106 switch (udev->speed) {
2107 case USB_SPEED_LOW:
2108 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2109 break;
2110 case USB_SPEED_FULL:
2111 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2112 break;
2113 case USB_SPEED_HIGH:
2114 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2115 break;
2116 case USB_SPEED_SUPER:
2117 case USB_SPEED_UNKNOWN:
2118 case USB_SPEED_WIRELESS:
2119 /* Should never happen because only LS/FS/HS endpoints will get
2120 * added to the endpoint list.
2121 */
2122 return;
2123 }
2124
2125 if (tt_info)
2126 tt_info->active_eps += 1;
2127 /* Insert the endpoint into the list, largest max packet size first. */
2128 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2129 bw_endpoint_list) {
2130 if (ep_bw->max_packet_size >=
2131 smaller_ep->bw_info.max_packet_size) {
2132 /* Add the new ep before the smaller endpoint */
2133 list_add_tail(&virt_ep->bw_endpoint_list,
2134 &smaller_ep->bw_endpoint_list);
2135 return;
2136 }
2137 }
2138 /* Add the new endpoint at the end of the list. */
2139 list_add_tail(&virt_ep->bw_endpoint_list,
2140 &interval_bw->endpoints);
2141}
2142
2143void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2144 struct xhci_virt_device *virt_dev,
2145 int old_active_eps)
2146{
2147 struct xhci_root_port_bw_info *rh_bw_info;
2148 if (!virt_dev->tt_info)
2149 return;
2150
2151 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2152 if (old_active_eps == 0 &&
2153 virt_dev->tt_info->active_eps != 0) {
2154 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002155 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002156 } else if (old_active_eps != 0 &&
2157 virt_dev->tt_info->active_eps == 0) {
2158 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002159 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002160 }
2161}
2162
2163static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2164 struct xhci_virt_device *virt_dev,
2165 struct xhci_container_ctx *in_ctx)
2166{
2167 struct xhci_bw_info ep_bw_info[31];
2168 int i;
2169 struct xhci_input_control_ctx *ctrl_ctx;
2170 int old_active_eps = 0;
2171
2172 if (virt_dev->udev->speed == USB_SPEED_SUPER)
2173 return 0;
2174
2175 if (virt_dev->tt_info)
2176 old_active_eps = virt_dev->tt_info->active_eps;
2177
2178 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2179
2180 for (i = 0; i < 31; i++) {
2181 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2182 continue;
2183
2184 /* Make a copy of the BW info in case we need to revert this */
2185 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2186 sizeof(ep_bw_info[i]));
2187 /* Drop the endpoint from the interval table if the endpoint is
2188 * being dropped or changed.
2189 */
2190 if (EP_IS_DROPPED(ctrl_ctx, i))
2191 xhci_drop_ep_from_interval_table(xhci,
2192 &virt_dev->eps[i].bw_info,
2193 virt_dev->bw_table,
2194 virt_dev->udev,
2195 &virt_dev->eps[i],
2196 virt_dev->tt_info);
2197 }
2198 /* Overwrite the information stored in the endpoints' bw_info */
2199 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2200 for (i = 0; i < 31; i++) {
2201 /* Add any changed or added endpoints to the interval table */
2202 if (EP_IS_ADDED(ctrl_ctx, i))
2203 xhci_add_ep_to_interval_table(xhci,
2204 &virt_dev->eps[i].bw_info,
2205 virt_dev->bw_table,
2206 virt_dev->udev,
2207 &virt_dev->eps[i],
2208 virt_dev->tt_info);
2209 }
2210
2211 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2212 /* Ok, this fits in the bandwidth we have.
2213 * Update the number of active TTs.
2214 */
2215 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2216 return 0;
2217 }
2218
2219 /* We don't have enough bandwidth for this, revert the stored info. */
2220 for (i = 0; i < 31; i++) {
2221 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2222 continue;
2223
2224 /* Drop the new copies of any added or changed endpoints from
2225 * the interval table.
2226 */
2227 if (EP_IS_ADDED(ctrl_ctx, i)) {
2228 xhci_drop_ep_from_interval_table(xhci,
2229 &virt_dev->eps[i].bw_info,
2230 virt_dev->bw_table,
2231 virt_dev->udev,
2232 &virt_dev->eps[i],
2233 virt_dev->tt_info);
2234 }
2235 /* Revert the endpoint back to its old information */
2236 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2237 sizeof(ep_bw_info[i]));
2238 /* Add any changed or dropped endpoints back into the table */
2239 if (EP_IS_DROPPED(ctrl_ctx, i))
2240 xhci_add_ep_to_interval_table(xhci,
2241 &virt_dev->eps[i].bw_info,
2242 virt_dev->bw_table,
2243 virt_dev->udev,
2244 &virt_dev->eps[i],
2245 virt_dev->tt_info);
2246 }
2247 return -ENOMEM;
2248}
2249
2250
Sarah Sharpf2217e82009-08-07 14:04:43 -07002251/* Issue a configure endpoint command or evaluate context command
2252 * and wait for it to finish.
2253 */
2254static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002255 struct usb_device *udev,
2256 struct xhci_command *command,
2257 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002258{
2259 int ret;
2260 int timeleft;
2261 unsigned long flags;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002262 struct xhci_container_ctx *in_ctx;
2263 struct completion *cmd_completion;
Matt Evans28ccd292011-03-29 13:40:46 +11002264 u32 *cmd_status;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002265 struct xhci_virt_device *virt_dev;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002266
2267 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002268 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002269
Sarah Sharp750645f2011-09-02 11:05:43 -07002270 if (command)
2271 in_ctx = command->in_ctx;
2272 else
2273 in_ctx = virt_dev->in_ctx;
2274
2275 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
2276 xhci_reserve_host_resources(xhci, in_ctx)) {
2277 spin_unlock_irqrestore(&xhci->lock, flags);
2278 xhci_warn(xhci, "Not enough host resources, "
2279 "active endpoint contexts = %u\n",
2280 xhci->num_active_eps);
2281 return -ENOMEM;
2282 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002283 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2284 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2285 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2286 xhci_free_host_resources(xhci, in_ctx);
2287 spin_unlock_irqrestore(&xhci->lock, flags);
2288 xhci_warn(xhci, "Not enough bandwidth\n");
2289 return -ENOMEM;
2290 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002291
2292 if (command) {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002293 cmd_completion = command->completion;
2294 cmd_status = &command->status;
2295 command->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002296
2297 /* Enqueue pointer can be left pointing to the link TRB,
2298 * we must handle that
2299 */
Matt Evansf5960b62011-06-01 10:22:55 +10002300 if (TRB_TYPE_LINK_LE32(command->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08002301 command->command_trb =
2302 xhci->cmd_ring->enq_seg->next->trbs;
2303
Sarah Sharp913a8a32009-09-04 10:53:13 -07002304 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2305 } else {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002306 cmd_completion = &virt_dev->cmd_completion;
2307 cmd_status = &virt_dev->cmd_status;
2308 }
Andiry Xu1d680642010-03-12 17:10:04 +08002309 init_completion(cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002310
Sarah Sharpf2217e82009-08-07 14:04:43 -07002311 if (!ctx_change)
Sarah Sharp913a8a32009-09-04 10:53:13 -07002312 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2313 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002314 else
Sarah Sharp913a8a32009-09-04 10:53:13 -07002315 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
Sarah Sharpf2217e82009-08-07 14:04:43 -07002316 udev->slot_id);
2317 if (ret < 0) {
Sarah Sharpc01591b2009-12-09 15:58:58 -08002318 if (command)
2319 list_del(&command->cmd_list);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002320 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2321 xhci_free_host_resources(xhci, in_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002322 spin_unlock_irqrestore(&xhci->lock, flags);
2323 xhci_dbg(xhci, "FIXME allocate a new ring segment\n");
2324 return -ENOMEM;
2325 }
2326 xhci_ring_cmd_db(xhci);
2327 spin_unlock_irqrestore(&xhci->lock, flags);
2328
2329 /* Wait for the configure endpoint command to complete */
2330 timeleft = wait_for_completion_interruptible_timeout(
Sarah Sharp913a8a32009-09-04 10:53:13 -07002331 cmd_completion,
Sarah Sharpf2217e82009-08-07 14:04:43 -07002332 USB_CTRL_SET_TIMEOUT);
2333 if (timeleft <= 0) {
2334 xhci_warn(xhci, "%s while waiting for %s command\n",
2335 timeleft == 0 ? "Timeout" : "Signal",
2336 ctx_change == 0 ?
2337 "configure endpoint" :
2338 "evaluate context");
2339 /* FIXME cancel the configure endpoint command */
2340 return -ETIME;
2341 }
2342
2343 if (!ctx_change)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002344 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2345 else
2346 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2347
2348 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2349 spin_lock_irqsave(&xhci->lock, flags);
2350 /* If the command failed, remove the reserved resources.
2351 * Otherwise, clean up the estimate to include dropped eps.
2352 */
2353 if (ret)
2354 xhci_free_host_resources(xhci, in_ctx);
2355 else
2356 xhci_finish_resource_reservation(xhci, in_ctx);
2357 spin_unlock_irqrestore(&xhci->lock, flags);
2358 }
2359 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002360}
2361
Sarah Sharpf88ba782009-05-14 11:44:22 -07002362/* Called after one or more calls to xhci_add_endpoint() or
2363 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2364 * to call xhci_reset_bandwidth().
2365 *
2366 * Since we are in the middle of changing either configuration or
2367 * installing a new alt setting, the USB core won't allow URBs to be
2368 * enqueued for any endpoint on the old config or interface. Nothing
2369 * else should be touching the xhci->devs[slot_id] structure, so we
2370 * don't need to take the xhci->lock for manipulating that.
2371 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002372int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2373{
2374 int i;
2375 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002376 struct xhci_hcd *xhci;
2377 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002378 struct xhci_input_control_ctx *ctrl_ctx;
2379 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002380
Andiry Xu64927732010-10-14 07:22:45 -07002381 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002382 if (ret <= 0)
2383 return ret;
2384 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002385 if (xhci->xhc_state & XHCI_STATE_DYING)
2386 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002387
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002388 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002389 virt_dev = xhci->devs[udev->slot_id];
2390
2391 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
John Yound115b042009-07-27 12:05:15 -07002392 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002393 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2394 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2395 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002396
2397 /* Don't issue the command if there's no endpoints to update. */
2398 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2399 ctrl_ctx->drop_flags == 0)
2400 return 0;
2401
Sarah Sharpf94e01862009-04-27 19:58:38 -07002402 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002403 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2404 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002405 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002406
Sarah Sharp913a8a32009-09-04 10:53:13 -07002407 ret = xhci_configure_endpoint(xhci, udev, NULL,
2408 false, false);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002409 if (ret) {
2410 /* Callee should call reset_bandwidth() */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002411 return ret;
2412 }
2413
2414 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002415 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002416 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002417
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002418 /* Free any rings that were dropped, but not changed. */
2419 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002420 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2421 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002422 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2423 }
John Yound115b042009-07-27 12:05:15 -07002424 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002425 /*
2426 * Install any rings for completely new endpoints or changed endpoints,
2427 * and free or cache any old rings from changed endpoints.
2428 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002429 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002430 if (!virt_dev->eps[i].new_ring)
2431 continue;
2432 /* Only cache or free the old ring if it exists.
2433 * It may not if this is the first add of an endpoint.
2434 */
2435 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002436 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002437 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002438 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2439 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002440 }
2441
Sarah Sharpf94e01862009-04-27 19:58:38 -07002442 return ret;
2443}
2444
2445void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2446{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002447 struct xhci_hcd *xhci;
2448 struct xhci_virt_device *virt_dev;
2449 int i, ret;
2450
Andiry Xu64927732010-10-14 07:22:45 -07002451 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002452 if (ret <= 0)
2453 return;
2454 xhci = hcd_to_xhci(hcd);
2455
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002456 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002457 virt_dev = xhci->devs[udev->slot_id];
2458 /* Free any rings allocated for added endpoints */
2459 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002460 if (virt_dev->eps[i].new_ring) {
2461 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2462 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002463 }
2464 }
John Yound115b042009-07-27 12:05:15 -07002465 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002466}
2467
Sarah Sharp5270b952009-09-04 10:53:11 -07002468static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002469 struct xhci_container_ctx *in_ctx,
2470 struct xhci_container_ctx *out_ctx,
2471 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002472{
2473 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002474 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002475 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2476 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002477 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002478 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002479
Sarah Sharp913a8a32009-09-04 10:53:13 -07002480 xhci_dbg(xhci, "Input Context:\n");
2481 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002482}
2483
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002484static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002485 unsigned int slot_id, unsigned int ep_index,
2486 struct xhci_dequeue_state *deq_state)
2487{
2488 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002489 struct xhci_ep_ctx *ep_ctx;
2490 u32 added_ctxs;
2491 dma_addr_t addr;
2492
Sarah Sharp913a8a32009-09-04 10:53:13 -07002493 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2494 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002495 in_ctx = xhci->devs[slot_id]->in_ctx;
2496 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2497 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2498 deq_state->new_deq_ptr);
2499 if (addr == 0) {
2500 xhci_warn(xhci, "WARN Cannot submit config ep after "
2501 "reset ep command\n");
2502 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2503 deq_state->new_deq_seg,
2504 deq_state->new_deq_ptr);
2505 return;
2506 }
Matt Evans28ccd292011-03-29 13:40:46 +11002507 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002508
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002509 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002510 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
2511 xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002512}
2513
Sarah Sharp82d10092009-08-07 14:04:52 -07002514void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002515 struct usb_device *udev, unsigned int ep_index)
Sarah Sharp82d10092009-08-07 14:04:52 -07002516{
2517 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002518 struct xhci_virt_ep *ep;
Sarah Sharp82d10092009-08-07 14:04:52 -07002519
2520 xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002521 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002522 /* We need to move the HW's dequeue pointer past this TD,
2523 * or it will attempt to resend it on the next doorbell ring.
2524 */
2525 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002526 ep_index, ep->stopped_stream, ep->stopped_td,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002527 &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002528
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002529 /* HW with the reset endpoint quirk will use the saved dequeue state to
2530 * issue a configure endpoint command later.
2531 */
2532 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
2533 xhci_dbg(xhci, "Queueing new dequeue state\n");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002534 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002535 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002536 } else {
2537 /* Better hope no one uses the input context between now and the
2538 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002539 * XXX: No idea how this hardware will react when stream rings
2540 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002541 */
2542 xhci_dbg(xhci, "Setting up input context for "
2543 "configure endpoint command\n");
2544 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2545 ep_index, &deq_state);
2546 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002547}
2548
Sarah Sharpa1587d92009-07-27 12:03:15 -07002549/* Deal with stalled endpoints. The core should have sent the control message
2550 * to clear the halt condition. However, we need to make the xHCI hardware
2551 * reset its sequence number, since a device will expect a sequence number of
2552 * zero after the halt condition is cleared.
2553 * Context: in_interrupt
2554 */
2555void xhci_endpoint_reset(struct usb_hcd *hcd,
2556 struct usb_host_endpoint *ep)
2557{
2558 struct xhci_hcd *xhci;
2559 struct usb_device *udev;
2560 unsigned int ep_index;
2561 unsigned long flags;
2562 int ret;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002563 struct xhci_virt_ep *virt_ep;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002564
2565 xhci = hcd_to_xhci(hcd);
2566 udev = (struct usb_device *) ep->hcpriv;
2567 /* Called with a root hub endpoint (or an endpoint that wasn't added
2568 * with xhci_add_endpoint()
2569 */
2570 if (!ep->hcpriv)
2571 return;
2572 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002573 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
2574 if (!virt_ep->stopped_td) {
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002575 xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n",
2576 ep->desc.bEndpointAddress);
2577 return;
2578 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002579 if (usb_endpoint_xfer_control(&ep->desc)) {
2580 xhci_dbg(xhci, "Control endpoint stall already handled.\n");
2581 return;
2582 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07002583
2584 xhci_dbg(xhci, "Queueing reset endpoint command\n");
2585 spin_lock_irqsave(&xhci->lock, flags);
2586 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002587 /*
2588 * Can't change the ring dequeue pointer until it's transitioned to the
2589 * stopped state, which is only upon a successful reset endpoint
2590 * command. Better hope that last command worked!
2591 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002592 if (!ret) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002593 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
2594 kfree(virt_ep->stopped_td);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002595 xhci_ring_cmd_db(xhci);
2596 }
Sarah Sharp1624ae12010-05-06 13:40:08 -07002597 virt_ep->stopped_td = NULL;
2598 virt_ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07002599 virt_ep->stopped_stream = 0;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002600 spin_unlock_irqrestore(&xhci->lock, flags);
2601
2602 if (ret)
2603 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
2604}
2605
Sarah Sharp8df75f42010-04-02 15:34:16 -07002606static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2607 struct usb_device *udev, struct usb_host_endpoint *ep,
2608 unsigned int slot_id)
2609{
2610 int ret;
2611 unsigned int ep_index;
2612 unsigned int ep_state;
2613
2614 if (!ep)
2615 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002616 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002617 if (ret <= 0)
2618 return -EINVAL;
Alan Stern842f1692010-04-30 12:44:46 -04002619 if (ep->ss_ep_comp.bmAttributes == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002620 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2621 " descriptor for ep 0x%x does not support streams\n",
2622 ep->desc.bEndpointAddress);
2623 return -EINVAL;
2624 }
2625
2626 ep_index = xhci_get_endpoint_index(&ep->desc);
2627 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2628 if (ep_state & EP_HAS_STREAMS ||
2629 ep_state & EP_GETTING_STREAMS) {
2630 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2631 "already has streams set up.\n",
2632 ep->desc.bEndpointAddress);
2633 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2634 "dynamic stream context array reallocation.\n");
2635 return -EINVAL;
2636 }
2637 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2638 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2639 "endpoint 0x%x; URBs are pending.\n",
2640 ep->desc.bEndpointAddress);
2641 return -EINVAL;
2642 }
2643 return 0;
2644}
2645
2646static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2647 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2648{
2649 unsigned int max_streams;
2650
2651 /* The stream context array size must be a power of two */
2652 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2653 /*
2654 * Find out how many primary stream array entries the host controller
2655 * supports. Later we may use secondary stream arrays (similar to 2nd
2656 * level page entries), but that's an optional feature for xHCI host
2657 * controllers. xHCs must support at least 4 stream IDs.
2658 */
2659 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2660 if (*num_stream_ctxs > max_streams) {
2661 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2662 max_streams);
2663 *num_stream_ctxs = max_streams;
2664 *num_streams = max_streams;
2665 }
2666}
2667
2668/* Returns an error code if one of the endpoint already has streams.
2669 * This does not change any data structures, it only checks and gathers
2670 * information.
2671 */
2672static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2673 struct usb_device *udev,
2674 struct usb_host_endpoint **eps, unsigned int num_eps,
2675 unsigned int *num_streams, u32 *changed_ep_bitmask)
2676{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002677 unsigned int max_streams;
2678 unsigned int endpoint_flag;
2679 int i;
2680 int ret;
2681
2682 for (i = 0; i < num_eps; i++) {
2683 ret = xhci_check_streams_endpoint(xhci, udev,
2684 eps[i], udev->slot_id);
2685 if (ret < 0)
2686 return ret;
2687
Alan Stern842f1692010-04-30 12:44:46 -04002688 max_streams = USB_SS_MAX_STREAMS(
2689 eps[i]->ss_ep_comp.bmAttributes);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002690 if (max_streams < (*num_streams - 1)) {
2691 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2692 eps[i]->desc.bEndpointAddress,
2693 max_streams);
2694 *num_streams = max_streams+1;
2695 }
2696
2697 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
2698 if (*changed_ep_bitmask & endpoint_flag)
2699 return -EINVAL;
2700 *changed_ep_bitmask |= endpoint_flag;
2701 }
2702 return 0;
2703}
2704
2705static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
2706 struct usb_device *udev,
2707 struct usb_host_endpoint **eps, unsigned int num_eps)
2708{
2709 u32 changed_ep_bitmask = 0;
2710 unsigned int slot_id;
2711 unsigned int ep_index;
2712 unsigned int ep_state;
2713 int i;
2714
2715 slot_id = udev->slot_id;
2716 if (!xhci->devs[slot_id])
2717 return 0;
2718
2719 for (i = 0; i < num_eps; i++) {
2720 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2721 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2722 /* Are streams already being freed for the endpoint? */
2723 if (ep_state & EP_GETTING_NO_STREAMS) {
2724 xhci_warn(xhci, "WARN Can't disable streams for "
2725 "endpoint 0x%x\n, "
2726 "streams are being disabled already.",
2727 eps[i]->desc.bEndpointAddress);
2728 return 0;
2729 }
2730 /* Are there actually any streams to free? */
2731 if (!(ep_state & EP_HAS_STREAMS) &&
2732 !(ep_state & EP_GETTING_STREAMS)) {
2733 xhci_warn(xhci, "WARN Can't disable streams for "
2734 "endpoint 0x%x\n, "
2735 "streams are already disabled!",
2736 eps[i]->desc.bEndpointAddress);
2737 xhci_warn(xhci, "WARN xhci_free_streams() called "
2738 "with non-streams endpoint\n");
2739 return 0;
2740 }
2741 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
2742 }
2743 return changed_ep_bitmask;
2744}
2745
2746/*
2747 * The USB device drivers use this function (though the HCD interface in USB
2748 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
2749 * coordinate mass storage command queueing across multiple endpoints (basically
2750 * a stream ID == a task ID).
2751 *
2752 * Setting up streams involves allocating the same size stream context array
2753 * for each endpoint and issuing a configure endpoint command for all endpoints.
2754 *
2755 * Don't allow the call to succeed if one endpoint only supports one stream
2756 * (which means it doesn't support streams at all).
2757 *
2758 * Drivers may get less stream IDs than they asked for, if the host controller
2759 * hardware or endpoints claim they can't support the number of requested
2760 * stream IDs.
2761 */
2762int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
2763 struct usb_host_endpoint **eps, unsigned int num_eps,
2764 unsigned int num_streams, gfp_t mem_flags)
2765{
2766 int i, ret;
2767 struct xhci_hcd *xhci;
2768 struct xhci_virt_device *vdev;
2769 struct xhci_command *config_cmd;
2770 unsigned int ep_index;
2771 unsigned int num_stream_ctxs;
2772 unsigned long flags;
2773 u32 changed_ep_bitmask = 0;
2774
2775 if (!eps)
2776 return -EINVAL;
2777
2778 /* Add one to the number of streams requested to account for
2779 * stream 0 that is reserved for xHCI usage.
2780 */
2781 num_streams += 1;
2782 xhci = hcd_to_xhci(hcd);
2783 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
2784 num_streams);
2785
2786 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
2787 if (!config_cmd) {
2788 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
2789 return -ENOMEM;
2790 }
2791
2792 /* Check to make sure all endpoints are not already configured for
2793 * streams. While we're at it, find the maximum number of streams that
2794 * all the endpoints will support and check for duplicate endpoints.
2795 */
2796 spin_lock_irqsave(&xhci->lock, flags);
2797 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
2798 num_eps, &num_streams, &changed_ep_bitmask);
2799 if (ret < 0) {
2800 xhci_free_command(xhci, config_cmd);
2801 spin_unlock_irqrestore(&xhci->lock, flags);
2802 return ret;
2803 }
2804 if (num_streams <= 1) {
2805 xhci_warn(xhci, "WARN: endpoints can't handle "
2806 "more than one stream.\n");
2807 xhci_free_command(xhci, config_cmd);
2808 spin_unlock_irqrestore(&xhci->lock, flags);
2809 return -EINVAL;
2810 }
2811 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002812 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07002813 * xhci_urb_enqueue() will reject all URBs.
2814 */
2815 for (i = 0; i < num_eps; i++) {
2816 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2817 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
2818 }
2819 spin_unlock_irqrestore(&xhci->lock, flags);
2820
2821 /* Setup internal data structures and allocate HW data structures for
2822 * streams (but don't install the HW structures in the input context
2823 * until we're sure all memory allocation succeeded).
2824 */
2825 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
2826 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
2827 num_stream_ctxs, num_streams);
2828
2829 for (i = 0; i < num_eps; i++) {
2830 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2831 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
2832 num_stream_ctxs,
2833 num_streams, mem_flags);
2834 if (!vdev->eps[ep_index].stream_info)
2835 goto cleanup;
2836 /* Set maxPstreams in endpoint context and update deq ptr to
2837 * point to stream context array. FIXME
2838 */
2839 }
2840
2841 /* Set up the input context for a configure endpoint command. */
2842 for (i = 0; i < num_eps; i++) {
2843 struct xhci_ep_ctx *ep_ctx;
2844
2845 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2846 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
2847
2848 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
2849 vdev->out_ctx, ep_index);
2850 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
2851 vdev->eps[ep_index].stream_info);
2852 }
2853 /* Tell the HW to drop its old copy of the endpoint context info
2854 * and add the updated copy from the input context.
2855 */
2856 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
2857 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
2858
2859 /* Issue and wait for the configure endpoint command */
2860 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
2861 false, false);
2862
2863 /* xHC rejected the configure endpoint command for some reason, so we
2864 * leave the old ring intact and free our internal streams data
2865 * structure.
2866 */
2867 if (ret < 0)
2868 goto cleanup;
2869
2870 spin_lock_irqsave(&xhci->lock, flags);
2871 for (i = 0; i < num_eps; i++) {
2872 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2873 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
2874 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
2875 udev->slot_id, ep_index);
2876 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
2877 }
2878 xhci_free_command(xhci, config_cmd);
2879 spin_unlock_irqrestore(&xhci->lock, flags);
2880
2881 /* Subtract 1 for stream 0, which drivers can't use */
2882 return num_streams - 1;
2883
2884cleanup:
2885 /* If it didn't work, free the streams! */
2886 for (i = 0; i < num_eps; i++) {
2887 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2888 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07002889 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07002890 /* FIXME Unset maxPstreams in endpoint context and
2891 * update deq ptr to point to normal string ring.
2892 */
2893 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
2894 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
2895 xhci_endpoint_zero(xhci, vdev, eps[i]);
2896 }
2897 xhci_free_command(xhci, config_cmd);
2898 return -ENOMEM;
2899}
2900
2901/* Transition the endpoint from using streams to being a "normal" endpoint
2902 * without streams.
2903 *
2904 * Modify the endpoint context state, submit a configure endpoint command,
2905 * and free all endpoint rings for streams if that completes successfully.
2906 */
2907int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
2908 struct usb_host_endpoint **eps, unsigned int num_eps,
2909 gfp_t mem_flags)
2910{
2911 int i, ret;
2912 struct xhci_hcd *xhci;
2913 struct xhci_virt_device *vdev;
2914 struct xhci_command *command;
2915 unsigned int ep_index;
2916 unsigned long flags;
2917 u32 changed_ep_bitmask;
2918
2919 xhci = hcd_to_xhci(hcd);
2920 vdev = xhci->devs[udev->slot_id];
2921
2922 /* Set up a configure endpoint command to remove the streams rings */
2923 spin_lock_irqsave(&xhci->lock, flags);
2924 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
2925 udev, eps, num_eps);
2926 if (changed_ep_bitmask == 0) {
2927 spin_unlock_irqrestore(&xhci->lock, flags);
2928 return -EINVAL;
2929 }
2930
2931 /* Use the xhci_command structure from the first endpoint. We may have
2932 * allocated too many, but the driver may call xhci_free_streams() for
2933 * each endpoint it grouped into one call to xhci_alloc_streams().
2934 */
2935 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
2936 command = vdev->eps[ep_index].stream_info->free_streams_command;
2937 for (i = 0; i < num_eps; i++) {
2938 struct xhci_ep_ctx *ep_ctx;
2939
2940 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2941 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
2942 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
2943 EP_GETTING_NO_STREAMS;
2944
2945 xhci_endpoint_copy(xhci, command->in_ctx,
2946 vdev->out_ctx, ep_index);
2947 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
2948 &vdev->eps[ep_index]);
2949 }
2950 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
2951 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
2952 spin_unlock_irqrestore(&xhci->lock, flags);
2953
2954 /* Issue and wait for the configure endpoint command,
2955 * which must succeed.
2956 */
2957 ret = xhci_configure_endpoint(xhci, udev, command,
2958 false, true);
2959
2960 /* xHC rejected the configure endpoint command for some reason, so we
2961 * leave the streams rings intact.
2962 */
2963 if (ret < 0)
2964 return ret;
2965
2966 spin_lock_irqsave(&xhci->lock, flags);
2967 for (i = 0; i < num_eps; i++) {
2968 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2969 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07002970 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07002971 /* FIXME Unset maxPstreams in endpoint context and
2972 * update deq ptr to point to normal string ring.
2973 */
2974 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
2975 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
2976 }
2977 spin_unlock_irqrestore(&xhci->lock, flags);
2978
2979 return 0;
2980}
2981
Sarah Sharp3ffbba92009-04-27 19:57:38 -07002982/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002983 * Deletes endpoint resources for endpoints that were active before a Reset
2984 * Device command, or a Disable Slot command. The Reset Device command leaves
2985 * the control endpoint intact, whereas the Disable Slot command deletes it.
2986 *
2987 * Must be called with xhci->lock held.
2988 */
2989void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
2990 struct xhci_virt_device *virt_dev, bool drop_control_ep)
2991{
2992 int i;
2993 unsigned int num_dropped_eps = 0;
2994 unsigned int drop_flags = 0;
2995
2996 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
2997 if (virt_dev->eps[i].ring) {
2998 drop_flags |= 1 << i;
2999 num_dropped_eps++;
3000 }
3001 }
3002 xhci->num_active_eps -= num_dropped_eps;
3003 if (num_dropped_eps)
3004 xhci_dbg(xhci, "Dropped %u ep ctxs, flags = 0x%x, "
3005 "%u now active.\n",
3006 num_dropped_eps, drop_flags,
3007 xhci->num_active_eps);
3008}
3009
3010/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003011 * This submits a Reset Device Command, which will set the device state to 0,
3012 * set the device address to 0, and disable all the endpoints except the default
3013 * control endpoint. The USB core should come back and call
3014 * xhci_address_device(), and then re-set up the configuration. If this is
3015 * called because of a usb_reset_and_verify_device(), then the old alternate
3016 * settings will be re-installed through the normal bandwidth allocation
3017 * functions.
3018 *
3019 * Wait for the Reset Device command to finish. Remove all structures
3020 * associated with the endpoints that were disabled. Clear the input device
3021 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003022 *
3023 * If the virt_dev to be reset does not exist or does not match the udev,
3024 * it means the device is lost, possibly due to the xHC restore error and
3025 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3026 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003027 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003028int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003029{
3030 int ret, i;
3031 unsigned long flags;
3032 struct xhci_hcd *xhci;
3033 unsigned int slot_id;
3034 struct xhci_virt_device *virt_dev;
3035 struct xhci_command *reset_device_cmd;
3036 int timeleft;
3037 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003038 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003039 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003040
Andiry Xuf0615c42010-10-14 07:22:48 -07003041 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003042 if (ret <= 0)
3043 return ret;
3044 xhci = hcd_to_xhci(hcd);
3045 slot_id = udev->slot_id;
3046 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003047 if (!virt_dev) {
3048 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3049 "not exist. Re-allocate the device\n", slot_id);
3050 ret = xhci_alloc_dev(hcd, udev);
3051 if (ret == 1)
3052 return 0;
3053 else
3054 return -EINVAL;
3055 }
3056
3057 if (virt_dev->udev != udev) {
3058 /* If the virt_dev and the udev does not match, this virt_dev
3059 * may belong to another udev.
3060 * Re-allocate the device.
3061 */
3062 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3063 "not match the udev. Re-allocate the device\n",
3064 slot_id);
3065 ret = xhci_alloc_dev(hcd, udev);
3066 if (ret == 1)
3067 return 0;
3068 else
3069 return -EINVAL;
3070 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003071
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003072 /* If device is not setup, there is no point in resetting it */
3073 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3074 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3075 SLOT_STATE_DISABLED)
3076 return 0;
3077
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003078 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3079 /* Allocate the command structure that holds the struct completion.
3080 * Assume we're in process context, since the normal device reset
3081 * process has to wait for the device anyway. Storage devices are
3082 * reset as part of error handling, so use GFP_NOIO instead of
3083 * GFP_KERNEL.
3084 */
3085 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3086 if (!reset_device_cmd) {
3087 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3088 return -ENOMEM;
3089 }
3090
3091 /* Attempt to submit the Reset Device command to the command ring */
3092 spin_lock_irqsave(&xhci->lock, flags);
3093 reset_device_cmd->command_trb = xhci->cmd_ring->enqueue;
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003094
3095 /* Enqueue pointer can be left pointing to the link TRB,
3096 * we must handle that
3097 */
Matt Evansf5960b62011-06-01 10:22:55 +10003098 if (TRB_TYPE_LINK_LE32(reset_device_cmd->command_trb->link.control))
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003099 reset_device_cmd->command_trb =
3100 xhci->cmd_ring->enq_seg->next->trbs;
3101
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003102 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3103 ret = xhci_queue_reset_device(xhci, slot_id);
3104 if (ret) {
3105 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3106 list_del(&reset_device_cmd->cmd_list);
3107 spin_unlock_irqrestore(&xhci->lock, flags);
3108 goto command_cleanup;
3109 }
3110 xhci_ring_cmd_db(xhci);
3111 spin_unlock_irqrestore(&xhci->lock, flags);
3112
3113 /* Wait for the Reset Device command to finish */
3114 timeleft = wait_for_completion_interruptible_timeout(
3115 reset_device_cmd->completion,
3116 USB_CTRL_SET_TIMEOUT);
3117 if (timeleft <= 0) {
3118 xhci_warn(xhci, "%s while waiting for reset device command\n",
3119 timeleft == 0 ? "Timeout" : "Signal");
3120 spin_lock_irqsave(&xhci->lock, flags);
3121 /* The timeout might have raced with the event ring handler, so
3122 * only delete from the list if the item isn't poisoned.
3123 */
3124 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3125 list_del(&reset_device_cmd->cmd_list);
3126 spin_unlock_irqrestore(&xhci->lock, flags);
3127 ret = -ETIME;
3128 goto command_cleanup;
3129 }
3130
3131 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3132 * unless we tried to reset a slot ID that wasn't enabled,
3133 * or the device wasn't in the addressed or configured state.
3134 */
3135 ret = reset_device_cmd->status;
3136 switch (ret) {
3137 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3138 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
3139 xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n",
3140 slot_id,
3141 xhci_get_slot_state(xhci, virt_dev->out_ctx));
3142 xhci_info(xhci, "Not freeing device rings.\n");
3143 /* Don't treat this as an error. May change my mind later. */
3144 ret = 0;
3145 goto command_cleanup;
3146 case COMP_SUCCESS:
3147 xhci_dbg(xhci, "Successful reset device command.\n");
3148 break;
3149 default:
3150 if (xhci_is_vendor_info_code(xhci, ret))
3151 break;
3152 xhci_warn(xhci, "Unknown completion code %u for "
3153 "reset device command.\n", ret);
3154 ret = -EINVAL;
3155 goto command_cleanup;
3156 }
3157
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003158 /* Free up host controller endpoint resources */
3159 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3160 spin_lock_irqsave(&xhci->lock, flags);
3161 /* Don't delete the default control endpoint resources */
3162 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3163 spin_unlock_irqrestore(&xhci->lock, flags);
3164 }
3165
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003166 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3167 last_freed_endpoint = 1;
3168 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003169 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3170
3171 if (ep->ep_state & EP_HAS_STREAMS) {
3172 xhci_free_stream_info(xhci, ep->stream_info);
3173 ep->stream_info = NULL;
3174 ep->ep_state &= ~EP_HAS_STREAMS;
3175 }
3176
3177 if (ep->ring) {
3178 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3179 last_freed_endpoint = i;
3180 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003181 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3182 xhci_drop_ep_from_interval_table(xhci,
3183 &virt_dev->eps[i].bw_info,
3184 virt_dev->bw_table,
3185 udev,
3186 &virt_dev->eps[i],
3187 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003188 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003189 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003190 /* If necessary, update the number of active TTs on this root port */
3191 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3192
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003193 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3194 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3195 ret = 0;
3196
3197command_cleanup:
3198 xhci_free_command(xhci, reset_device_cmd);
3199 return ret;
3200}
3201
3202/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003203 * At this point, the struct usb_device is about to go away, the device has
3204 * disconnected, and all traffic has been stopped and the endpoints have been
3205 * disabled. Free any HC data structures associated with that device.
3206 */
3207void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3208{
3209 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003210 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003211 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003212 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003213 int i, ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003214
Andiry Xu64927732010-10-14 07:22:45 -07003215 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003216 /* If the host is halted due to driver unload, we still need to free the
3217 * device.
3218 */
3219 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003220 return;
Andiry Xu64927732010-10-14 07:22:45 -07003221
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003222 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003223
3224 /* Stop any wayward timer functions (which may grab the lock) */
3225 for (i = 0; i < 31; ++i) {
3226 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3227 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3228 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003229
3230 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003231 /* Don't disable the slot if the host controller is dead. */
3232 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003233 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3234 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003235 xhci_free_virt_device(xhci, udev->slot_id);
3236 spin_unlock_irqrestore(&xhci->lock, flags);
3237 return;
3238 }
3239
Sarah Sharp23e3be12009-04-29 19:05:20 -07003240 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003241 spin_unlock_irqrestore(&xhci->lock, flags);
3242 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3243 return;
3244 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003245 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003246 spin_unlock_irqrestore(&xhci->lock, flags);
3247 /*
3248 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003249 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003250 */
3251}
3252
3253/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003254 * Checks if we have enough host controller resources for the default control
3255 * endpoint.
3256 *
3257 * Must be called with xhci->lock held.
3258 */
3259static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3260{
3261 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
3262 xhci_dbg(xhci, "Not enough ep ctxs: "
3263 "%u active, need to add 1, limit is %u.\n",
3264 xhci->num_active_eps, xhci->limit_active_eps);
3265 return -ENOMEM;
3266 }
3267 xhci->num_active_eps += 1;
3268 xhci_dbg(xhci, "Adding 1 ep ctx, %u now active.\n",
3269 xhci->num_active_eps);
3270 return 0;
3271}
3272
3273
3274/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003275 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3276 * timed out, or allocating memory failed. Returns 1 on success.
3277 */
3278int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3279{
3280 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3281 unsigned long flags;
3282 int timeleft;
3283 int ret;
3284
3285 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp23e3be12009-04-29 19:05:20 -07003286 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003287 if (ret) {
3288 spin_unlock_irqrestore(&xhci->lock, flags);
3289 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3290 return 0;
3291 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003292 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003293 spin_unlock_irqrestore(&xhci->lock, flags);
3294
3295 /* XXX: how much time for xHC slot assignment? */
3296 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
3297 USB_CTRL_SET_TIMEOUT);
3298 if (timeleft <= 0) {
3299 xhci_warn(xhci, "%s while waiting for a slot\n",
3300 timeleft == 0 ? "Timeout" : "Signal");
3301 /* FIXME cancel the enable slot request */
3302 return 0;
3303 }
3304
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003305 if (!xhci->slot_id) {
3306 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003307 return 0;
3308 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003309
3310 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3311 spin_lock_irqsave(&xhci->lock, flags);
3312 ret = xhci_reserve_host_control_ep_resources(xhci);
3313 if (ret) {
3314 spin_unlock_irqrestore(&xhci->lock, flags);
3315 xhci_warn(xhci, "Not enough host resources, "
3316 "active endpoint contexts = %u\n",
3317 xhci->num_active_eps);
3318 goto disable_slot;
3319 }
3320 spin_unlock_irqrestore(&xhci->lock, flags);
3321 }
3322 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003323 * xhci_discover_or_reset_device(), which may be called as part of
3324 * mass storage driver error handling.
3325 */
3326 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003327 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003328 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003329 }
3330 udev->slot_id = xhci->slot_id;
3331 /* Is this a LS or FS device under a HS hub? */
3332 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003333 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003334
3335disable_slot:
3336 /* Disable slot, if we can do it without mem alloc */
3337 spin_lock_irqsave(&xhci->lock, flags);
3338 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3339 xhci_ring_cmd_db(xhci);
3340 spin_unlock_irqrestore(&xhci->lock, flags);
3341 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003342}
3343
3344/*
3345 * Issue an Address Device command (which will issue a SetAddress request to
3346 * the device).
3347 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3348 * we should only issue and wait on one address command at the same time.
3349 *
3350 * We add one to the device address issued by the hardware because the USB core
3351 * uses address 1 for the root hubs (even though they're not really devices).
3352 */
3353int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3354{
3355 unsigned long flags;
3356 int timeleft;
3357 struct xhci_virt_device *virt_dev;
3358 int ret = 0;
3359 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003360 struct xhci_slot_ctx *slot_ctx;
3361 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003362 u64 temp_64;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003363
3364 if (!udev->slot_id) {
3365 xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id);
3366 return -EINVAL;
3367 }
3368
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003369 virt_dev = xhci->devs[udev->slot_id];
3370
Matt Evans7ed603e2011-03-29 13:40:56 +11003371 if (WARN_ON(!virt_dev)) {
3372 /*
3373 * In plug/unplug torture test with an NEC controller,
3374 * a zero-dereference was observed once due to virt_dev = 0.
3375 * Print useful debug rather than crash if it is observed again!
3376 */
3377 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3378 udev->slot_id);
3379 return -EINVAL;
3380 }
3381
Andiry Xuf0615c42010-10-14 07:22:48 -07003382 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
3383 /*
3384 * If this is the first Set Address since device plug-in or
3385 * virt_device realloaction after a resume with an xHCI power loss,
3386 * then set up the slot context.
3387 */
3388 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003389 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003390 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003391 else
3392 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003393 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003394 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003395
Sarah Sharpf88ba782009-05-14 11:44:22 -07003396 spin_lock_irqsave(&xhci->lock, flags);
John Yound115b042009-07-27 12:05:15 -07003397 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3398 udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003399 if (ret) {
3400 spin_unlock_irqrestore(&xhci->lock, flags);
3401 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3402 return ret;
3403 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003404 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003405 spin_unlock_irqrestore(&xhci->lock, flags);
3406
3407 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3408 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
3409 USB_CTRL_SET_TIMEOUT);
3410 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3411 * the SetAddress() "recovery interval" required by USB and aborting the
3412 * command on a timeout.
3413 */
3414 if (timeleft <= 0) {
3415 xhci_warn(xhci, "%s while waiting for a slot\n",
3416 timeleft == 0 ? "Timeout" : "Signal");
3417 /* FIXME cancel the address device command */
3418 return -ETIME;
3419 }
3420
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003421 switch (virt_dev->cmd_status) {
3422 case COMP_CTX_STATE:
3423 case COMP_EBADSLT:
3424 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3425 udev->slot_id);
3426 ret = -EINVAL;
3427 break;
3428 case COMP_TX_ERR:
3429 dev_warn(&udev->dev, "Device not responding to set address.\n");
3430 ret = -EPROTO;
3431 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003432 case COMP_DEV_ERR:
3433 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3434 "device command.\n");
3435 ret = -ENODEV;
3436 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003437 case COMP_SUCCESS:
3438 xhci_dbg(xhci, "Successful Address Device command\n");
3439 break;
3440 default:
3441 xhci_err(xhci, "ERROR: unexpected command completion "
3442 "code 0x%x.\n", virt_dev->cmd_status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003443 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003444 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003445 ret = -EINVAL;
3446 break;
3447 }
3448 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003449 return ret;
3450 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003451 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
3452 xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64);
3453 xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n",
Matt Evans28ccd292011-03-29 13:40:46 +11003454 udev->slot_id,
3455 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3456 (unsigned long long)
3457 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07003458 xhci_dbg(xhci, "Output Context DMA address = %#08llx\n",
John Yound115b042009-07-27 12:05:15 -07003459 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003460 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003461 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003462 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003463 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003464 /*
3465 * USB core uses address 1 for the roothubs, so we add one to the
3466 * address given back to us by the HC.
3467 */
John Yound115b042009-07-27 12:05:15 -07003468 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003469 /* Use kernel assigned address for devices; store xHC assigned
3470 * address locally. */
Matt Evans28ccd292011-03-29 13:40:46 +11003471 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3472 + 1;
Sarah Sharpf94e01862009-04-27 19:58:38 -07003473 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003474 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3475 ctrl_ctx->add_flags = 0;
3476 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003477
Andiry Xuc8d4af82010-10-14 07:22:51 -07003478 xhci_dbg(xhci, "Internal device address = %d\n", virt_dev->address);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003479
3480 return 0;
3481}
3482
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003483/* Once a hub descriptor is fetched for a device, we need to update the xHC's
3484 * internal data structures for the device.
3485 */
3486int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
3487 struct usb_tt *tt, gfp_t mem_flags)
3488{
3489 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3490 struct xhci_virt_device *vdev;
3491 struct xhci_command *config_cmd;
3492 struct xhci_input_control_ctx *ctrl_ctx;
3493 struct xhci_slot_ctx *slot_ctx;
3494 unsigned long flags;
3495 unsigned think_time;
3496 int ret;
3497
3498 /* Ignore root hubs */
3499 if (!hdev->parent)
3500 return 0;
3501
3502 vdev = xhci->devs[hdev->slot_id];
3503 if (!vdev) {
3504 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
3505 return -EINVAL;
3506 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08003507 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003508 if (!config_cmd) {
3509 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3510 return -ENOMEM;
3511 }
3512
3513 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07003514 if (hdev->speed == USB_SPEED_HIGH &&
3515 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
3516 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
3517 xhci_free_command(xhci, config_cmd);
3518 spin_unlock_irqrestore(&xhci->lock, flags);
3519 return -ENOMEM;
3520 }
3521
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003522 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
3523 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11003524 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003525 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11003526 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003527 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11003528 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003529 if (xhci->hci_version > 0x95) {
3530 xhci_dbg(xhci, "xHCI version %x needs hub "
3531 "TT think time and number of ports\n",
3532 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11003533 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003534 /* Set TT think time - convert from ns to FS bit times.
3535 * 0 = 8 FS bit times, 1 = 16 FS bit times,
3536 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08003537 *
3538 * xHCI 1.0: this field shall be 0 if the device is not a
3539 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003540 */
3541 think_time = tt->think_time;
3542 if (think_time != 0)
3543 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08003544 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
3545 slot_ctx->tt_info |=
3546 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07003547 } else {
3548 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
3549 "TT think time or number of ports\n",
3550 (unsigned int) xhci->hci_version);
3551 }
3552 slot_ctx->dev_state = 0;
3553 spin_unlock_irqrestore(&xhci->lock, flags);
3554
3555 xhci_dbg(xhci, "Set up %s for hub device.\n",
3556 (xhci->hci_version > 0x95) ?
3557 "configure endpoint" : "evaluate context");
3558 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
3559 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
3560
3561 /* Issue and wait for the configure endpoint or
3562 * evaluate context command.
3563 */
3564 if (xhci->hci_version > 0x95)
3565 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
3566 false, false);
3567 else
3568 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
3569 true, false);
3570
3571 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
3572 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
3573
3574 xhci_free_command(xhci, config_cmd);
3575 return ret;
3576}
3577
Sarah Sharp66d4ead2009-04-27 19:52:28 -07003578int xhci_get_frame(struct usb_hcd *hcd)
3579{
3580 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3581 /* EHCI mods by the periodic size. Why? */
3582 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
3583}
3584
3585MODULE_DESCRIPTION(DRIVER_DESC);
3586MODULE_AUTHOR(DRIVER_AUTHOR);
3587MODULE_LICENSE("GPL");
3588
3589static int __init xhci_hcd_init(void)
3590{
3591#ifdef CONFIG_PCI
3592 int retval = 0;
3593
3594 retval = xhci_register_pci();
3595
3596 if (retval < 0) {
3597 printk(KERN_DEBUG "Problem registering PCI driver.");
3598 return retval;
3599 }
3600#endif
Sarah Sharp98441972009-05-14 11:44:18 -07003601 /*
3602 * Check the compiler generated sizes of structures that must be laid
3603 * out in specific ways for hardware access.
3604 */
3605 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
3606 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
3607 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
3608 /* xhci_device_control has eight fields, and also
3609 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
3610 */
Sarah Sharp98441972009-05-14 11:44:18 -07003611 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
3612 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
3613 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
3614 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
3615 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
3616 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
3617 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
3618 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07003619 return 0;
3620}
3621module_init(xhci_hcd_init);
3622
3623static void __exit xhci_hcd_cleanup(void)
3624{
3625#ifdef CONFIG_PCI
3626 xhci_unregister_pci();
3627#endif
3628}
3629module_exit(xhci_hcd_cleanup);