USB: EHCI: fix obscure race in ehci_endpoint_disable
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / usb / host / xhci.c
CommitLineData
66d4eadd
SS
1/*
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
43b86af8 23#include <linux/pci.h>
66d4eadd 24#include <linux/irq.h>
8df75f42 25#include <linux/log2.h>
66d4eadd 26#include <linux/module.h>
b0567b3f 27#include <linux/moduleparam.h>
5a0e3ad6 28#include <linux/slab.h>
66d4eadd
SS
29
30#include "xhci.h"
31
32#define DRIVER_AUTHOR "Sarah Sharp"
33#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
34
b0567b3f
SS
35/* 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
66d4eadd
SS
40/* 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/*
4f0f0bae 73 * Disable interrupts and begin the xHCI halting process.
66d4eadd 74 */
4f0f0bae 75void xhci_quiesce(struct xhci_hcd *xhci)
66d4eadd
SS
76{
77 u32 halted;
78 u32 cmd;
79 u32 mask;
80
66d4eadd
SS
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);
4f0f0bae
SS
89}
90
91/*
92 * 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
96 * should halt within 16 microframes of the run/stop bit being cleared.
97 * Read HC Halted bit in the status register to see when the HC is finished.
98 * XXX: shouldn't we set HC_STATE_HALT here somewhere?
99 */
100int xhci_halt(struct xhci_hcd *xhci)
101{
102 xhci_dbg(xhci, "// Halt the HC\n");
103 xhci_quiesce(xhci);
66d4eadd
SS
104
105 return handshake(xhci, &xhci->op_regs->status,
106 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
107}
108
ed07453f
SS
109/*
110 * Set the run bit and wait for the host to be running.
111 */
112int xhci_start(struct xhci_hcd *xhci)
113{
114 u32 temp;
115 int ret;
116
117 temp = xhci_readl(xhci, &xhci->op_regs->command);
118 temp |= (CMD_RUN);
119 xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n",
120 temp);
121 xhci_writel(xhci, temp, &xhci->op_regs->command);
122
123 /*
124 * Wait for the HCHalted Status bit to be 0 to indicate the host is
125 * running.
126 */
127 ret = handshake(xhci, &xhci->op_regs->status,
128 STS_HALT, 0, XHCI_MAX_HALT_USEC);
129 if (ret == -ETIMEDOUT)
130 xhci_err(xhci, "Host took too long to start, "
131 "waited %u microseconds.\n",
132 XHCI_MAX_HALT_USEC);
133 return ret;
134}
135
66d4eadd
SS
136/*
137 * Reset a halted HC, and set the internal HC state to HC_STATE_HALT.
138 *
139 * This resets pipelines, timers, counters, state machines, etc.
140 * Transactions will be terminated immediately, and operational registers
141 * will be set to their defaults.
142 */
143int xhci_reset(struct xhci_hcd *xhci)
144{
145 u32 command;
146 u32 state;
2d62f3ee 147 int ret;
66d4eadd
SS
148
149 state = xhci_readl(xhci, &xhci->op_regs->status);
d3512f63
SS
150 if ((state & STS_HALT) == 0) {
151 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
152 return 0;
153 }
66d4eadd
SS
154
155 xhci_dbg(xhci, "// Reset the HC\n");
156 command = xhci_readl(xhci, &xhci->op_regs->command);
157 command |= CMD_RESET;
158 xhci_writel(xhci, command, &xhci->op_regs->command);
159 /* XXX: Why does EHCI set this here? Shouldn't other code do this? */
160 xhci_to_hcd(xhci)->state = HC_STATE_HALT;
161
2d62f3ee
SS
162 ret = handshake(xhci, &xhci->op_regs->command,
163 CMD_RESET, 0, 250 * 1000);
164 if (ret)
165 return ret;
166
167 xhci_dbg(xhci, "Wait for controller to be ready for doorbell rings\n");
168 /*
169 * xHCI cannot write to any doorbells or operational registers other
170 * than status until the "Controller Not Ready" flag is cleared.
171 */
172 return handshake(xhci, &xhci->op_regs->status, STS_CNR, 0, 250 * 1000);
66d4eadd
SS
173}
174
43b86af8
DN
175/*
176 * Free IRQs
177 * free all IRQs request
178 */
179static void xhci_free_irq(struct xhci_hcd *xhci)
180{
181 int i;
182 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
183
184 /* return if using legacy interrupt */
185 if (xhci_to_hcd(xhci)->irq >= 0)
186 return;
187
188 if (xhci->msix_entries) {
189 for (i = 0; i < xhci->msix_count; i++)
190 if (xhci->msix_entries[i].vector)
191 free_irq(xhci->msix_entries[i].vector,
192 xhci_to_hcd(xhci));
193 } else if (pdev->irq >= 0)
194 free_irq(pdev->irq, xhci_to_hcd(xhci));
195
196 return;
197}
198
199/*
200 * Set up MSI
201 */
202static int xhci_setup_msi(struct xhci_hcd *xhci)
66d4eadd
SS
203{
204 int ret;
43b86af8
DN
205 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
206
207 ret = pci_enable_msi(pdev);
208 if (ret) {
209 xhci_err(xhci, "failed to allocate MSI entry\n");
210 return ret;
211 }
212
213 ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq,
214 0, "xhci_hcd", xhci_to_hcd(xhci));
215 if (ret) {
216 xhci_err(xhci, "disable MSI interrupt\n");
217 pci_disable_msi(pdev);
218 }
219
220 return ret;
221}
222
223/*
224 * Set up MSI-X
225 */
226static int xhci_setup_msix(struct xhci_hcd *xhci)
227{
228 int i, ret = 0;
66d4eadd
SS
229 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
230
43b86af8
DN
231 /*
232 * calculate number of msi-x vectors supported.
233 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
234 * with max number of interrupters based on the xhci HCSPARAMS1.
235 * - num_online_cpus: maximum msi-x vectors per CPUs core.
236 * Add additional 1 vector to ensure always available interrupt.
237 */
238 xhci->msix_count = min(num_online_cpus() + 1,
239 HCS_MAX_INTRS(xhci->hcs_params1));
240
241 xhci->msix_entries =
242 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
86871975 243 GFP_KERNEL);
66d4eadd
SS
244 if (!xhci->msix_entries) {
245 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
246 return -ENOMEM;
247 }
43b86af8
DN
248
249 for (i = 0; i < xhci->msix_count; i++) {
250 xhci->msix_entries[i].entry = i;
251 xhci->msix_entries[i].vector = 0;
252 }
66d4eadd
SS
253
254 ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count);
255 if (ret) {
256 xhci_err(xhci, "Failed to enable MSI-X\n");
257 goto free_entries;
258 }
259
43b86af8
DN
260 for (i = 0; i < xhci->msix_count; i++) {
261 ret = request_irq(xhci->msix_entries[i].vector,
262 (irq_handler_t)xhci_msi_irq,
263 0, "xhci_hcd", xhci_to_hcd(xhci));
264 if (ret)
265 goto disable_msix;
66d4eadd 266 }
43b86af8
DN
267
268 return ret;
66d4eadd
SS
269
270disable_msix:
43b86af8
DN
271 xhci_err(xhci, "disable MSI-X interrupt\n");
272 xhci_free_irq(xhci);
66d4eadd
SS
273 pci_disable_msix(pdev);
274free_entries:
275 kfree(xhci->msix_entries);
276 xhci->msix_entries = NULL;
277 return ret;
278}
279
66d4eadd
SS
280/* Free any IRQs and disable MSI-X */
281static void xhci_cleanup_msix(struct xhci_hcd *xhci)
282{
283 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
66d4eadd 284
43b86af8
DN
285 xhci_free_irq(xhci);
286
287 if (xhci->msix_entries) {
288 pci_disable_msix(pdev);
289 kfree(xhci->msix_entries);
290 xhci->msix_entries = NULL;
291 } else {
292 pci_disable_msi(pdev);
293 }
294
295 return;
66d4eadd 296}
66d4eadd
SS
297
298/*
299 * Initialize memory for HCD and xHC (one-time init).
300 *
301 * Program the PAGESIZE register, initialize the device context array, create
302 * device contexts (?), set up a command ring segment (or two?), create event
303 * ring (one for now).
304 */
305int xhci_init(struct usb_hcd *hcd)
306{
307 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
308 int retval = 0;
309
310 xhci_dbg(xhci, "xhci_init\n");
311 spin_lock_init(&xhci->lock);
b0567b3f
SS
312 if (link_quirk) {
313 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
314 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
315 } else {
ac9d8fe7 316 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
b0567b3f 317 }
66d4eadd
SS
318 retval = xhci_mem_init(xhci, GFP_KERNEL);
319 xhci_dbg(xhci, "Finished xhci_init\n");
320
321 return retval;
322}
323
7f84eef0
SS
324/*-------------------------------------------------------------------------*/
325
7f84eef0
SS
326
327#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
23e3be11 328void xhci_event_ring_work(unsigned long arg)
7f84eef0
SS
329{
330 unsigned long flags;
331 int temp;
8e595a5d 332 u64 temp_64;
7f84eef0
SS
333 struct xhci_hcd *xhci = (struct xhci_hcd *) arg;
334 int i, j;
335
336 xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies);
337
338 spin_lock_irqsave(&xhci->lock, flags);
339 temp = xhci_readl(xhci, &xhci->op_regs->status);
340 xhci_dbg(xhci, "op reg status = 0x%x\n", temp);
6f5165cf 341 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING)) {
e4ab05df
SS
342 xhci_dbg(xhci, "HW died, polling stopped.\n");
343 spin_unlock_irqrestore(&xhci->lock, flags);
344 return;
345 }
346
7f84eef0
SS
347 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
348 xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp);
349 xhci_dbg(xhci, "No-op commands handled = %d\n", xhci->noops_handled);
350 xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask);
351 xhci->error_bitmask = 0;
352 xhci_dbg(xhci, "Event ring:\n");
353 xhci_debug_segment(xhci, xhci->event_ring->deq_seg);
354 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
8e595a5d
SS
355 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
356 temp_64 &= ~ERST_PTR_MASK;
357 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
7f84eef0
SS
358 xhci_dbg(xhci, "Command ring:\n");
359 xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg);
360 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
361 xhci_dbg_cmd_ptrs(xhci);
3ffbba95 362 for (i = 0; i < MAX_HC_SLOTS; ++i) {
63a0d9ab
SS
363 if (!xhci->devs[i])
364 continue;
365 for (j = 0; j < 31; ++j) {
e9df17eb 366 xhci_dbg_ep_rings(xhci, i, j, &xhci->devs[i]->eps[j]);
3ffbba95
SS
367 }
368 }
7f84eef0
SS
369
370 if (xhci->noops_submitted != NUM_TEST_NOOPS)
23e3be11
SS
371 if (xhci_setup_one_noop(xhci))
372 xhci_ring_cmd_db(xhci);
7f84eef0
SS
373 spin_unlock_irqrestore(&xhci->lock, flags);
374
375 if (!xhci->zombie)
376 mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ);
377 else
378 xhci_dbg(xhci, "Quit polling the event ring.\n");
379}
380#endif
381
66d4eadd
SS
382/*
383 * Start the HC after it was halted.
384 *
385 * This function is called by the USB core when the HC driver is added.
386 * Its opposite is xhci_stop().
387 *
388 * xhci_init() must be called once before this function can be called.
389 * Reset the HC, enable device slot contexts, program DCBAAP, and
390 * set command ring pointer and event ring pointer.
391 *
392 * Setup MSI-X vectors and enable interrupts.
393 */
394int xhci_run(struct usb_hcd *hcd)
395{
396 u32 temp;
8e595a5d 397 u64 temp_64;
43b86af8 398 u32 ret;
66d4eadd 399 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
43b86af8 400 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
7f84eef0 401 void (*doorbell)(struct xhci_hcd *) = NULL;
66d4eadd 402
0f2a7930 403 hcd->uses_new_polling = 1;
0f2a7930 404
7f84eef0 405 xhci_dbg(xhci, "xhci_run\n");
43b86af8
DN
406 /* unregister the legacy interrupt */
407 if (hcd->irq)
408 free_irq(hcd->irq, hcd);
409 hcd->irq = -1;
410
66d4eadd 411 ret = xhci_setup_msix(xhci);
43b86af8
DN
412 if (ret)
413 /* fall back to msi*/
414 ret = xhci_setup_msi(xhci);
415
416 if (ret) {
417 /* fall back to legacy interrupt*/
418 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
419 hcd->irq_descr, hcd);
420 if (ret) {
421 xhci_err(xhci, "request interrupt %d failed\n",
422 pdev->irq);
423 return ret;
424 }
425 hcd->irq = pdev->irq;
426 }
66d4eadd 427
7f84eef0
SS
428#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
429 init_timer(&xhci->event_ring_timer);
430 xhci->event_ring_timer.data = (unsigned long) xhci;
23e3be11 431 xhci->event_ring_timer.function = xhci_event_ring_work;
7f84eef0
SS
432 /* Poll the event ring */
433 xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ;
434 xhci->zombie = 0;
435 xhci_dbg(xhci, "Setting event ring polling timer\n");
436 add_timer(&xhci->event_ring_timer);
437#endif
438
66e49d87
SS
439 xhci_dbg(xhci, "Command ring memory map follows:\n");
440 xhci_debug_ring(xhci, xhci->cmd_ring);
441 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
442 xhci_dbg_cmd_ptrs(xhci);
443
444 xhci_dbg(xhci, "ERST memory map follows:\n");
445 xhci_dbg_erst(xhci, &xhci->erst);
446 xhci_dbg(xhci, "Event ring:\n");
447 xhci_debug_ring(xhci, xhci->event_ring);
448 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
449 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
450 temp_64 &= ~ERST_PTR_MASK;
451 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
452
66d4eadd
SS
453 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
454 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
a4d88302 455 temp &= ~ER_IRQ_INTERVAL_MASK;
66d4eadd
SS
456 temp |= (u32) 160;
457 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
458
459 /* Set the HCD state before we enable the irqs */
460 hcd->state = HC_STATE_RUNNING;
461 temp = xhci_readl(xhci, &xhci->op_regs->command);
462 temp |= (CMD_EIE);
463 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
464 temp);
465 xhci_writel(xhci, temp, &xhci->op_regs->command);
466
467 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
700e2052
GKH
468 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
469 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
66d4eadd
SS
470 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
471 &xhci->ir_set->irq_pending);
472 xhci_print_ir_set(xhci, xhci->ir_set, 0);
473
7f84eef0 474 if (NUM_TEST_NOOPS > 0)
23e3be11 475 doorbell = xhci_setup_one_noop(xhci);
0238634d
SS
476 if (xhci->quirks & XHCI_NEC_HOST)
477 xhci_queue_vendor_command(xhci, 0, 0, 0,
478 TRB_TYPE(TRB_NEC_GET_FW));
7f84eef0 479
ed07453f
SS
480 if (xhci_start(xhci)) {
481 xhci_halt(xhci);
482 return -ENODEV;
483 }
484
7f84eef0
SS
485 if (doorbell)
486 (*doorbell)(xhci);
0238634d
SS
487 if (xhci->quirks & XHCI_NEC_HOST)
488 xhci_ring_cmd_db(xhci);
66d4eadd
SS
489
490 xhci_dbg(xhci, "Finished xhci_run\n");
491 return 0;
492}
493
494/*
495 * Stop xHCI driver.
496 *
497 * This function is called by the USB core when the HC driver is removed.
498 * Its opposite is xhci_run().
499 *
500 * Disable device contexts, disable IRQs, and quiesce the HC.
501 * Reset the HC, finish any completed transactions, and cleanup memory.
502 */
503void xhci_stop(struct usb_hcd *hcd)
504{
505 u32 temp;
506 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
507
508 spin_lock_irq(&xhci->lock);
66d4eadd
SS
509 xhci_halt(xhci);
510 xhci_reset(xhci);
43b86af8 511 xhci_cleanup_msix(xhci);
66d4eadd
SS
512 spin_unlock_irq(&xhci->lock);
513
7f84eef0
SS
514#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
515 /* Tell the event ring poll function not to reschedule */
516 xhci->zombie = 1;
517 del_timer_sync(&xhci->event_ring_timer);
518#endif
519
66d4eadd
SS
520 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
521 temp = xhci_readl(xhci, &xhci->op_regs->status);
522 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
523 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
524 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
525 &xhci->ir_set->irq_pending);
526 xhci_print_ir_set(xhci, xhci->ir_set, 0);
527
528 xhci_dbg(xhci, "cleaning up memory\n");
529 xhci_mem_cleanup(xhci);
530 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
531 xhci_readl(xhci, &xhci->op_regs->status));
532}
533
534/*
535 * Shutdown HC (not bus-specific)
536 *
537 * This is called when the machine is rebooting or halting. We assume that the
538 * machine will be powered off, and the HC's internal state will be reset.
539 * Don't bother to free memory.
540 */
541void xhci_shutdown(struct usb_hcd *hcd)
542{
543 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
544
545 spin_lock_irq(&xhci->lock);
546 xhci_halt(xhci);
66d4eadd 547 xhci_cleanup_msix(xhci);
43b86af8 548 spin_unlock_irq(&xhci->lock);
66d4eadd
SS
549
550 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
551 xhci_readl(xhci, &xhci->op_regs->status));
552}
553
b5b5c3ac 554#ifdef CONFIG_PM
5535b1d5
AX
555static void xhci_save_registers(struct xhci_hcd *xhci)
556{
557 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
558 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
559 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
560 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
561 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
562 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
563 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
564 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
565 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
566}
567
568static void xhci_restore_registers(struct xhci_hcd *xhci)
569{
570 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
571 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
572 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
573 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
574 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
575 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
576 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
577 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
578}
579
89821320
SS
580static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
581{
582 u64 val_64;
583
584 /* step 2: initialize command ring buffer */
585 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
586 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
587 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
588 xhci->cmd_ring->dequeue) &
589 (u64) ~CMD_RING_RSVD_BITS) |
590 xhci->cmd_ring->cycle_state;
591 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
592 (long unsigned long) val_64);
593 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
594}
595
596/*
597 * The whole command ring must be cleared to zero when we suspend the host.
598 *
599 * The host doesn't save the command ring pointer in the suspend well, so we
600 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
601 * aligned, because of the reserved bits in the command ring dequeue pointer
602 * register. Therefore, we can't just set the dequeue pointer back in the
603 * middle of the ring (TRBs are 16-byte aligned).
604 */
605static void xhci_clear_command_ring(struct xhci_hcd *xhci)
606{
607 struct xhci_ring *ring;
608 struct xhci_segment *seg;
609
610 ring = xhci->cmd_ring;
611 seg = ring->deq_seg;
612 do {
613 memset(seg->trbs, 0, SEGMENT_SIZE);
614 seg = seg->next;
615 } while (seg != ring->deq_seg);
616
617 /* Reset the software enqueue and dequeue pointers */
618 ring->deq_seg = ring->first_seg;
619 ring->dequeue = ring->first_seg->trbs;
620 ring->enq_seg = ring->deq_seg;
621 ring->enqueue = ring->dequeue;
622
623 /*
624 * Ring is now zeroed, so the HW should look for change of ownership
625 * when the cycle bit is set to 1.
626 */
627 ring->cycle_state = 1;
628
629 /*
630 * Reset the hardware dequeue pointer.
631 * Yes, this will need to be re-written after resume, but we're paranoid
632 * and want to make sure the hardware doesn't access bogus memory
633 * because, say, the BIOS or an SMI started the host without changing
634 * the command ring pointers.
635 */
636 xhci_set_cmd_ring_deq(xhci);
637}
638
5535b1d5
AX
639/*
640 * Stop HC (not bus-specific)
641 *
642 * This is called when the machine transition into S3/S4 mode.
643 *
644 */
645int xhci_suspend(struct xhci_hcd *xhci)
646{
647 int rc = 0;
648 struct usb_hcd *hcd = xhci_to_hcd(xhci);
649 u32 command;
650
651 spin_lock_irq(&xhci->lock);
652 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
653 /* step 1: stop endpoint */
654 /* skipped assuming that port suspend has done */
655
656 /* step 2: clear Run/Stop bit */
657 command = xhci_readl(xhci, &xhci->op_regs->command);
658 command &= ~CMD_RUN;
659 xhci_writel(xhci, command, &xhci->op_regs->command);
660 if (handshake(xhci, &xhci->op_regs->status,
661 STS_HALT, STS_HALT, 100*100)) {
662 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
663 spin_unlock_irq(&xhci->lock);
664 return -ETIMEDOUT;
665 }
89821320 666 xhci_clear_command_ring(xhci);
5535b1d5
AX
667
668 /* step 3: save registers */
669 xhci_save_registers(xhci);
670
671 /* step 4: set CSS flag */
672 command = xhci_readl(xhci, &xhci->op_regs->command);
673 command |= CMD_CSS;
674 xhci_writel(xhci, command, &xhci->op_regs->command);
675 if (handshake(xhci, &xhci->op_regs->status, STS_SAVE, 0, 10*100)) {
676 xhci_warn(xhci, "WARN: xHC CMD_CSS timeout\n");
677 spin_unlock_irq(&xhci->lock);
678 return -ETIMEDOUT;
679 }
680 /* step 5: remove core well power */
681 xhci_cleanup_msix(xhci);
682 spin_unlock_irq(&xhci->lock);
683
684 return rc;
685}
686
687/*
688 * start xHC (not bus-specific)
689 *
690 * This is called when the machine transition from S3/S4 mode.
691 *
692 */
693int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
694{
695 u32 command, temp = 0;
696 struct usb_hcd *hcd = xhci_to_hcd(xhci);
697 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
5535b1d5
AX
698 int old_state, retval;
699
700 old_state = hcd->state;
701 if (time_before(jiffies, xhci->next_statechange))
702 msleep(100);
703
704 spin_lock_irq(&xhci->lock);
705
706 if (!hibernated) {
707 /* step 1: restore register */
708 xhci_restore_registers(xhci);
709 /* step 2: initialize command ring buffer */
89821320 710 xhci_set_cmd_ring_deq(xhci);
5535b1d5
AX
711 /* step 3: restore state and start state*/
712 /* step 3: set CRS flag */
713 command = xhci_readl(xhci, &xhci->op_regs->command);
714 command |= CMD_CRS;
715 xhci_writel(xhci, command, &xhci->op_regs->command);
716 if (handshake(xhci, &xhci->op_regs->status,
717 STS_RESTORE, 0, 10*100)) {
718 xhci_dbg(xhci, "WARN: xHC CMD_CSS timeout\n");
719 spin_unlock_irq(&xhci->lock);
720 return -ETIMEDOUT;
721 }
722 temp = xhci_readl(xhci, &xhci->op_regs->status);
723 }
724
725 /* If restore operation fails, re-initialize the HC during resume */
726 if ((temp & STS_SRE) || hibernated) {
727 usb_root_hub_lost_power(hcd->self.root_hub);
728
729 xhci_dbg(xhci, "Stop HCD\n");
730 xhci_halt(xhci);
731 xhci_reset(xhci);
732 if (hibernated)
733 xhci_cleanup_msix(xhci);
734 spin_unlock_irq(&xhci->lock);
735
736#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
737 /* Tell the event ring poll function not to reschedule */
738 xhci->zombie = 1;
739 del_timer_sync(&xhci->event_ring_timer);
740#endif
741
742 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
743 temp = xhci_readl(xhci, &xhci->op_regs->status);
744 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
745 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
746 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
747 &xhci->ir_set->irq_pending);
748 xhci_print_ir_set(xhci, xhci->ir_set, 0);
749
750 xhci_dbg(xhci, "cleaning up memory\n");
751 xhci_mem_cleanup(xhci);
752 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
753 xhci_readl(xhci, &xhci->op_regs->status));
754
755 xhci_dbg(xhci, "Initialize the HCD\n");
756 retval = xhci_init(hcd);
757 if (retval)
758 return retval;
759
760 xhci_dbg(xhci, "Start the HCD\n");
761 retval = xhci_run(hcd);
762 if (!retval)
763 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
764 hcd->state = HC_STATE_SUSPENDED;
765 return retval;
766 }
767
74bb844a 768 spin_unlock_irq(&xhci->lock);
5535b1d5
AX
769 /* Re-setup MSI-X */
770 if (hcd->irq)
771 free_irq(hcd->irq, hcd);
772 hcd->irq = -1;
773
774 retval = xhci_setup_msix(xhci);
775 if (retval)
776 /* fall back to msi*/
777 retval = xhci_setup_msi(xhci);
778
779 if (retval) {
780 /* fall back to legacy interrupt*/
781 retval = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
782 hcd->irq_descr, hcd);
783 if (retval) {
784 xhci_err(xhci, "request interrupt %d failed\n",
785 pdev->irq);
786 return retval;
787 }
788 hcd->irq = pdev->irq;
789 }
790
74bb844a 791 spin_lock_irq(&xhci->lock);
5535b1d5
AX
792 /* step 4: set Run/Stop bit */
793 command = xhci_readl(xhci, &xhci->op_regs->command);
794 command |= CMD_RUN;
795 xhci_writel(xhci, command, &xhci->op_regs->command);
796 handshake(xhci, &xhci->op_regs->status, STS_HALT,
797 0, 250 * 1000);
798
799 /* step 5: walk topology and initialize portsc,
800 * portpmsc and portli
801 */
802 /* this is done in bus_resume */
803
804 /* step 6: restart each of the previously
805 * Running endpoints by ringing their doorbells
806 */
807
808 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
809 if (!hibernated)
810 hcd->state = old_state;
811 else
812 hcd->state = HC_STATE_SUSPENDED;
813
814 spin_unlock_irq(&xhci->lock);
815 return 0;
816}
b5b5c3ac
SS
817#endif /* CONFIG_PM */
818
7f84eef0
SS
819/*-------------------------------------------------------------------------*/
820
d0e96f5a
SS
821/**
822 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
823 * HCDs. Find the index for an endpoint given its descriptor. Use the return
824 * value to right shift 1 for the bitmask.
825 *
826 * Index = (epnum * 2) + direction - 1,
827 * where direction = 0 for OUT, 1 for IN.
828 * For control endpoints, the IN index is used (OUT index is unused), so
829 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
830 */
831unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
832{
833 unsigned int index;
834 if (usb_endpoint_xfer_control(desc))
835 index = (unsigned int) (usb_endpoint_num(desc)*2);
836 else
837 index = (unsigned int) (usb_endpoint_num(desc)*2) +
838 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
839 return index;
840}
841
f94e0186
SS
842/* Find the flag for this endpoint (for use in the control context). Use the
843 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
844 * bit 1, etc.
845 */
846unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
847{
848 return 1 << (xhci_get_endpoint_index(desc) + 1);
849}
850
ac9d8fe7
SS
851/* Find the flag for this endpoint (for use in the control context). Use the
852 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
853 * bit 1, etc.
854 */
855unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
856{
857 return 1 << (ep_index + 1);
858}
859
f94e0186
SS
860/* Compute the last valid endpoint context index. Basically, this is the
861 * endpoint index plus one. For slot contexts with more than valid endpoint,
862 * we find the most significant bit set in the added contexts flags.
863 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
864 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
865 */
ac9d8fe7 866unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
f94e0186
SS
867{
868 return fls(added_ctxs) - 1;
869}
870
d0e96f5a
SS
871/* Returns 1 if the arguments are OK;
872 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
873 */
874int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
64927730
AX
875 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
876 const char *func) {
877 struct xhci_hcd *xhci;
878 struct xhci_virt_device *virt_dev;
879
d0e96f5a
SS
880 if (!hcd || (check_ep && !ep) || !udev) {
881 printk(KERN_DEBUG "xHCI %s called with invalid args\n",
882 func);
883 return -EINVAL;
884 }
885 if (!udev->parent) {
886 printk(KERN_DEBUG "xHCI %s called for root hub\n",
887 func);
888 return 0;
889 }
64927730
AX
890
891 if (check_virt_dev) {
892 xhci = hcd_to_xhci(hcd);
893 if (!udev->slot_id || !xhci->devs
894 || !xhci->devs[udev->slot_id]) {
895 printk(KERN_DEBUG "xHCI %s called with unaddressed "
896 "device\n", func);
897 return -EINVAL;
898 }
899
900 virt_dev = xhci->devs[udev->slot_id];
901 if (virt_dev->udev != udev) {
902 printk(KERN_DEBUG "xHCI %s called with udev and "
903 "virt_dev does not match\n", func);
904 return -EINVAL;
905 }
d0e96f5a 906 }
64927730 907
d0e96f5a
SS
908 return 1;
909}
910
2d3f1fac 911static int xhci_configure_endpoint(struct xhci_hcd *xhci,
913a8a34
SS
912 struct usb_device *udev, struct xhci_command *command,
913 bool ctx_change, bool must_succeed);
2d3f1fac
SS
914
915/*
916 * Full speed devices may have a max packet size greater than 8 bytes, but the
917 * USB core doesn't know that until it reads the first 8 bytes of the
918 * descriptor. If the usb_device's max packet size changes after that point,
919 * we need to issue an evaluate context command and wait on it.
920 */
921static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
922 unsigned int ep_index, struct urb *urb)
923{
924 struct xhci_container_ctx *in_ctx;
925 struct xhci_container_ctx *out_ctx;
926 struct xhci_input_control_ctx *ctrl_ctx;
927 struct xhci_ep_ctx *ep_ctx;
928 int max_packet_size;
929 int hw_max_packet_size;
930 int ret = 0;
931
932 out_ctx = xhci->devs[slot_id]->out_ctx;
933 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
934 hw_max_packet_size = MAX_PACKET_DECODED(ep_ctx->ep_info2);
935 max_packet_size = urb->dev->ep0.desc.wMaxPacketSize;
936 if (hw_max_packet_size != max_packet_size) {
937 xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n");
938 xhci_dbg(xhci, "Max packet size in usb_device = %d\n",
939 max_packet_size);
940 xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n",
941 hw_max_packet_size);
942 xhci_dbg(xhci, "Issuing evaluate context command.\n");
943
944 /* Set up the modified control endpoint 0 */
913a8a34
SS
945 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
946 xhci->devs[slot_id]->out_ctx, ep_index);
2d3f1fac
SS
947 in_ctx = xhci->devs[slot_id]->in_ctx;
948 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
949 ep_ctx->ep_info2 &= ~MAX_PACKET_MASK;
950 ep_ctx->ep_info2 |= MAX_PACKET(max_packet_size);
951
952 /* Set up the input context flags for the command */
953 /* FIXME: This won't work if a non-default control endpoint
954 * changes max packet sizes.
955 */
956 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
957 ctrl_ctx->add_flags = EP0_FLAG;
958 ctrl_ctx->drop_flags = 0;
959
960 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
961 xhci_dbg_ctx(xhci, in_ctx, ep_index);
962 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
963 xhci_dbg_ctx(xhci, out_ctx, ep_index);
964
913a8a34
SS
965 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
966 true, false);
2d3f1fac
SS
967
968 /* Clean up the input context for later use by bandwidth
969 * functions.
970 */
971 ctrl_ctx->add_flags = SLOT_FLAG;
972 }
973 return ret;
974}
975
d0e96f5a
SS
976/*
977 * non-error returns are a promise to giveback() the urb later
978 * we drop ownership so next owner (or urb unlink) can get it
979 */
980int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
981{
982 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
983 unsigned long flags;
984 int ret = 0;
985 unsigned int slot_id, ep_index;
8e51adcc
AX
986 struct urb_priv *urb_priv;
987 int size, i;
2d3f1fac 988
64927730
AX
989 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
990 true, true, __func__) <= 0)
d0e96f5a
SS
991 return -EINVAL;
992
993 slot_id = urb->dev->slot_id;
994 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
d0e96f5a 995
541c7d43 996 if (!HCD_HW_ACCESSIBLE(hcd)) {
d0e96f5a
SS
997 if (!in_interrupt())
998 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
999 ret = -ESHUTDOWN;
1000 goto exit;
1001 }
8e51adcc
AX
1002
1003 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1004 size = urb->number_of_packets;
1005 else
1006 size = 1;
1007
1008 urb_priv = kzalloc(sizeof(struct urb_priv) +
1009 size * sizeof(struct xhci_td *), mem_flags);
1010 if (!urb_priv)
1011 return -ENOMEM;
1012
1013 for (i = 0; i < size; i++) {
1014 urb_priv->td[i] = kzalloc(sizeof(struct xhci_td), mem_flags);
1015 if (!urb_priv->td[i]) {
1016 urb_priv->length = i;
1017 xhci_urb_free_priv(xhci, urb_priv);
1018 return -ENOMEM;
1019 }
1020 }
1021
1022 urb_priv->length = size;
1023 urb_priv->td_cnt = 0;
1024 urb->hcpriv = urb_priv;
1025
2d3f1fac
SS
1026 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1027 /* Check to see if the max packet size for the default control
1028 * endpoint changed during FS device enumeration
1029 */
1030 if (urb->dev->speed == USB_SPEED_FULL) {
1031 ret = xhci_check_maxpacket(xhci, slot_id,
1032 ep_index, urb);
1033 if (ret < 0)
1034 return ret;
1035 }
1036
b11069f5
SS
1037 /* We have a spinlock and interrupts disabled, so we must pass
1038 * atomic context to this function, which may allocate memory.
1039 */
2d3f1fac 1040 spin_lock_irqsave(&xhci->lock, flags);
6f5165cf
SS
1041 if (xhci->xhc_state & XHCI_STATE_DYING)
1042 goto dying;
b11069f5 1043 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
23e3be11 1044 slot_id, ep_index);
2d3f1fac
SS
1045 spin_unlock_irqrestore(&xhci->lock, flags);
1046 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1047 spin_lock_irqsave(&xhci->lock, flags);
6f5165cf
SS
1048 if (xhci->xhc_state & XHCI_STATE_DYING)
1049 goto dying;
8df75f42
SS
1050 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1051 EP_GETTING_STREAMS) {
1052 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1053 "is transitioning to using streams.\n");
1054 ret = -EINVAL;
1055 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1056 EP_GETTING_NO_STREAMS) {
1057 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1058 "is transitioning to "
1059 "not having streams.\n");
1060 ret = -EINVAL;
1061 } else {
1062 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1063 slot_id, ep_index);
1064 }
2d3f1fac 1065 spin_unlock_irqrestore(&xhci->lock, flags);
624defa1
SS
1066 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1067 spin_lock_irqsave(&xhci->lock, flags);
6f5165cf
SS
1068 if (xhci->xhc_state & XHCI_STATE_DYING)
1069 goto dying;
624defa1
SS
1070 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1071 slot_id, ep_index);
1072 spin_unlock_irqrestore(&xhci->lock, flags);
2d3f1fac 1073 } else {
787f4e5a
AX
1074 spin_lock_irqsave(&xhci->lock, flags);
1075 if (xhci->xhc_state & XHCI_STATE_DYING)
1076 goto dying;
1077 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1078 slot_id, ep_index);
1079 spin_unlock_irqrestore(&xhci->lock, flags);
2d3f1fac 1080 }
d0e96f5a 1081exit:
d0e96f5a 1082 return ret;
6f5165cf 1083dying:
8e51adcc
AX
1084 xhci_urb_free_priv(xhci, urb_priv);
1085 urb->hcpriv = NULL;
6f5165cf
SS
1086 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1087 "non-responsive xHCI host.\n",
1088 urb->ep->desc.bEndpointAddress, urb);
1089 spin_unlock_irqrestore(&xhci->lock, flags);
1090 return -ESHUTDOWN;
d0e96f5a
SS
1091}
1092
021bff91
SS
1093/* Get the right ring for the given URB.
1094 * If the endpoint supports streams, boundary check the URB's stream ID.
1095 * If the endpoint doesn't support streams, return the singular endpoint ring.
1096 */
1097static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1098 struct urb *urb)
1099{
1100 unsigned int slot_id;
1101 unsigned int ep_index;
1102 unsigned int stream_id;
1103 struct xhci_virt_ep *ep;
1104
1105 slot_id = urb->dev->slot_id;
1106 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1107 stream_id = urb->stream_id;
1108 ep = &xhci->devs[slot_id]->eps[ep_index];
1109 /* Common case: no streams */
1110 if (!(ep->ep_state & EP_HAS_STREAMS))
1111 return ep->ring;
1112
1113 if (stream_id == 0) {
1114 xhci_warn(xhci,
1115 "WARN: Slot ID %u, ep index %u has streams, "
1116 "but URB has no stream ID.\n",
1117 slot_id, ep_index);
1118 return NULL;
1119 }
1120
1121 if (stream_id < ep->stream_info->num_streams)
1122 return ep->stream_info->stream_rings[stream_id];
1123
1124 xhci_warn(xhci,
1125 "WARN: Slot ID %u, ep index %u has "
1126 "stream IDs 1 to %u allocated, "
1127 "but stream ID %u is requested.\n",
1128 slot_id, ep_index,
1129 ep->stream_info->num_streams - 1,
1130 stream_id);
1131 return NULL;
1132}
1133
ae636747
SS
1134/*
1135 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1136 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1137 * should pick up where it left off in the TD, unless a Set Transfer Ring
1138 * Dequeue Pointer is issued.
1139 *
1140 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1141 * the ring. Since the ring is a contiguous structure, they can't be physically
1142 * removed. Instead, there are two options:
1143 *
1144 * 1) If the HC is in the middle of processing the URB to be canceled, we
1145 * simply move the ring's dequeue pointer past those TRBs using the Set
1146 * Transfer Ring Dequeue Pointer command. This will be the common case,
1147 * when drivers timeout on the last submitted URB and attempt to cancel.
1148 *
1149 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1150 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1151 * HC will need to invalidate the any TRBs it has cached after the stop
1152 * endpoint command, as noted in the xHCI 0.95 errata.
1153 *
1154 * 3) The TD may have completed by the time the Stop Endpoint Command
1155 * completes, so software needs to handle that case too.
1156 *
1157 * This function should protect against the TD enqueueing code ringing the
1158 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1159 * It also needs to account for multiple cancellations on happening at the same
1160 * time for the same endpoint.
1161 *
1162 * Note that this function can be called in any context, or so says
1163 * usb_hcd_unlink_urb()
d0e96f5a
SS
1164 */
1165int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1166{
ae636747 1167 unsigned long flags;
8e51adcc 1168 int ret, i;
e34b2fbf 1169 u32 temp;
ae636747 1170 struct xhci_hcd *xhci;
8e51adcc 1171 struct urb_priv *urb_priv;
ae636747
SS
1172 struct xhci_td *td;
1173 unsigned int ep_index;
1174 struct xhci_ring *ep_ring;
63a0d9ab 1175 struct xhci_virt_ep *ep;
ae636747
SS
1176
1177 xhci = hcd_to_xhci(hcd);
1178 spin_lock_irqsave(&xhci->lock, flags);
1179 /* Make sure the URB hasn't completed or been unlinked already */
1180 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1181 if (ret || !urb->hcpriv)
1182 goto done;
e34b2fbf
SS
1183 temp = xhci_readl(xhci, &xhci->op_regs->status);
1184 if (temp == 0xffffffff) {
1185 xhci_dbg(xhci, "HW died, freeing TD.\n");
8e51adcc 1186 urb_priv = urb->hcpriv;
e34b2fbf
SS
1187
1188 usb_hcd_unlink_urb_from_ep(hcd, urb);
1189 spin_unlock_irqrestore(&xhci->lock, flags);
1190 usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, -ESHUTDOWN);
8e51adcc 1191 xhci_urb_free_priv(xhci, urb_priv);
e34b2fbf
SS
1192 return ret;
1193 }
6f5165cf
SS
1194 if (xhci->xhc_state & XHCI_STATE_DYING) {
1195 xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on "
1196 "non-responsive xHCI host.\n",
1197 urb->ep->desc.bEndpointAddress, urb);
1198 /* Let the stop endpoint command watchdog timer (which set this
1199 * state) finish cleaning up the endpoint TD lists. We must
1200 * have caught it in the middle of dropping a lock and giving
1201 * back an URB.
1202 */
1203 goto done;
1204 }
ae636747 1205
700e2052 1206 xhci_dbg(xhci, "Cancel URB %p\n", urb);
66e49d87
SS
1207 xhci_dbg(xhci, "Event ring:\n");
1208 xhci_debug_ring(xhci, xhci->event_ring);
ae636747 1209 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
63a0d9ab 1210 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
e9df17eb
SS
1211 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1212 if (!ep_ring) {
1213 ret = -EINVAL;
1214 goto done;
1215 }
1216
66e49d87
SS
1217 xhci_dbg(xhci, "Endpoint ring:\n");
1218 xhci_debug_ring(xhci, ep_ring);
ae636747 1219
8e51adcc
AX
1220 urb_priv = urb->hcpriv;
1221
1222 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1223 td = urb_priv->td[i];
1224 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1225 }
1226
ae636747
SS
1227 /* Queue a stop endpoint command, but only if this is
1228 * the first cancellation to be handled.
1229 */
678539cf
SS
1230 if (!(ep->ep_state & EP_HALT_PENDING)) {
1231 ep->ep_state |= EP_HALT_PENDING;
6f5165cf
SS
1232 ep->stop_cmds_pending++;
1233 ep->stop_cmd_timer.expires = jiffies +
1234 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1235 add_timer(&ep->stop_cmd_timer);
be88fe4f 1236 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
23e3be11 1237 xhci_ring_cmd_db(xhci);
ae636747
SS
1238 }
1239done:
1240 spin_unlock_irqrestore(&xhci->lock, flags);
1241 return ret;
d0e96f5a
SS
1242}
1243
f94e0186
SS
1244/* Drop an endpoint from a new bandwidth configuration for this device.
1245 * Only one call to this function is allowed per endpoint before
1246 * check_bandwidth() or reset_bandwidth() must be called.
1247 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1248 * add the endpoint to the schedule with possibly new parameters denoted by a
1249 * different endpoint descriptor in usb_host_endpoint.
1250 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1251 * not allowed.
f88ba78d
SS
1252 *
1253 * The USB core will not allow URBs to be queued to an endpoint that is being
1254 * disabled, so there's no need for mutual exclusion to protect
1255 * the xhci->devs[slot_id] structure.
f94e0186
SS
1256 */
1257int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1258 struct usb_host_endpoint *ep)
1259{
f94e0186 1260 struct xhci_hcd *xhci;
d115b048
JY
1261 struct xhci_container_ctx *in_ctx, *out_ctx;
1262 struct xhci_input_control_ctx *ctrl_ctx;
1263 struct xhci_slot_ctx *slot_ctx;
f94e0186
SS
1264 unsigned int last_ctx;
1265 unsigned int ep_index;
1266 struct xhci_ep_ctx *ep_ctx;
1267 u32 drop_flag;
1268 u32 new_add_flags, new_drop_flags, new_slot_info;
1269 int ret;
1270
64927730 1271 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
f94e0186
SS
1272 if (ret <= 0)
1273 return ret;
1274 xhci = hcd_to_xhci(hcd);
700e2052 1275 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
f94e0186
SS
1276
1277 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1278 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1279 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1280 __func__, drop_flag);
1281 return 0;
1282 }
1283
f94e0186 1284 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
d115b048
JY
1285 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1286 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
f94e0186 1287 ep_index = xhci_get_endpoint_index(&ep->desc);
d115b048 1288 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
f94e0186
SS
1289 /* If the HC already knows the endpoint is disabled,
1290 * or the HCD has noted it is disabled, ignore this request
1291 */
1292 if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED ||
d115b048 1293 ctrl_ctx->drop_flags & xhci_get_endpoint_flag(&ep->desc)) {
700e2052
GKH
1294 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1295 __func__, ep);
f94e0186
SS
1296 return 0;
1297 }
1298
d115b048
JY
1299 ctrl_ctx->drop_flags |= drop_flag;
1300 new_drop_flags = ctrl_ctx->drop_flags;
f94e0186 1301
0a023c6c 1302 ctrl_ctx->add_flags &= ~drop_flag;
d115b048 1303 new_add_flags = ctrl_ctx->add_flags;
f94e0186 1304
d115b048
JY
1305 last_ctx = xhci_last_valid_endpoint(ctrl_ctx->add_flags);
1306 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
f94e0186 1307 /* Update the last valid endpoint context, if we deleted the last one */
d115b048
JY
1308 if ((slot_ctx->dev_info & LAST_CTX_MASK) > LAST_CTX(last_ctx)) {
1309 slot_ctx->dev_info &= ~LAST_CTX_MASK;
1310 slot_ctx->dev_info |= LAST_CTX(last_ctx);
f94e0186 1311 }
d115b048 1312 new_slot_info = slot_ctx->dev_info;
f94e0186
SS
1313
1314 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1315
f94e0186
SS
1316 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1317 (unsigned int) ep->desc.bEndpointAddress,
1318 udev->slot_id,
1319 (unsigned int) new_drop_flags,
1320 (unsigned int) new_add_flags,
1321 (unsigned int) new_slot_info);
1322 return 0;
1323}
1324
1325/* Add an endpoint to a new possible bandwidth configuration for this device.
1326 * Only one call to this function is allowed per endpoint before
1327 * check_bandwidth() or reset_bandwidth() must be called.
1328 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1329 * add the endpoint to the schedule with possibly new parameters denoted by a
1330 * different endpoint descriptor in usb_host_endpoint.
1331 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1332 * not allowed.
f88ba78d
SS
1333 *
1334 * The USB core will not allow URBs to be queued to an endpoint until the
1335 * configuration or alt setting is installed in the device, so there's no need
1336 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
f94e0186
SS
1337 */
1338int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1339 struct usb_host_endpoint *ep)
1340{
f94e0186 1341 struct xhci_hcd *xhci;
d115b048 1342 struct xhci_container_ctx *in_ctx, *out_ctx;
f94e0186
SS
1343 unsigned int ep_index;
1344 struct xhci_ep_ctx *ep_ctx;
d115b048
JY
1345 struct xhci_slot_ctx *slot_ctx;
1346 struct xhci_input_control_ctx *ctrl_ctx;
f94e0186
SS
1347 u32 added_ctxs;
1348 unsigned int last_ctx;
1349 u32 new_add_flags, new_drop_flags, new_slot_info;
1350 int ret = 0;
1351
64927730 1352 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
a1587d97
SS
1353 if (ret <= 0) {
1354 /* So we won't queue a reset ep command for a root hub */
1355 ep->hcpriv = NULL;
f94e0186 1356 return ret;
a1587d97 1357 }
f94e0186
SS
1358 xhci = hcd_to_xhci(hcd);
1359
1360 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1361 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1362 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1363 /* FIXME when we have to issue an evaluate endpoint command to
1364 * deal with ep0 max packet size changing once we get the
1365 * descriptors
1366 */
1367 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1368 __func__, added_ctxs);
1369 return 0;
1370 }
1371
f94e0186 1372 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
d115b048
JY
1373 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1374 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
f94e0186 1375 ep_index = xhci_get_endpoint_index(&ep->desc);
d115b048 1376 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
f94e0186
SS
1377 /* If the HCD has already noted the endpoint is enabled,
1378 * ignore this request.
1379 */
d115b048 1380 if (ctrl_ctx->add_flags & xhci_get_endpoint_flag(&ep->desc)) {
700e2052
GKH
1381 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1382 __func__, ep);
f94e0186
SS
1383 return 0;
1384 }
1385
f88ba78d
SS
1386 /*
1387 * Configuration and alternate setting changes must be done in
1388 * process context, not interrupt context (or so documenation
1389 * for usb_set_interface() and usb_set_configuration() claim).
1390 */
1391 if (xhci_endpoint_init(xhci, xhci->devs[udev->slot_id],
319c3ea4 1392 udev, ep, GFP_NOIO) < 0) {
f94e0186
SS
1393 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1394 __func__, ep->desc.bEndpointAddress);
f94e0186
SS
1395 return -ENOMEM;
1396 }
1397
d115b048
JY
1398 ctrl_ctx->add_flags |= added_ctxs;
1399 new_add_flags = ctrl_ctx->add_flags;
f94e0186
SS
1400
1401 /* If xhci_endpoint_disable() was called for this endpoint, but the
1402 * xHC hasn't been notified yet through the check_bandwidth() call,
1403 * this re-adds a new state for the endpoint from the new endpoint
1404 * descriptors. We must drop and re-add this endpoint, so we leave the
1405 * drop flags alone.
1406 */
d115b048 1407 new_drop_flags = ctrl_ctx->drop_flags;
f94e0186 1408
d115b048 1409 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
f94e0186 1410 /* Update the last valid endpoint context, if we just added one past */
d115b048
JY
1411 if ((slot_ctx->dev_info & LAST_CTX_MASK) < LAST_CTX(last_ctx)) {
1412 slot_ctx->dev_info &= ~LAST_CTX_MASK;
1413 slot_ctx->dev_info |= LAST_CTX(last_ctx);
f94e0186 1414 }
d115b048 1415 new_slot_info = slot_ctx->dev_info;
f94e0186 1416
a1587d97
SS
1417 /* Store the usb_device pointer for later use */
1418 ep->hcpriv = udev;
1419
f94e0186
SS
1420 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1421 (unsigned int) ep->desc.bEndpointAddress,
1422 udev->slot_id,
1423 (unsigned int) new_drop_flags,
1424 (unsigned int) new_add_flags,
1425 (unsigned int) new_slot_info);
1426 return 0;
1427}
1428
d115b048 1429static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
f94e0186 1430{
d115b048 1431 struct xhci_input_control_ctx *ctrl_ctx;
f94e0186 1432 struct xhci_ep_ctx *ep_ctx;
d115b048 1433 struct xhci_slot_ctx *slot_ctx;
f94e0186
SS
1434 int i;
1435
1436 /* When a device's add flag and drop flag are zero, any subsequent
1437 * configure endpoint command will leave that endpoint's state
1438 * untouched. Make sure we don't leave any old state in the input
1439 * endpoint contexts.
1440 */
d115b048
JY
1441 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1442 ctrl_ctx->drop_flags = 0;
1443 ctrl_ctx->add_flags = 0;
1444 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
1445 slot_ctx->dev_info &= ~LAST_CTX_MASK;
f94e0186 1446 /* Endpoint 0 is always valid */
d115b048 1447 slot_ctx->dev_info |= LAST_CTX(1);
f94e0186 1448 for (i = 1; i < 31; ++i) {
d115b048 1449 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
f94e0186
SS
1450 ep_ctx->ep_info = 0;
1451 ep_ctx->ep_info2 = 0;
8e595a5d 1452 ep_ctx->deq = 0;
f94e0186
SS
1453 ep_ctx->tx_info = 0;
1454 }
1455}
1456
f2217e8e 1457static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
913a8a34 1458 struct usb_device *udev, int *cmd_status)
f2217e8e
SS
1459{
1460 int ret;
1461
913a8a34 1462 switch (*cmd_status) {
f2217e8e
SS
1463 case COMP_ENOMEM:
1464 dev_warn(&udev->dev, "Not enough host controller resources "
1465 "for new device state.\n");
1466 ret = -ENOMEM;
1467 /* FIXME: can we allocate more resources for the HC? */
1468 break;
1469 case COMP_BW_ERR:
1470 dev_warn(&udev->dev, "Not enough bandwidth "
1471 "for new device state.\n");
1472 ret = -ENOSPC;
1473 /* FIXME: can we go back to the old state? */
1474 break;
1475 case COMP_TRB_ERR:
1476 /* the HCD set up something wrong */
1477 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1478 "add flag = 1, "
1479 "and endpoint is not disabled.\n");
1480 ret = -EINVAL;
1481 break;
1482 case COMP_SUCCESS:
1483 dev_dbg(&udev->dev, "Successful Endpoint Configure command\n");
1484 ret = 0;
1485 break;
1486 default:
1487 xhci_err(xhci, "ERROR: unexpected command completion "
913a8a34 1488 "code 0x%x.\n", *cmd_status);
f2217e8e
SS
1489 ret = -EINVAL;
1490 break;
1491 }
1492 return ret;
1493}
1494
1495static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
913a8a34 1496 struct usb_device *udev, int *cmd_status)
f2217e8e
SS
1497{
1498 int ret;
913a8a34 1499 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
f2217e8e 1500
913a8a34 1501 switch (*cmd_status) {
f2217e8e
SS
1502 case COMP_EINVAL:
1503 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1504 "context command.\n");
1505 ret = -EINVAL;
1506 break;
1507 case COMP_EBADSLT:
1508 dev_warn(&udev->dev, "WARN: slot not enabled for"
1509 "evaluate context command.\n");
1510 case COMP_CTX_STATE:
1511 dev_warn(&udev->dev, "WARN: invalid context state for "
1512 "evaluate context command.\n");
1513 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1514 ret = -EINVAL;
1515 break;
1516 case COMP_SUCCESS:
1517 dev_dbg(&udev->dev, "Successful evaluate context command\n");
1518 ret = 0;
1519 break;
1520 default:
1521 xhci_err(xhci, "ERROR: unexpected command completion "
913a8a34 1522 "code 0x%x.\n", *cmd_status);
f2217e8e
SS
1523 ret = -EINVAL;
1524 break;
1525 }
1526 return ret;
1527}
1528
1529/* Issue a configure endpoint command or evaluate context command
1530 * and wait for it to finish.
1531 */
1532static int xhci_configure_endpoint(struct xhci_hcd *xhci,
913a8a34
SS
1533 struct usb_device *udev,
1534 struct xhci_command *command,
1535 bool ctx_change, bool must_succeed)
f2217e8e
SS
1536{
1537 int ret;
1538 int timeleft;
1539 unsigned long flags;
913a8a34
SS
1540 struct xhci_container_ctx *in_ctx;
1541 struct completion *cmd_completion;
1542 int *cmd_status;
1543 struct xhci_virt_device *virt_dev;
f2217e8e
SS
1544
1545 spin_lock_irqsave(&xhci->lock, flags);
913a8a34
SS
1546 virt_dev = xhci->devs[udev->slot_id];
1547 if (command) {
1548 in_ctx = command->in_ctx;
1549 cmd_completion = command->completion;
1550 cmd_status = &command->status;
1551 command->command_trb = xhci->cmd_ring->enqueue;
1552 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
1553 } else {
1554 in_ctx = virt_dev->in_ctx;
1555 cmd_completion = &virt_dev->cmd_completion;
1556 cmd_status = &virt_dev->cmd_status;
1557 }
1d68064a 1558 init_completion(cmd_completion);
913a8a34 1559
f2217e8e 1560 if (!ctx_change)
913a8a34
SS
1561 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
1562 udev->slot_id, must_succeed);
f2217e8e 1563 else
913a8a34 1564 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
f2217e8e
SS
1565 udev->slot_id);
1566 if (ret < 0) {
c01591bd
SS
1567 if (command)
1568 list_del(&command->cmd_list);
f2217e8e
SS
1569 spin_unlock_irqrestore(&xhci->lock, flags);
1570 xhci_dbg(xhci, "FIXME allocate a new ring segment\n");
1571 return -ENOMEM;
1572 }
1573 xhci_ring_cmd_db(xhci);
1574 spin_unlock_irqrestore(&xhci->lock, flags);
1575
1576 /* Wait for the configure endpoint command to complete */
1577 timeleft = wait_for_completion_interruptible_timeout(
913a8a34 1578 cmd_completion,
f2217e8e
SS
1579 USB_CTRL_SET_TIMEOUT);
1580 if (timeleft <= 0) {
1581 xhci_warn(xhci, "%s while waiting for %s command\n",
1582 timeleft == 0 ? "Timeout" : "Signal",
1583 ctx_change == 0 ?
1584 "configure endpoint" :
1585 "evaluate context");
1586 /* FIXME cancel the configure endpoint command */
1587 return -ETIME;
1588 }
1589
1590 if (!ctx_change)
913a8a34
SS
1591 return xhci_configure_endpoint_result(xhci, udev, cmd_status);
1592 return xhci_evaluate_context_result(xhci, udev, cmd_status);
f2217e8e
SS
1593}
1594
f88ba78d
SS
1595/* Called after one or more calls to xhci_add_endpoint() or
1596 * xhci_drop_endpoint(). If this call fails, the USB core is expected
1597 * to call xhci_reset_bandwidth().
1598 *
1599 * Since we are in the middle of changing either configuration or
1600 * installing a new alt setting, the USB core won't allow URBs to be
1601 * enqueued for any endpoint on the old config or interface. Nothing
1602 * else should be touching the xhci->devs[slot_id] structure, so we
1603 * don't need to take the xhci->lock for manipulating that.
1604 */
f94e0186
SS
1605int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
1606{
1607 int i;
1608 int ret = 0;
f94e0186
SS
1609 struct xhci_hcd *xhci;
1610 struct xhci_virt_device *virt_dev;
d115b048
JY
1611 struct xhci_input_control_ctx *ctrl_ctx;
1612 struct xhci_slot_ctx *slot_ctx;
f94e0186 1613
64927730 1614 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
f94e0186
SS
1615 if (ret <= 0)
1616 return ret;
1617 xhci = hcd_to_xhci(hcd);
1618
700e2052 1619 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
f94e0186
SS
1620 virt_dev = xhci->devs[udev->slot_id];
1621
1622 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
d115b048
JY
1623 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1624 ctrl_ctx->add_flags |= SLOT_FLAG;
1625 ctrl_ctx->add_flags &= ~EP0_FLAG;
1626 ctrl_ctx->drop_flags &= ~SLOT_FLAG;
1627 ctrl_ctx->drop_flags &= ~EP0_FLAG;
f94e0186 1628 xhci_dbg(xhci, "New Input Control Context:\n");
d115b048
JY
1629 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
1630 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
1631 LAST_CTX_TO_EP_NUM(slot_ctx->dev_info));
f94e0186 1632
913a8a34
SS
1633 ret = xhci_configure_endpoint(xhci, udev, NULL,
1634 false, false);
f94e0186
SS
1635 if (ret) {
1636 /* Callee should call reset_bandwidth() */
f94e0186
SS
1637 return ret;
1638 }
1639
1640 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
d115b048
JY
1641 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
1642 LAST_CTX_TO_EP_NUM(slot_ctx->dev_info));
f94e0186 1643
d115b048 1644 xhci_zero_in_ctx(xhci, virt_dev);
74f9fe21 1645 /* Install new rings and free or cache any old rings */
f94e0186 1646 for (i = 1; i < 31; ++i) {
74f9fe21
SS
1647 if (!virt_dev->eps[i].new_ring)
1648 continue;
1649 /* Only cache or free the old ring if it exists.
1650 * It may not if this is the first add of an endpoint.
1651 */
1652 if (virt_dev->eps[i].ring) {
412566bd 1653 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
f94e0186 1654 }
74f9fe21
SS
1655 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
1656 virt_dev->eps[i].new_ring = NULL;
f94e0186
SS
1657 }
1658
f94e0186
SS
1659 return ret;
1660}
1661
1662void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
1663{
f94e0186
SS
1664 struct xhci_hcd *xhci;
1665 struct xhci_virt_device *virt_dev;
1666 int i, ret;
1667
64927730 1668 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
f94e0186
SS
1669 if (ret <= 0)
1670 return;
1671 xhci = hcd_to_xhci(hcd);
1672
700e2052 1673 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
f94e0186
SS
1674 virt_dev = xhci->devs[udev->slot_id];
1675 /* Free any rings allocated for added endpoints */
1676 for (i = 0; i < 31; ++i) {
63a0d9ab
SS
1677 if (virt_dev->eps[i].new_ring) {
1678 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
1679 virt_dev->eps[i].new_ring = NULL;
f94e0186
SS
1680 }
1681 }
d115b048 1682 xhci_zero_in_ctx(xhci, virt_dev);
f94e0186
SS
1683}
1684
5270b951 1685static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
913a8a34
SS
1686 struct xhci_container_ctx *in_ctx,
1687 struct xhci_container_ctx *out_ctx,
1688 u32 add_flags, u32 drop_flags)
5270b951
SS
1689{
1690 struct xhci_input_control_ctx *ctrl_ctx;
913a8a34 1691 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
5270b951
SS
1692 ctrl_ctx->add_flags = add_flags;
1693 ctrl_ctx->drop_flags = drop_flags;
913a8a34 1694 xhci_slot_copy(xhci, in_ctx, out_ctx);
5270b951
SS
1695 ctrl_ctx->add_flags |= SLOT_FLAG;
1696
913a8a34
SS
1697 xhci_dbg(xhci, "Input Context:\n");
1698 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
5270b951
SS
1699}
1700
ac9d8fe7
SS
1701void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
1702 unsigned int slot_id, unsigned int ep_index,
1703 struct xhci_dequeue_state *deq_state)
1704{
1705 struct xhci_container_ctx *in_ctx;
ac9d8fe7
SS
1706 struct xhci_ep_ctx *ep_ctx;
1707 u32 added_ctxs;
1708 dma_addr_t addr;
1709
913a8a34
SS
1710 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1711 xhci->devs[slot_id]->out_ctx, ep_index);
ac9d8fe7
SS
1712 in_ctx = xhci->devs[slot_id]->in_ctx;
1713 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
1714 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
1715 deq_state->new_deq_ptr);
1716 if (addr == 0) {
1717 xhci_warn(xhci, "WARN Cannot submit config ep after "
1718 "reset ep command\n");
1719 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
1720 deq_state->new_deq_seg,
1721 deq_state->new_deq_ptr);
1722 return;
1723 }
1724 ep_ctx->deq = addr | deq_state->new_cycle_state;
1725
ac9d8fe7 1726 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
913a8a34
SS
1727 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
1728 xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs);
ac9d8fe7
SS
1729}
1730
82d1009f 1731void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
63a0d9ab 1732 struct usb_device *udev, unsigned int ep_index)
82d1009f
SS
1733{
1734 struct xhci_dequeue_state deq_state;
63a0d9ab 1735 struct xhci_virt_ep *ep;
82d1009f
SS
1736
1737 xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n");
63a0d9ab 1738 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
82d1009f
SS
1739 /* We need to move the HW's dequeue pointer past this TD,
1740 * or it will attempt to resend it on the next doorbell ring.
1741 */
1742 xhci_find_new_dequeue_state(xhci, udev->slot_id,
e9df17eb 1743 ep_index, ep->stopped_stream, ep->stopped_td,
ac9d8fe7 1744 &deq_state);
82d1009f 1745
ac9d8fe7
SS
1746 /* HW with the reset endpoint quirk will use the saved dequeue state to
1747 * issue a configure endpoint command later.
1748 */
1749 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
1750 xhci_dbg(xhci, "Queueing new dequeue state\n");
63a0d9ab 1751 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
e9df17eb 1752 ep_index, ep->stopped_stream, &deq_state);
ac9d8fe7
SS
1753 } else {
1754 /* Better hope no one uses the input context between now and the
1755 * reset endpoint completion!
e9df17eb
SS
1756 * XXX: No idea how this hardware will react when stream rings
1757 * are enabled.
ac9d8fe7
SS
1758 */
1759 xhci_dbg(xhci, "Setting up input context for "
1760 "configure endpoint command\n");
1761 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
1762 ep_index, &deq_state);
1763 }
82d1009f
SS
1764}
1765
a1587d97
SS
1766/* Deal with stalled endpoints. The core should have sent the control message
1767 * to clear the halt condition. However, we need to make the xHCI hardware
1768 * reset its sequence number, since a device will expect a sequence number of
1769 * zero after the halt condition is cleared.
1770 * Context: in_interrupt
1771 */
1772void xhci_endpoint_reset(struct usb_hcd *hcd,
1773 struct usb_host_endpoint *ep)
1774{
1775 struct xhci_hcd *xhci;
1776 struct usb_device *udev;
1777 unsigned int ep_index;
1778 unsigned long flags;
1779 int ret;
63a0d9ab 1780 struct xhci_virt_ep *virt_ep;
a1587d97
SS
1781
1782 xhci = hcd_to_xhci(hcd);
1783 udev = (struct usb_device *) ep->hcpriv;
1784 /* Called with a root hub endpoint (or an endpoint that wasn't added
1785 * with xhci_add_endpoint()
1786 */
1787 if (!ep->hcpriv)
1788 return;
1789 ep_index = xhci_get_endpoint_index(&ep->desc);
63a0d9ab
SS
1790 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
1791 if (!virt_ep->stopped_td) {
c92bcfa7
SS
1792 xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n",
1793 ep->desc.bEndpointAddress);
1794 return;
1795 }
82d1009f
SS
1796 if (usb_endpoint_xfer_control(&ep->desc)) {
1797 xhci_dbg(xhci, "Control endpoint stall already handled.\n");
1798 return;
1799 }
a1587d97
SS
1800
1801 xhci_dbg(xhci, "Queueing reset endpoint command\n");
1802 spin_lock_irqsave(&xhci->lock, flags);
1803 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
c92bcfa7
SS
1804 /*
1805 * Can't change the ring dequeue pointer until it's transitioned to the
1806 * stopped state, which is only upon a successful reset endpoint
1807 * command. Better hope that last command worked!
1808 */
a1587d97 1809 if (!ret) {
63a0d9ab
SS
1810 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
1811 kfree(virt_ep->stopped_td);
a1587d97
SS
1812 xhci_ring_cmd_db(xhci);
1813 }
1624ae1c
SS
1814 virt_ep->stopped_td = NULL;
1815 virt_ep->stopped_trb = NULL;
5e5cf6fc 1816 virt_ep->stopped_stream = 0;
a1587d97
SS
1817 spin_unlock_irqrestore(&xhci->lock, flags);
1818
1819 if (ret)
1820 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
1821}
1822
8df75f42
SS
1823static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
1824 struct usb_device *udev, struct usb_host_endpoint *ep,
1825 unsigned int slot_id)
1826{
1827 int ret;
1828 unsigned int ep_index;
1829 unsigned int ep_state;
1830
1831 if (!ep)
1832 return -EINVAL;
64927730 1833 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
8df75f42
SS
1834 if (ret <= 0)
1835 return -EINVAL;
842f1690 1836 if (ep->ss_ep_comp.bmAttributes == 0) {
8df75f42
SS
1837 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
1838 " descriptor for ep 0x%x does not support streams\n",
1839 ep->desc.bEndpointAddress);
1840 return -EINVAL;
1841 }
1842
1843 ep_index = xhci_get_endpoint_index(&ep->desc);
1844 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1845 if (ep_state & EP_HAS_STREAMS ||
1846 ep_state & EP_GETTING_STREAMS) {
1847 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
1848 "already has streams set up.\n",
1849 ep->desc.bEndpointAddress);
1850 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
1851 "dynamic stream context array reallocation.\n");
1852 return -EINVAL;
1853 }
1854 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
1855 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
1856 "endpoint 0x%x; URBs are pending.\n",
1857 ep->desc.bEndpointAddress);
1858 return -EINVAL;
1859 }
1860 return 0;
1861}
1862
1863static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
1864 unsigned int *num_streams, unsigned int *num_stream_ctxs)
1865{
1866 unsigned int max_streams;
1867
1868 /* The stream context array size must be a power of two */
1869 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
1870 /*
1871 * Find out how many primary stream array entries the host controller
1872 * supports. Later we may use secondary stream arrays (similar to 2nd
1873 * level page entries), but that's an optional feature for xHCI host
1874 * controllers. xHCs must support at least 4 stream IDs.
1875 */
1876 max_streams = HCC_MAX_PSA(xhci->hcc_params);
1877 if (*num_stream_ctxs > max_streams) {
1878 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
1879 max_streams);
1880 *num_stream_ctxs = max_streams;
1881 *num_streams = max_streams;
1882 }
1883}
1884
1885/* Returns an error code if one of the endpoint already has streams.
1886 * This does not change any data structures, it only checks and gathers
1887 * information.
1888 */
1889static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
1890 struct usb_device *udev,
1891 struct usb_host_endpoint **eps, unsigned int num_eps,
1892 unsigned int *num_streams, u32 *changed_ep_bitmask)
1893{
8df75f42
SS
1894 unsigned int max_streams;
1895 unsigned int endpoint_flag;
1896 int i;
1897 int ret;
1898
1899 for (i = 0; i < num_eps; i++) {
1900 ret = xhci_check_streams_endpoint(xhci, udev,
1901 eps[i], udev->slot_id);
1902 if (ret < 0)
1903 return ret;
1904
842f1690
AS
1905 max_streams = USB_SS_MAX_STREAMS(
1906 eps[i]->ss_ep_comp.bmAttributes);
8df75f42
SS
1907 if (max_streams < (*num_streams - 1)) {
1908 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
1909 eps[i]->desc.bEndpointAddress,
1910 max_streams);
1911 *num_streams = max_streams+1;
1912 }
1913
1914 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
1915 if (*changed_ep_bitmask & endpoint_flag)
1916 return -EINVAL;
1917 *changed_ep_bitmask |= endpoint_flag;
1918 }
1919 return 0;
1920}
1921
1922static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
1923 struct usb_device *udev,
1924 struct usb_host_endpoint **eps, unsigned int num_eps)
1925{
1926 u32 changed_ep_bitmask = 0;
1927 unsigned int slot_id;
1928 unsigned int ep_index;
1929 unsigned int ep_state;
1930 int i;
1931
1932 slot_id = udev->slot_id;
1933 if (!xhci->devs[slot_id])
1934 return 0;
1935
1936 for (i = 0; i < num_eps; i++) {
1937 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
1938 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1939 /* Are streams already being freed for the endpoint? */
1940 if (ep_state & EP_GETTING_NO_STREAMS) {
1941 xhci_warn(xhci, "WARN Can't disable streams for "
1942 "endpoint 0x%x\n, "
1943 "streams are being disabled already.",
1944 eps[i]->desc.bEndpointAddress);
1945 return 0;
1946 }
1947 /* Are there actually any streams to free? */
1948 if (!(ep_state & EP_HAS_STREAMS) &&
1949 !(ep_state & EP_GETTING_STREAMS)) {
1950 xhci_warn(xhci, "WARN Can't disable streams for "
1951 "endpoint 0x%x\n, "
1952 "streams are already disabled!",
1953 eps[i]->desc.bEndpointAddress);
1954 xhci_warn(xhci, "WARN xhci_free_streams() called "
1955 "with non-streams endpoint\n");
1956 return 0;
1957 }
1958 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
1959 }
1960 return changed_ep_bitmask;
1961}
1962
1963/*
1964 * The USB device drivers use this function (though the HCD interface in USB
1965 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
1966 * coordinate mass storage command queueing across multiple endpoints (basically
1967 * a stream ID == a task ID).
1968 *
1969 * Setting up streams involves allocating the same size stream context array
1970 * for each endpoint and issuing a configure endpoint command for all endpoints.
1971 *
1972 * Don't allow the call to succeed if one endpoint only supports one stream
1973 * (which means it doesn't support streams at all).
1974 *
1975 * Drivers may get less stream IDs than they asked for, if the host controller
1976 * hardware or endpoints claim they can't support the number of requested
1977 * stream IDs.
1978 */
1979int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
1980 struct usb_host_endpoint **eps, unsigned int num_eps,
1981 unsigned int num_streams, gfp_t mem_flags)
1982{
1983 int i, ret;
1984 struct xhci_hcd *xhci;
1985 struct xhci_virt_device *vdev;
1986 struct xhci_command *config_cmd;
1987 unsigned int ep_index;
1988 unsigned int num_stream_ctxs;
1989 unsigned long flags;
1990 u32 changed_ep_bitmask = 0;
1991
1992 if (!eps)
1993 return -EINVAL;
1994
1995 /* Add one to the number of streams requested to account for
1996 * stream 0 that is reserved for xHCI usage.
1997 */
1998 num_streams += 1;
1999 xhci = hcd_to_xhci(hcd);
2000 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
2001 num_streams);
2002
2003 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
2004 if (!config_cmd) {
2005 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
2006 return -ENOMEM;
2007 }
2008
2009 /* Check to make sure all endpoints are not already configured for
2010 * streams. While we're at it, find the maximum number of streams that
2011 * all the endpoints will support and check for duplicate endpoints.
2012 */
2013 spin_lock_irqsave(&xhci->lock, flags);
2014 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
2015 num_eps, &num_streams, &changed_ep_bitmask);
2016 if (ret < 0) {
2017 xhci_free_command(xhci, config_cmd);
2018 spin_unlock_irqrestore(&xhci->lock, flags);
2019 return ret;
2020 }
2021 if (num_streams <= 1) {
2022 xhci_warn(xhci, "WARN: endpoints can't handle "
2023 "more than one stream.\n");
2024 xhci_free_command(xhci, config_cmd);
2025 spin_unlock_irqrestore(&xhci->lock, flags);
2026 return -EINVAL;
2027 }
2028 vdev = xhci->devs[udev->slot_id];
2029 /* Mark each endpoint as being in transistion, so
2030 * xhci_urb_enqueue() will reject all URBs.
2031 */
2032 for (i = 0; i < num_eps; i++) {
2033 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2034 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
2035 }
2036 spin_unlock_irqrestore(&xhci->lock, flags);
2037
2038 /* Setup internal data structures and allocate HW data structures for
2039 * streams (but don't install the HW structures in the input context
2040 * until we're sure all memory allocation succeeded).
2041 */
2042 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
2043 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
2044 num_stream_ctxs, num_streams);
2045
2046 for (i = 0; i < num_eps; i++) {
2047 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2048 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
2049 num_stream_ctxs,
2050 num_streams, mem_flags);
2051 if (!vdev->eps[ep_index].stream_info)
2052 goto cleanup;
2053 /* Set maxPstreams in endpoint context and update deq ptr to
2054 * point to stream context array. FIXME
2055 */
2056 }
2057
2058 /* Set up the input context for a configure endpoint command. */
2059 for (i = 0; i < num_eps; i++) {
2060 struct xhci_ep_ctx *ep_ctx;
2061
2062 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2063 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
2064
2065 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
2066 vdev->out_ctx, ep_index);
2067 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
2068 vdev->eps[ep_index].stream_info);
2069 }
2070 /* Tell the HW to drop its old copy of the endpoint context info
2071 * and add the updated copy from the input context.
2072 */
2073 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
2074 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
2075
2076 /* Issue and wait for the configure endpoint command */
2077 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
2078 false, false);
2079
2080 /* xHC rejected the configure endpoint command for some reason, so we
2081 * leave the old ring intact and free our internal streams data
2082 * structure.
2083 */
2084 if (ret < 0)
2085 goto cleanup;
2086
2087 spin_lock_irqsave(&xhci->lock, flags);
2088 for (i = 0; i < num_eps; i++) {
2089 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2090 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
2091 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
2092 udev->slot_id, ep_index);
2093 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
2094 }
2095 xhci_free_command(xhci, config_cmd);
2096 spin_unlock_irqrestore(&xhci->lock, flags);
2097
2098 /* Subtract 1 for stream 0, which drivers can't use */
2099 return num_streams - 1;
2100
2101cleanup:
2102 /* If it didn't work, free the streams! */
2103 for (i = 0; i < num_eps; i++) {
2104 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2105 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
8a007748 2106 vdev->eps[ep_index].stream_info = NULL;
8df75f42
SS
2107 /* FIXME Unset maxPstreams in endpoint context and
2108 * update deq ptr to point to normal string ring.
2109 */
2110 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
2111 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
2112 xhci_endpoint_zero(xhci, vdev, eps[i]);
2113 }
2114 xhci_free_command(xhci, config_cmd);
2115 return -ENOMEM;
2116}
2117
2118/* Transition the endpoint from using streams to being a "normal" endpoint
2119 * without streams.
2120 *
2121 * Modify the endpoint context state, submit a configure endpoint command,
2122 * and free all endpoint rings for streams if that completes successfully.
2123 */
2124int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
2125 struct usb_host_endpoint **eps, unsigned int num_eps,
2126 gfp_t mem_flags)
2127{
2128 int i, ret;
2129 struct xhci_hcd *xhci;
2130 struct xhci_virt_device *vdev;
2131 struct xhci_command *command;
2132 unsigned int ep_index;
2133 unsigned long flags;
2134 u32 changed_ep_bitmask;
2135
2136 xhci = hcd_to_xhci(hcd);
2137 vdev = xhci->devs[udev->slot_id];
2138
2139 /* Set up a configure endpoint command to remove the streams rings */
2140 spin_lock_irqsave(&xhci->lock, flags);
2141 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
2142 udev, eps, num_eps);
2143 if (changed_ep_bitmask == 0) {
2144 spin_unlock_irqrestore(&xhci->lock, flags);
2145 return -EINVAL;
2146 }
2147
2148 /* Use the xhci_command structure from the first endpoint. We may have
2149 * allocated too many, but the driver may call xhci_free_streams() for
2150 * each endpoint it grouped into one call to xhci_alloc_streams().
2151 */
2152 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
2153 command = vdev->eps[ep_index].stream_info->free_streams_command;
2154 for (i = 0; i < num_eps; i++) {
2155 struct xhci_ep_ctx *ep_ctx;
2156
2157 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2158 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
2159 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
2160 EP_GETTING_NO_STREAMS;
2161
2162 xhci_endpoint_copy(xhci, command->in_ctx,
2163 vdev->out_ctx, ep_index);
2164 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
2165 &vdev->eps[ep_index]);
2166 }
2167 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
2168 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
2169 spin_unlock_irqrestore(&xhci->lock, flags);
2170
2171 /* Issue and wait for the configure endpoint command,
2172 * which must succeed.
2173 */
2174 ret = xhci_configure_endpoint(xhci, udev, command,
2175 false, true);
2176
2177 /* xHC rejected the configure endpoint command for some reason, so we
2178 * leave the streams rings intact.
2179 */
2180 if (ret < 0)
2181 return ret;
2182
2183 spin_lock_irqsave(&xhci->lock, flags);
2184 for (i = 0; i < num_eps; i++) {
2185 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
2186 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
8a007748 2187 vdev->eps[ep_index].stream_info = NULL;
8df75f42
SS
2188 /* FIXME Unset maxPstreams in endpoint context and
2189 * update deq ptr to point to normal string ring.
2190 */
2191 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
2192 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
2193 }
2194 spin_unlock_irqrestore(&xhci->lock, flags);
2195
2196 return 0;
2197}
2198
2a8f82c4
SS
2199/*
2200 * This submits a Reset Device Command, which will set the device state to 0,
2201 * set the device address to 0, and disable all the endpoints except the default
2202 * control endpoint. The USB core should come back and call
2203 * xhci_address_device(), and then re-set up the configuration. If this is
2204 * called because of a usb_reset_and_verify_device(), then the old alternate
2205 * settings will be re-installed through the normal bandwidth allocation
2206 * functions.
2207 *
2208 * Wait for the Reset Device command to finish. Remove all structures
2209 * associated with the endpoints that were disabled. Clear the input device
2210 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
f0615c45
AX
2211 *
2212 * If the virt_dev to be reset does not exist or does not match the udev,
2213 * it means the device is lost, possibly due to the xHC restore error and
2214 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
2215 * re-allocate the device.
2a8f82c4 2216 */
f0615c45 2217int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
2a8f82c4
SS
2218{
2219 int ret, i;
2220 unsigned long flags;
2221 struct xhci_hcd *xhci;
2222 unsigned int slot_id;
2223 struct xhci_virt_device *virt_dev;
2224 struct xhci_command *reset_device_cmd;
2225 int timeleft;
2226 int last_freed_endpoint;
2227
f0615c45 2228 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
2a8f82c4
SS
2229 if (ret <= 0)
2230 return ret;
2231 xhci = hcd_to_xhci(hcd);
2232 slot_id = udev->slot_id;
2233 virt_dev = xhci->devs[slot_id];
f0615c45
AX
2234 if (!virt_dev) {
2235 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
2236 "not exist. Re-allocate the device\n", slot_id);
2237 ret = xhci_alloc_dev(hcd, udev);
2238 if (ret == 1)
2239 return 0;
2240 else
2241 return -EINVAL;
2242 }
2243
2244 if (virt_dev->udev != udev) {
2245 /* If the virt_dev and the udev does not match, this virt_dev
2246 * may belong to another udev.
2247 * Re-allocate the device.
2248 */
2249 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
2250 "not match the udev. Re-allocate the device\n",
2251 slot_id);
2252 ret = xhci_alloc_dev(hcd, udev);
2253 if (ret == 1)
2254 return 0;
2255 else
2256 return -EINVAL;
2257 }
2a8f82c4
SS
2258
2259 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
2260 /* Allocate the command structure that holds the struct completion.
2261 * Assume we're in process context, since the normal device reset
2262 * process has to wait for the device anyway. Storage devices are
2263 * reset as part of error handling, so use GFP_NOIO instead of
2264 * GFP_KERNEL.
2265 */
2266 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
2267 if (!reset_device_cmd) {
2268 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
2269 return -ENOMEM;
2270 }
2271
2272 /* Attempt to submit the Reset Device command to the command ring */
2273 spin_lock_irqsave(&xhci->lock, flags);
2274 reset_device_cmd->command_trb = xhci->cmd_ring->enqueue;
2275 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
2276 ret = xhci_queue_reset_device(xhci, slot_id);
2277 if (ret) {
2278 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
2279 list_del(&reset_device_cmd->cmd_list);
2280 spin_unlock_irqrestore(&xhci->lock, flags);
2281 goto command_cleanup;
2282 }
2283 xhci_ring_cmd_db(xhci);
2284 spin_unlock_irqrestore(&xhci->lock, flags);
2285
2286 /* Wait for the Reset Device command to finish */
2287 timeleft = wait_for_completion_interruptible_timeout(
2288 reset_device_cmd->completion,
2289 USB_CTRL_SET_TIMEOUT);
2290 if (timeleft <= 0) {
2291 xhci_warn(xhci, "%s while waiting for reset device command\n",
2292 timeleft == 0 ? "Timeout" : "Signal");
2293 spin_lock_irqsave(&xhci->lock, flags);
2294 /* The timeout might have raced with the event ring handler, so
2295 * only delete from the list if the item isn't poisoned.
2296 */
2297 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
2298 list_del(&reset_device_cmd->cmd_list);
2299 spin_unlock_irqrestore(&xhci->lock, flags);
2300 ret = -ETIME;
2301 goto command_cleanup;
2302 }
2303
2304 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
2305 * unless we tried to reset a slot ID that wasn't enabled,
2306 * or the device wasn't in the addressed or configured state.
2307 */
2308 ret = reset_device_cmd->status;
2309 switch (ret) {
2310 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
2311 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
2312 xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n",
2313 slot_id,
2314 xhci_get_slot_state(xhci, virt_dev->out_ctx));
2315 xhci_info(xhci, "Not freeing device rings.\n");
2316 /* Don't treat this as an error. May change my mind later. */
2317 ret = 0;
2318 goto command_cleanup;
2319 case COMP_SUCCESS:
2320 xhci_dbg(xhci, "Successful reset device command.\n");
2321 break;
2322 default:
2323 if (xhci_is_vendor_info_code(xhci, ret))
2324 break;
2325 xhci_warn(xhci, "Unknown completion code %u for "
2326 "reset device command.\n", ret);
2327 ret = -EINVAL;
2328 goto command_cleanup;
2329 }
2330
2331 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
2332 last_freed_endpoint = 1;
2333 for (i = 1; i < 31; ++i) {
2334 if (!virt_dev->eps[i].ring)
2335 continue;
2336 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2337 last_freed_endpoint = i;
2338 }
2339 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
2340 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
2341 ret = 0;
2342
2343command_cleanup:
2344 xhci_free_command(xhci, reset_device_cmd);
2345 return ret;
2346}
2347
3ffbba95
SS
2348/*
2349 * At this point, the struct usb_device is about to go away, the device has
2350 * disconnected, and all traffic has been stopped and the endpoints have been
2351 * disabled. Free any HC data structures associated with that device.
2352 */
2353void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
2354{
2355 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
6f5165cf 2356 struct xhci_virt_device *virt_dev;
3ffbba95 2357 unsigned long flags;
c526d0d4 2358 u32 state;
64927730 2359 int i, ret;
3ffbba95 2360
64927730
AX
2361 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
2362 if (ret <= 0)
3ffbba95 2363 return;
64927730 2364
6f5165cf 2365 virt_dev = xhci->devs[udev->slot_id];
6f5165cf
SS
2366
2367 /* Stop any wayward timer functions (which may grab the lock) */
2368 for (i = 0; i < 31; ++i) {
2369 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
2370 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
2371 }
3ffbba95
SS
2372
2373 spin_lock_irqsave(&xhci->lock, flags);
c526d0d4
SS
2374 /* Don't disable the slot if the host controller is dead. */
2375 state = xhci_readl(xhci, &xhci->op_regs->status);
6f5165cf 2376 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING)) {
c526d0d4
SS
2377 xhci_free_virt_device(xhci, udev->slot_id);
2378 spin_unlock_irqrestore(&xhci->lock, flags);
2379 return;
2380 }
2381
23e3be11 2382 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
3ffbba95
SS
2383 spin_unlock_irqrestore(&xhci->lock, flags);
2384 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
2385 return;
2386 }
23e3be11 2387 xhci_ring_cmd_db(xhci);
3ffbba95
SS
2388 spin_unlock_irqrestore(&xhci->lock, flags);
2389 /*
2390 * Event command completion handler will free any data structures
f88ba78d 2391 * associated with the slot. XXX Can free sleep?
3ffbba95
SS
2392 */
2393}
2394
2395/*
2396 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
2397 * timed out, or allocating memory failed. Returns 1 on success.
2398 */
2399int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
2400{
2401 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
2402 unsigned long flags;
2403 int timeleft;
2404 int ret;
2405
2406 spin_lock_irqsave(&xhci->lock, flags);
23e3be11 2407 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
3ffbba95
SS
2408 if (ret) {
2409 spin_unlock_irqrestore(&xhci->lock, flags);
2410 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
2411 return 0;
2412 }
23e3be11 2413 xhci_ring_cmd_db(xhci);
3ffbba95
SS
2414 spin_unlock_irqrestore(&xhci->lock, flags);
2415
2416 /* XXX: how much time for xHC slot assignment? */
2417 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
2418 USB_CTRL_SET_TIMEOUT);
2419 if (timeleft <= 0) {
2420 xhci_warn(xhci, "%s while waiting for a slot\n",
2421 timeleft == 0 ? "Timeout" : "Signal");
2422 /* FIXME cancel the enable slot request */
2423 return 0;
2424 }
2425
3ffbba95
SS
2426 if (!xhci->slot_id) {
2427 xhci_err(xhci, "Error while assigning device slot ID\n");
3ffbba95
SS
2428 return 0;
2429 }
f88ba78d 2430 /* xhci_alloc_virt_device() does not touch rings; no need to lock */
3ffbba95
SS
2431 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_KERNEL)) {
2432 /* Disable slot, if we can do it without mem alloc */
2433 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
f88ba78d 2434 spin_lock_irqsave(&xhci->lock, flags);
23e3be11
SS
2435 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
2436 xhci_ring_cmd_db(xhci);
3ffbba95
SS
2437 spin_unlock_irqrestore(&xhci->lock, flags);
2438 return 0;
2439 }
2440 udev->slot_id = xhci->slot_id;
2441 /* Is this a LS or FS device under a HS hub? */
2442 /* Hub or peripherial? */
3ffbba95
SS
2443 return 1;
2444}
2445
2446/*
2447 * Issue an Address Device command (which will issue a SetAddress request to
2448 * the device).
2449 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
2450 * we should only issue and wait on one address command at the same time.
2451 *
2452 * We add one to the device address issued by the hardware because the USB core
2453 * uses address 1 for the root hubs (even though they're not really devices).
2454 */
2455int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
2456{
2457 unsigned long flags;
2458 int timeleft;
2459 struct xhci_virt_device *virt_dev;
2460 int ret = 0;
2461 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
d115b048
JY
2462 struct xhci_slot_ctx *slot_ctx;
2463 struct xhci_input_control_ctx *ctrl_ctx;
8e595a5d 2464 u64 temp_64;
3ffbba95
SS
2465
2466 if (!udev->slot_id) {
2467 xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id);
2468 return -EINVAL;
2469 }
2470
3ffbba95
SS
2471 virt_dev = xhci->devs[udev->slot_id];
2472
f0615c45
AX
2473 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2474 /*
2475 * If this is the first Set Address since device plug-in or
2476 * virt_device realloaction after a resume with an xHCI power loss,
2477 * then set up the slot context.
2478 */
2479 if (!slot_ctx->dev_info)
3ffbba95 2480 xhci_setup_addressable_virt_dev(xhci, udev);
f0615c45 2481 /* Otherwise, update the control endpoint ring enqueue pointer. */
2d1ee590
SS
2482 else
2483 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
66e49d87 2484 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
d115b048 2485 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
3ffbba95 2486
f88ba78d 2487 spin_lock_irqsave(&xhci->lock, flags);
d115b048
JY
2488 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
2489 udev->slot_id);
3ffbba95
SS
2490 if (ret) {
2491 spin_unlock_irqrestore(&xhci->lock, flags);
2492 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
2493 return ret;
2494 }
23e3be11 2495 xhci_ring_cmd_db(xhci);
3ffbba95
SS
2496 spin_unlock_irqrestore(&xhci->lock, flags);
2497
2498 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
2499 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
2500 USB_CTRL_SET_TIMEOUT);
2501 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
2502 * the SetAddress() "recovery interval" required by USB and aborting the
2503 * command on a timeout.
2504 */
2505 if (timeleft <= 0) {
2506 xhci_warn(xhci, "%s while waiting for a slot\n",
2507 timeleft == 0 ? "Timeout" : "Signal");
2508 /* FIXME cancel the address device command */
2509 return -ETIME;
2510 }
2511
3ffbba95
SS
2512 switch (virt_dev->cmd_status) {
2513 case COMP_CTX_STATE:
2514 case COMP_EBADSLT:
2515 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
2516 udev->slot_id);
2517 ret = -EINVAL;
2518 break;
2519 case COMP_TX_ERR:
2520 dev_warn(&udev->dev, "Device not responding to set address.\n");
2521 ret = -EPROTO;
2522 break;
2523 case COMP_SUCCESS:
2524 xhci_dbg(xhci, "Successful Address Device command\n");
2525 break;
2526 default:
2527 xhci_err(xhci, "ERROR: unexpected command completion "
2528 "code 0x%x.\n", virt_dev->cmd_status);
66e49d87 2529 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
d115b048 2530 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
3ffbba95
SS
2531 ret = -EINVAL;
2532 break;
2533 }
2534 if (ret) {
3ffbba95
SS
2535 return ret;
2536 }
8e595a5d
SS
2537 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
2538 xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64);
2539 xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n",
3ffbba95 2540 udev->slot_id,
8e595a5d
SS
2541 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
2542 (unsigned long long)
2543 xhci->dcbaa->dev_context_ptrs[udev->slot_id]);
700e2052 2544 xhci_dbg(xhci, "Output Context DMA address = %#08llx\n",
d115b048 2545 (unsigned long long)virt_dev->out_ctx->dma);
3ffbba95 2546 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
d115b048 2547 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
3ffbba95 2548 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
d115b048 2549 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
3ffbba95
SS
2550 /*
2551 * USB core uses address 1 for the roothubs, so we add one to the
2552 * address given back to us by the HC.
2553 */
d115b048 2554 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
c8d4af8e
AX
2555 /* Use kernel assigned address for devices; store xHC assigned
2556 * address locally. */
2557 virt_dev->address = (slot_ctx->dev_state & DEV_ADDR_MASK) + 1;
f94e0186 2558 /* Zero the input context control for later use */
d115b048
JY
2559 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
2560 ctrl_ctx->add_flags = 0;
2561 ctrl_ctx->drop_flags = 0;
3ffbba95 2562
c8d4af8e 2563 xhci_dbg(xhci, "Internal device address = %d\n", virt_dev->address);
3ffbba95
SS
2564
2565 return 0;
2566}
2567
ac1c1b7f
SS
2568/* Once a hub descriptor is fetched for a device, we need to update the xHC's
2569 * internal data structures for the device.
2570 */
2571int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
2572 struct usb_tt *tt, gfp_t mem_flags)
2573{
2574 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
2575 struct xhci_virt_device *vdev;
2576 struct xhci_command *config_cmd;
2577 struct xhci_input_control_ctx *ctrl_ctx;
2578 struct xhci_slot_ctx *slot_ctx;
2579 unsigned long flags;
2580 unsigned think_time;
2581 int ret;
2582
2583 /* Ignore root hubs */
2584 if (!hdev->parent)
2585 return 0;
2586
2587 vdev = xhci->devs[hdev->slot_id];
2588 if (!vdev) {
2589 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
2590 return -EINVAL;
2591 }
a1d78c16 2592 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
ac1c1b7f
SS
2593 if (!config_cmd) {
2594 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
2595 return -ENOMEM;
2596 }
2597
2598 spin_lock_irqsave(&xhci->lock, flags);
2599 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
2600 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
2601 ctrl_ctx->add_flags |= SLOT_FLAG;
2602 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
2603 slot_ctx->dev_info |= DEV_HUB;
2604 if (tt->multi)
2605 slot_ctx->dev_info |= DEV_MTT;
2606 if (xhci->hci_version > 0x95) {
2607 xhci_dbg(xhci, "xHCI version %x needs hub "
2608 "TT think time and number of ports\n",
2609 (unsigned int) xhci->hci_version);
2610 slot_ctx->dev_info2 |= XHCI_MAX_PORTS(hdev->maxchild);
2611 /* Set TT think time - convert from ns to FS bit times.
2612 * 0 = 8 FS bit times, 1 = 16 FS bit times,
2613 * 2 = 24 FS bit times, 3 = 32 FS bit times.
2614 */
2615 think_time = tt->think_time;
2616 if (think_time != 0)
2617 think_time = (think_time / 666) - 1;
2618 slot_ctx->tt_info |= TT_THINK_TIME(think_time);
2619 } else {
2620 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
2621 "TT think time or number of ports\n",
2622 (unsigned int) xhci->hci_version);
2623 }
2624 slot_ctx->dev_state = 0;
2625 spin_unlock_irqrestore(&xhci->lock, flags);
2626
2627 xhci_dbg(xhci, "Set up %s for hub device.\n",
2628 (xhci->hci_version > 0x95) ?
2629 "configure endpoint" : "evaluate context");
2630 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
2631 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
2632
2633 /* Issue and wait for the configure endpoint or
2634 * evaluate context command.
2635 */
2636 if (xhci->hci_version > 0x95)
2637 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
2638 false, false);
2639 else
2640 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
2641 true, false);
2642
2643 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
2644 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
2645
2646 xhci_free_command(xhci, config_cmd);
2647 return ret;
2648}
2649
66d4eadd
SS
2650int xhci_get_frame(struct usb_hcd *hcd)
2651{
2652 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
2653 /* EHCI mods by the periodic size. Why? */
2654 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
2655}
2656
2657MODULE_DESCRIPTION(DRIVER_DESC);
2658MODULE_AUTHOR(DRIVER_AUTHOR);
2659MODULE_LICENSE("GPL");
2660
2661static int __init xhci_hcd_init(void)
2662{
2663#ifdef CONFIG_PCI
2664 int retval = 0;
2665
2666 retval = xhci_register_pci();
2667
2668 if (retval < 0) {
2669 printk(KERN_DEBUG "Problem registering PCI driver.");
2670 return retval;
2671 }
2672#endif
98441973
SS
2673 /*
2674 * Check the compiler generated sizes of structures that must be laid
2675 * out in specific ways for hardware access.
2676 */
2677 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
2678 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
2679 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
2680 /* xhci_device_control has eight fields, and also
2681 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
2682 */
98441973
SS
2683 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
2684 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
2685 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
2686 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
2687 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
2688 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
2689 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
2690 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
66d4eadd
SS
2691 return 0;
2692}
2693module_init(xhci_hcd_init);
2694
2695static void __exit xhci_hcd_cleanup(void)
2696{
2697#ifdef CONFIG_PCI
2698 xhci_unregister_pci();
2699#endif
2700}
2701module_exit(xhci_hcd_cleanup);