| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 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 |  | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 23 | #include <linux/pci.h> | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 24 | #include <linux/irq.h> | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 25 | #include <linux/log2.h> | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 26 | #include <linux/module.h> | 
| Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 27 | #include <linux/moduleparam.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 29 |  | 
|  | 30 | #include "xhci.h" | 
|  | 31 |  | 
|  | 32 | #define DRIVER_AUTHOR "Sarah Sharp" | 
|  | 33 | #define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver" | 
|  | 34 |  | 
| Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 35 | /* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */ | 
|  | 36 | static int link_quirk; | 
|  | 37 | module_param(link_quirk, int, S_IRUGO | S_IWUSR); | 
|  | 38 | MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB"); | 
|  | 39 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 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 | */ | 
| Elric Fu | b92cc66 | 2012-06-27 16:31:12 +0800 | [diff] [blame^] | 54 | int handshake(struct xhci_hcd *xhci, void __iomem *ptr, | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 55 | u32 mask, u32 done, int usec) | 
|  | 56 | { | 
|  | 57 | u32	result; | 
|  | 58 |  | 
|  | 59 | do { | 
|  | 60 | result = xhci_readl(xhci, ptr); | 
|  | 61 | if (result == ~(u32)0)		/* card removed */ | 
|  | 62 | return -ENODEV; | 
|  | 63 | result &= mask; | 
|  | 64 | if (result == done) | 
|  | 65 | return 0; | 
|  | 66 | udelay(1); | 
|  | 67 | usec--; | 
|  | 68 | } while (usec > 0); | 
|  | 69 | return -ETIMEDOUT; | 
|  | 70 | } | 
|  | 71 |  | 
|  | 72 | /* | 
| Sarah Sharp | 4f0f0ba | 2009-10-27 10:56:33 -0700 | [diff] [blame] | 73 | * Disable interrupts and begin the xHCI halting process. | 
|  | 74 | */ | 
|  | 75 | void xhci_quiesce(struct xhci_hcd *xhci) | 
|  | 76 | { | 
|  | 77 | u32 halted; | 
|  | 78 | u32 cmd; | 
|  | 79 | u32 mask; | 
|  | 80 |  | 
|  | 81 | mask = ~(XHCI_IRQS); | 
|  | 82 | halted = xhci_readl(xhci, &xhci->op_regs->status) & STS_HALT; | 
|  | 83 | if (!halted) | 
|  | 84 | mask &= ~CMD_RUN; | 
|  | 85 |  | 
|  | 86 | cmd = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 87 | cmd &= mask; | 
|  | 88 | xhci_writel(xhci, cmd, &xhci->op_regs->command); | 
|  | 89 | } | 
|  | 90 |  | 
|  | 91 | /* | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 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 | 
| Andiry Xu | bdfca50 | 2011-01-06 15:43:39 +0800 | [diff] [blame] | 96 | * should halt within 16 ms of the run/stop bit being cleared. | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 97 | * Read HC Halted bit in the status register to see when the HC is finished. | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 98 | */ | 
|  | 99 | int xhci_halt(struct xhci_hcd *xhci) | 
|  | 100 | { | 
| Sarah Sharp | c6cc27c | 2011-03-11 10:20:58 -0800 | [diff] [blame] | 101 | int ret; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 102 | xhci_dbg(xhci, "// Halt the HC\n"); | 
| Sarah Sharp | 4f0f0ba | 2009-10-27 10:56:33 -0700 | [diff] [blame] | 103 | xhci_quiesce(xhci); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 104 |  | 
| Sarah Sharp | c6cc27c | 2011-03-11 10:20:58 -0800 | [diff] [blame] | 105 | ret = handshake(xhci, &xhci->op_regs->status, | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 106 | STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC); | 
| Elric Fu | c181bc5 | 2012-06-27 16:30:57 +0800 | [diff] [blame] | 107 | if (!ret) { | 
| Sarah Sharp | c6cc27c | 2011-03-11 10:20:58 -0800 | [diff] [blame] | 108 | xhci->xhc_state |= XHCI_STATE_HALTED; | 
| Elric Fu | c181bc5 | 2012-06-27 16:30:57 +0800 | [diff] [blame] | 109 | xhci->cmd_ring_state = CMD_RING_STATE_STOPPED; | 
|  | 110 | } else | 
| Sarah Sharp | 5af98bb | 2012-03-16 12:58:20 -0700 | [diff] [blame] | 111 | xhci_warn(xhci, "Host not halted after %u microseconds.\n", | 
|  | 112 | XHCI_MAX_HALT_USEC); | 
| Sarah Sharp | c6cc27c | 2011-03-11 10:20:58 -0800 | [diff] [blame] | 113 | return ret; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 114 | } | 
|  | 115 |  | 
|  | 116 | /* | 
| Sarah Sharp | ed07453 | 2010-05-24 13:25:21 -0700 | [diff] [blame] | 117 | * Set the run bit and wait for the host to be running. | 
|  | 118 | */ | 
| Dmitry Torokhov | 8212a49 | 2011-02-08 13:55:59 -0800 | [diff] [blame] | 119 | static int xhci_start(struct xhci_hcd *xhci) | 
| Sarah Sharp | ed07453 | 2010-05-24 13:25:21 -0700 | [diff] [blame] | 120 | { | 
|  | 121 | u32 temp; | 
|  | 122 | int ret; | 
|  | 123 |  | 
|  | 124 | temp = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 125 | temp |= (CMD_RUN); | 
|  | 126 | xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n", | 
|  | 127 | temp); | 
|  | 128 | xhci_writel(xhci, temp, &xhci->op_regs->command); | 
|  | 129 |  | 
|  | 130 | /* | 
|  | 131 | * Wait for the HCHalted Status bit to be 0 to indicate the host is | 
|  | 132 | * running. | 
|  | 133 | */ | 
|  | 134 | ret = handshake(xhci, &xhci->op_regs->status, | 
|  | 135 | STS_HALT, 0, XHCI_MAX_HALT_USEC); | 
|  | 136 | if (ret == -ETIMEDOUT) | 
|  | 137 | xhci_err(xhci, "Host took too long to start, " | 
|  | 138 | "waited %u microseconds.\n", | 
|  | 139 | XHCI_MAX_HALT_USEC); | 
| Sarah Sharp | c6cc27c | 2011-03-11 10:20:58 -0800 | [diff] [blame] | 140 | if (!ret) | 
|  | 141 | xhci->xhc_state &= ~XHCI_STATE_HALTED; | 
| Sarah Sharp | ed07453 | 2010-05-24 13:25:21 -0700 | [diff] [blame] | 142 | return ret; | 
|  | 143 | } | 
|  | 144 |  | 
|  | 145 | /* | 
| Sarah Sharp | ac04e6f | 2011-03-11 08:47:33 -0800 | [diff] [blame] | 146 | * Reset a halted HC. | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 147 | * | 
|  | 148 | * This resets pipelines, timers, counters, state machines, etc. | 
|  | 149 | * Transactions will be terminated immediately, and operational registers | 
|  | 150 | * will be set to their defaults. | 
|  | 151 | */ | 
|  | 152 | int xhci_reset(struct xhci_hcd *xhci) | 
|  | 153 | { | 
|  | 154 | u32 command; | 
|  | 155 | u32 state; | 
| Andiry Xu | f370b99 | 2012-04-14 02:54:30 +0800 | [diff] [blame] | 156 | int ret, i; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 157 |  | 
|  | 158 | state = xhci_readl(xhci, &xhci->op_regs->status); | 
| Sarah Sharp | d3512f6 | 2009-07-27 12:03:50 -0700 | [diff] [blame] | 159 | if ((state & STS_HALT) == 0) { | 
|  | 160 | xhci_warn(xhci, "Host controller not halted, aborting reset.\n"); | 
|  | 161 | return 0; | 
|  | 162 | } | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 163 |  | 
|  | 164 | xhci_dbg(xhci, "// Reset the HC\n"); | 
|  | 165 | command = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 166 | command |= CMD_RESET; | 
|  | 167 | xhci_writel(xhci, command, &xhci->op_regs->command); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 168 |  | 
| Sarah Sharp | 2d62f3e | 2010-05-24 13:25:15 -0700 | [diff] [blame] | 169 | ret = handshake(xhci, &xhci->op_regs->command, | 
| Sarah Sharp | 22ceac1 | 2012-07-23 16:06:08 -0700 | [diff] [blame] | 170 | CMD_RESET, 0, 10 * 1000 * 1000); | 
| Sarah Sharp | 2d62f3e | 2010-05-24 13:25:15 -0700 | [diff] [blame] | 171 | if (ret) | 
|  | 172 | return ret; | 
|  | 173 |  | 
|  | 174 | xhci_dbg(xhci, "Wait for controller to be ready for doorbell rings\n"); | 
|  | 175 | /* | 
|  | 176 | * xHCI cannot write to any doorbells or operational registers other | 
|  | 177 | * than status until the "Controller Not Ready" flag is cleared. | 
|  | 178 | */ | 
| Sarah Sharp | 22ceac1 | 2012-07-23 16:06:08 -0700 | [diff] [blame] | 179 | ret = handshake(xhci, &xhci->op_regs->status, | 
|  | 180 | STS_CNR, 0, 10 * 1000 * 1000); | 
| Andiry Xu | f370b99 | 2012-04-14 02:54:30 +0800 | [diff] [blame] | 181 |  | 
|  | 182 | for (i = 0; i < 2; ++i) { | 
|  | 183 | xhci->bus_state[i].port_c_suspend = 0; | 
|  | 184 | xhci->bus_state[i].suspended_ports = 0; | 
|  | 185 | xhci->bus_state[i].resuming_ports = 0; | 
|  | 186 | } | 
|  | 187 |  | 
|  | 188 | return ret; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 189 | } | 
|  | 190 |  | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 191 | #ifdef CONFIG_PCI | 
|  | 192 | static int xhci_free_msi(struct xhci_hcd *xhci) | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 193 | { | 
|  | 194 | int i; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 195 |  | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 196 | if (!xhci->msix_entries) | 
|  | 197 | return -EINVAL; | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 198 |  | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 199 | for (i = 0; i < xhci->msix_count; i++) | 
|  | 200 | if (xhci->msix_entries[i].vector) | 
|  | 201 | free_irq(xhci->msix_entries[i].vector, | 
|  | 202 | xhci_to_hcd(xhci)); | 
|  | 203 | return 0; | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 204 | } | 
|  | 205 |  | 
|  | 206 | /* | 
|  | 207 | * Set up MSI | 
|  | 208 | */ | 
|  | 209 | static int xhci_setup_msi(struct xhci_hcd *xhci) | 
|  | 210 | { | 
|  | 211 | int ret; | 
|  | 212 | struct pci_dev  *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller); | 
|  | 213 |  | 
|  | 214 | ret = pci_enable_msi(pdev); | 
|  | 215 | if (ret) { | 
| Sarah Sharp | 3b9783b | 2011-12-22 15:02:13 -0800 | [diff] [blame] | 216 | xhci_dbg(xhci, "failed to allocate MSI entry\n"); | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 217 | return ret; | 
|  | 218 | } | 
|  | 219 |  | 
|  | 220 | ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq, | 
|  | 221 | 0, "xhci_hcd", xhci_to_hcd(xhci)); | 
|  | 222 | if (ret) { | 
| Sarah Sharp | 3b9783b | 2011-12-22 15:02:13 -0800 | [diff] [blame] | 223 | xhci_dbg(xhci, "disable MSI interrupt\n"); | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 224 | pci_disable_msi(pdev); | 
|  | 225 | } | 
|  | 226 |  | 
|  | 227 | return ret; | 
|  | 228 | } | 
|  | 229 |  | 
|  | 230 | /* | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 231 | * Free IRQs | 
|  | 232 | * free all IRQs request | 
|  | 233 | */ | 
|  | 234 | static void xhci_free_irq(struct xhci_hcd *xhci) | 
|  | 235 | { | 
|  | 236 | struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller); | 
|  | 237 | int ret; | 
|  | 238 |  | 
|  | 239 | /* return if using legacy interrupt */ | 
| Felipe Balbi | cd70469 | 2012-02-29 16:46:23 +0200 | [diff] [blame] | 240 | if (xhci_to_hcd(xhci)->irq > 0) | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 241 | return; | 
|  | 242 |  | 
|  | 243 | ret = xhci_free_msi(xhci); | 
|  | 244 | if (!ret) | 
|  | 245 | return; | 
| Felipe Balbi | cd70469 | 2012-02-29 16:46:23 +0200 | [diff] [blame] | 246 | if (pdev->irq > 0) | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 247 | free_irq(pdev->irq, xhci_to_hcd(xhci)); | 
|  | 248 |  | 
|  | 249 | return; | 
|  | 250 | } | 
|  | 251 |  | 
|  | 252 | /* | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 253 | * Set up MSI-X | 
|  | 254 | */ | 
|  | 255 | static int xhci_setup_msix(struct xhci_hcd *xhci) | 
|  | 256 | { | 
|  | 257 | int i, ret = 0; | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 258 | struct usb_hcd *hcd = xhci_to_hcd(xhci); | 
|  | 259 | struct pci_dev *pdev = to_pci_dev(hcd->self.controller); | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 260 |  | 
|  | 261 | /* | 
|  | 262 | * calculate number of msi-x vectors supported. | 
|  | 263 | * - HCS_MAX_INTRS: the max number of interrupts the host can handle, | 
|  | 264 | *   with max number of interrupters based on the xhci HCSPARAMS1. | 
|  | 265 | * - num_online_cpus: maximum msi-x vectors per CPUs core. | 
|  | 266 | *   Add additional 1 vector to ensure always available interrupt. | 
|  | 267 | */ | 
|  | 268 | xhci->msix_count = min(num_online_cpus() + 1, | 
|  | 269 | HCS_MAX_INTRS(xhci->hcs_params1)); | 
|  | 270 |  | 
|  | 271 | xhci->msix_entries = | 
|  | 272 | kmalloc((sizeof(struct msix_entry))*xhci->msix_count, | 
| Greg Kroah-Hartman | 8687197 | 2010-11-11 09:41:02 -0800 | [diff] [blame] | 273 | GFP_KERNEL); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 274 | if (!xhci->msix_entries) { | 
|  | 275 | xhci_err(xhci, "Failed to allocate MSI-X entries\n"); | 
|  | 276 | return -ENOMEM; | 
|  | 277 | } | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 278 |  | 
|  | 279 | for (i = 0; i < xhci->msix_count; i++) { | 
|  | 280 | xhci->msix_entries[i].entry = i; | 
|  | 281 | xhci->msix_entries[i].vector = 0; | 
|  | 282 | } | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 283 |  | 
|  | 284 | ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count); | 
|  | 285 | if (ret) { | 
| Sarah Sharp | 3b9783b | 2011-12-22 15:02:13 -0800 | [diff] [blame] | 286 | xhci_dbg(xhci, "Failed to enable MSI-X\n"); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 287 | goto free_entries; | 
|  | 288 | } | 
|  | 289 |  | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 290 | for (i = 0; i < xhci->msix_count; i++) { | 
|  | 291 | ret = request_irq(xhci->msix_entries[i].vector, | 
|  | 292 | (irq_handler_t)xhci_msi_irq, | 
|  | 293 | 0, "xhci_hcd", xhci_to_hcd(xhci)); | 
|  | 294 | if (ret) | 
|  | 295 | goto disable_msix; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 296 | } | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 297 |  | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 298 | hcd->msix_enabled = 1; | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 299 | return ret; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 300 |  | 
|  | 301 | disable_msix: | 
| Sarah Sharp | 3b9783b | 2011-12-22 15:02:13 -0800 | [diff] [blame] | 302 | xhci_dbg(xhci, "disable MSI-X interrupt\n"); | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 303 | xhci_free_irq(xhci); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 304 | pci_disable_msix(pdev); | 
|  | 305 | free_entries: | 
|  | 306 | kfree(xhci->msix_entries); | 
|  | 307 | xhci->msix_entries = NULL; | 
|  | 308 | return ret; | 
|  | 309 | } | 
|  | 310 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 311 | /* Free any IRQs and disable MSI-X */ | 
|  | 312 | static void xhci_cleanup_msix(struct xhci_hcd *xhci) | 
|  | 313 | { | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 314 | struct usb_hcd *hcd = xhci_to_hcd(xhci); | 
|  | 315 | struct pci_dev *pdev = to_pci_dev(hcd->self.controller); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 316 |  | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 317 | xhci_free_irq(xhci); | 
|  | 318 |  | 
|  | 319 | if (xhci->msix_entries) { | 
|  | 320 | pci_disable_msix(pdev); | 
|  | 321 | kfree(xhci->msix_entries); | 
|  | 322 | xhci->msix_entries = NULL; | 
|  | 323 | } else { | 
|  | 324 | pci_disable_msi(pdev); | 
|  | 325 | } | 
|  | 326 |  | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 327 | hcd->msix_enabled = 0; | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 328 | return; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 329 | } | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 330 |  | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 331 | static void xhci_msix_sync_irqs(struct xhci_hcd *xhci) | 
|  | 332 | { | 
|  | 333 | int i; | 
|  | 334 |  | 
|  | 335 | if (xhci->msix_entries) { | 
|  | 336 | for (i = 0; i < xhci->msix_count; i++) | 
|  | 337 | synchronize_irq(xhci->msix_entries[i].vector); | 
|  | 338 | } | 
|  | 339 | } | 
|  | 340 |  | 
|  | 341 | static int xhci_try_enable_msi(struct usb_hcd *hcd) | 
|  | 342 | { | 
|  | 343 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 344 | struct pci_dev  *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller); | 
|  | 345 | int ret; | 
|  | 346 |  | 
|  | 347 | /* | 
|  | 348 | * Some Fresco Logic host controllers advertise MSI, but fail to | 
|  | 349 | * generate interrupts.  Don't even try to enable MSI. | 
|  | 350 | */ | 
|  | 351 | if (xhci->quirks & XHCI_BROKEN_MSI) | 
|  | 352 | return 0; | 
|  | 353 |  | 
|  | 354 | /* unregister the legacy interrupt */ | 
|  | 355 | if (hcd->irq) | 
|  | 356 | free_irq(hcd->irq, hcd); | 
| Felipe Balbi | cd70469 | 2012-02-29 16:46:23 +0200 | [diff] [blame] | 357 | hcd->irq = 0; | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 358 |  | 
|  | 359 | ret = xhci_setup_msix(xhci); | 
|  | 360 | if (ret) | 
|  | 361 | /* fall back to msi*/ | 
|  | 362 | ret = xhci_setup_msi(xhci); | 
|  | 363 |  | 
|  | 364 | if (!ret) | 
| Felipe Balbi | cd70469 | 2012-02-29 16:46:23 +0200 | [diff] [blame] | 365 | /* hcd->irq is 0, we have MSI */ | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 366 | return 0; | 
|  | 367 |  | 
| Sarah Sharp | 68d07f6 | 2012-02-13 16:25:57 -0800 | [diff] [blame] | 368 | if (!pdev->irq) { | 
|  | 369 | xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n"); | 
|  | 370 | return -EINVAL; | 
|  | 371 | } | 
|  | 372 |  | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 373 | /* fall back to legacy interrupt*/ | 
|  | 374 | ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED, | 
|  | 375 | hcd->irq_descr, hcd); | 
|  | 376 | if (ret) { | 
|  | 377 | xhci_err(xhci, "request interrupt %d failed\n", | 
|  | 378 | pdev->irq); | 
|  | 379 | return ret; | 
|  | 380 | } | 
|  | 381 | hcd->irq = pdev->irq; | 
|  | 382 | return 0; | 
|  | 383 | } | 
|  | 384 |  | 
|  | 385 | #else | 
|  | 386 |  | 
|  | 387 | static int xhci_try_enable_msi(struct usb_hcd *hcd) | 
|  | 388 | { | 
|  | 389 | return 0; | 
|  | 390 | } | 
|  | 391 |  | 
|  | 392 | static void xhci_cleanup_msix(struct xhci_hcd *xhci) | 
|  | 393 | { | 
|  | 394 | } | 
|  | 395 |  | 
|  | 396 | static void xhci_msix_sync_irqs(struct xhci_hcd *xhci) | 
|  | 397 | { | 
|  | 398 | } | 
|  | 399 |  | 
|  | 400 | #endif | 
|  | 401 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 402 | /* | 
|  | 403 | * Initialize memory for HCD and xHC (one-time init). | 
|  | 404 | * | 
|  | 405 | * Program the PAGESIZE register, initialize the device context array, create | 
|  | 406 | * device contexts (?), set up a command ring segment (or two?), create event | 
|  | 407 | * ring (one for now). | 
|  | 408 | */ | 
|  | 409 | int xhci_init(struct usb_hcd *hcd) | 
|  | 410 | { | 
|  | 411 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 412 | int retval = 0; | 
|  | 413 |  | 
|  | 414 | xhci_dbg(xhci, "xhci_init\n"); | 
|  | 415 | spin_lock_init(&xhci->lock); | 
| Sebastian Andrzej Siewior | d782659 | 2011-09-13 16:41:10 -0700 | [diff] [blame] | 416 | if (xhci->hci_version == 0x95 && link_quirk) { | 
| Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 417 | xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n"); | 
|  | 418 | xhci->quirks |= XHCI_LINK_TRB_QUIRK; | 
|  | 419 | } else { | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 420 | xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n"); | 
| Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 421 | } | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 422 | retval = xhci_mem_init(xhci, GFP_KERNEL); | 
|  | 423 | xhci_dbg(xhci, "Finished xhci_init\n"); | 
|  | 424 |  | 
|  | 425 | return retval; | 
|  | 426 | } | 
|  | 427 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 428 | /*-------------------------------------------------------------------------*/ | 
|  | 429 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 430 |  | 
|  | 431 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING | 
| Dmitry Torokhov | 8212a49 | 2011-02-08 13:55:59 -0800 | [diff] [blame] | 432 | static void xhci_event_ring_work(unsigned long arg) | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 433 | { | 
|  | 434 | unsigned long flags; | 
|  | 435 | int temp; | 
| Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 436 | u64 temp_64; | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 437 | struct xhci_hcd *xhci = (struct xhci_hcd *) arg; | 
|  | 438 | int i, j; | 
|  | 439 |  | 
|  | 440 | xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies); | 
|  | 441 |  | 
|  | 442 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 443 | temp = xhci_readl(xhci, &xhci->op_regs->status); | 
|  | 444 | xhci_dbg(xhci, "op reg status = 0x%x\n", temp); | 
| Sarah Sharp | 7bd89b4 | 2011-07-01 13:35:40 -0700 | [diff] [blame] | 445 | if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) || | 
|  | 446 | (xhci->xhc_state & XHCI_STATE_HALTED)) { | 
| Sarah Sharp | e4ab05d | 2009-09-16 16:42:30 -0700 | [diff] [blame] | 447 | xhci_dbg(xhci, "HW died, polling stopped.\n"); | 
|  | 448 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 449 | return; | 
|  | 450 | } | 
|  | 451 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 452 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); | 
|  | 453 | xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp); | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 454 | xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask); | 
|  | 455 | xhci->error_bitmask = 0; | 
|  | 456 | xhci_dbg(xhci, "Event ring:\n"); | 
|  | 457 | xhci_debug_segment(xhci, xhci->event_ring->deq_seg); | 
|  | 458 | xhci_dbg_ring_ptrs(xhci, xhci->event_ring); | 
| Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 459 | temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); | 
|  | 460 | temp_64 &= ~ERST_PTR_MASK; | 
|  | 461 | xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64); | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 462 | xhci_dbg(xhci, "Command ring:\n"); | 
|  | 463 | xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg); | 
|  | 464 | xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring); | 
|  | 465 | xhci_dbg_cmd_ptrs(xhci); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 466 | for (i = 0; i < MAX_HC_SLOTS; ++i) { | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 467 | if (!xhci->devs[i]) | 
|  | 468 | continue; | 
|  | 469 | for (j = 0; j < 31; ++j) { | 
| Sarah Sharp | e9df17e | 2010-04-02 15:34:43 -0700 | [diff] [blame] | 470 | xhci_dbg_ep_rings(xhci, i, j, &xhci->devs[i]->eps[j]); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 471 | } | 
|  | 472 | } | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 473 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 474 |  | 
|  | 475 | if (!xhci->zombie) | 
|  | 476 | mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ); | 
|  | 477 | else | 
|  | 478 | xhci_dbg(xhci, "Quit polling the event ring.\n"); | 
|  | 479 | } | 
|  | 480 | #endif | 
|  | 481 |  | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 482 | static int xhci_run_finished(struct xhci_hcd *xhci) | 
|  | 483 | { | 
|  | 484 | if (xhci_start(xhci)) { | 
|  | 485 | xhci_halt(xhci); | 
|  | 486 | return -ENODEV; | 
|  | 487 | } | 
|  | 488 | xhci->shared_hcd->state = HC_STATE_RUNNING; | 
| Elric Fu | c181bc5 | 2012-06-27 16:30:57 +0800 | [diff] [blame] | 489 | xhci->cmd_ring_state = CMD_RING_STATE_RUNNING; | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 490 |  | 
|  | 491 | if (xhci->quirks & XHCI_NEC_HOST) | 
|  | 492 | xhci_ring_cmd_db(xhci); | 
|  | 493 |  | 
|  | 494 | xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n"); | 
|  | 495 | return 0; | 
|  | 496 | } | 
|  | 497 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 498 | /* | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 499 | * Start the HC after it was halted. | 
|  | 500 | * | 
|  | 501 | * This function is called by the USB core when the HC driver is added. | 
|  | 502 | * Its opposite is xhci_stop(). | 
|  | 503 | * | 
|  | 504 | * xhci_init() must be called once before this function can be called. | 
|  | 505 | * Reset the HC, enable device slot contexts, program DCBAAP, and | 
|  | 506 | * set command ring pointer and event ring pointer. | 
|  | 507 | * | 
|  | 508 | * Setup MSI-X vectors and enable interrupts. | 
|  | 509 | */ | 
|  | 510 | int xhci_run(struct usb_hcd *hcd) | 
|  | 511 | { | 
|  | 512 | u32 temp; | 
| Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 513 | u64 temp_64; | 
| Sebastian Andrzej Siewior | 3fd1ec5 | 2011-09-23 14:19:57 -0700 | [diff] [blame] | 514 | int ret; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 515 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 516 |  | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 517 | /* Start the xHCI host controller running only after the USB 2.0 roothub | 
|  | 518 | * is setup. | 
|  | 519 | */ | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 520 |  | 
| Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 521 | hcd->uses_new_polling = 1; | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 522 | if (!usb_hcd_is_primary_hcd(hcd)) | 
|  | 523 | return xhci_run_finished(xhci); | 
| Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 524 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 525 | xhci_dbg(xhci, "xhci_run\n"); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 526 |  | 
| Sebastian Andrzej Siewior | 3fd1ec5 | 2011-09-23 14:19:57 -0700 | [diff] [blame] | 527 | ret = xhci_try_enable_msi(hcd); | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 528 | if (ret) | 
| Sebastian Andrzej Siewior | 3fd1ec5 | 2011-09-23 14:19:57 -0700 | [diff] [blame] | 529 | return ret; | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 530 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 531 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING | 
|  | 532 | init_timer(&xhci->event_ring_timer); | 
|  | 533 | xhci->event_ring_timer.data = (unsigned long) xhci; | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 534 | xhci->event_ring_timer.function = xhci_event_ring_work; | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 535 | /* Poll the event ring */ | 
|  | 536 | xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ; | 
|  | 537 | xhci->zombie = 0; | 
|  | 538 | xhci_dbg(xhci, "Setting event ring polling timer\n"); | 
|  | 539 | add_timer(&xhci->event_ring_timer); | 
|  | 540 | #endif | 
|  | 541 |  | 
| Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 542 | xhci_dbg(xhci, "Command ring memory map follows:\n"); | 
|  | 543 | xhci_debug_ring(xhci, xhci->cmd_ring); | 
|  | 544 | xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring); | 
|  | 545 | xhci_dbg_cmd_ptrs(xhci); | 
|  | 546 |  | 
|  | 547 | xhci_dbg(xhci, "ERST memory map follows:\n"); | 
|  | 548 | xhci_dbg_erst(xhci, &xhci->erst); | 
|  | 549 | xhci_dbg(xhci, "Event ring:\n"); | 
|  | 550 | xhci_debug_ring(xhci, xhci->event_ring); | 
|  | 551 | xhci_dbg_ring_ptrs(xhci, xhci->event_ring); | 
|  | 552 | temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); | 
|  | 553 | temp_64 &= ~ERST_PTR_MASK; | 
|  | 554 | xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64); | 
|  | 555 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 556 | xhci_dbg(xhci, "// Set the interrupt modulation register\n"); | 
|  | 557 | temp = xhci_readl(xhci, &xhci->ir_set->irq_control); | 
| Sarah Sharp | a4d8830 | 2009-05-14 11:44:26 -0700 | [diff] [blame] | 558 | temp &= ~ER_IRQ_INTERVAL_MASK; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 559 | temp |= (u32) 160; | 
|  | 560 | xhci_writel(xhci, temp, &xhci->ir_set->irq_control); | 
|  | 561 |  | 
|  | 562 | /* Set the HCD state before we enable the irqs */ | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 563 | temp = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 564 | temp |= (CMD_EIE); | 
|  | 565 | xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n", | 
|  | 566 | temp); | 
|  | 567 | xhci_writel(xhci, temp, &xhci->op_regs->command); | 
|  | 568 |  | 
|  | 569 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); | 
| Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 570 | xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n", | 
|  | 571 | xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp)); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 572 | xhci_writel(xhci, ER_IRQ_ENABLE(temp), | 
|  | 573 | &xhci->ir_set->irq_pending); | 
| Dmitry Torokhov | 09ece30 | 2011-02-08 16:29:33 -0800 | [diff] [blame] | 574 | xhci_print_ir_set(xhci, 0); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 575 |  | 
| Sarah Sharp | 0238634 | 2010-05-24 13:25:28 -0700 | [diff] [blame] | 576 | if (xhci->quirks & XHCI_NEC_HOST) | 
|  | 577 | xhci_queue_vendor_command(xhci, 0, 0, 0, | 
|  | 578 | TRB_TYPE(TRB_NEC_GET_FW)); | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 579 |  | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 580 | xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n"); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 581 | return 0; | 
|  | 582 | } | 
|  | 583 |  | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 584 | static void xhci_only_stop_hcd(struct usb_hcd *hcd) | 
|  | 585 | { | 
|  | 586 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 587 |  | 
|  | 588 | spin_lock_irq(&xhci->lock); | 
|  | 589 | xhci_halt(xhci); | 
|  | 590 |  | 
|  | 591 | /* The shared_hcd is going to be deallocated shortly (the USB core only | 
|  | 592 | * calls this function when allocation fails in usb_add_hcd(), or | 
|  | 593 | * usb_remove_hcd() is called).  So we need to unset xHCI's pointer. | 
|  | 594 | */ | 
|  | 595 | xhci->shared_hcd = NULL; | 
|  | 596 | spin_unlock_irq(&xhci->lock); | 
|  | 597 | } | 
|  | 598 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 599 | /* | 
|  | 600 | * Stop xHCI driver. | 
|  | 601 | * | 
|  | 602 | * This function is called by the USB core when the HC driver is removed. | 
|  | 603 | * Its opposite is xhci_run(). | 
|  | 604 | * | 
|  | 605 | * Disable device contexts, disable IRQs, and quiesce the HC. | 
|  | 606 | * Reset the HC, finish any completed transactions, and cleanup memory. | 
|  | 607 | */ | 
|  | 608 | void xhci_stop(struct usb_hcd *hcd) | 
|  | 609 | { | 
|  | 610 | u32 temp; | 
|  | 611 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 612 |  | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 613 | if (!usb_hcd_is_primary_hcd(hcd)) { | 
|  | 614 | xhci_only_stop_hcd(xhci->shared_hcd); | 
|  | 615 | return; | 
|  | 616 | } | 
|  | 617 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 618 | spin_lock_irq(&xhci->lock); | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 619 | /* Make sure the xHC is halted for a USB3 roothub | 
|  | 620 | * (xhci_stop() could be called as part of failed init). | 
|  | 621 | */ | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 622 | xhci_halt(xhci); | 
|  | 623 | xhci_reset(xhci); | 
|  | 624 | spin_unlock_irq(&xhci->lock); | 
|  | 625 |  | 
| Zhang Rui | 40a9fb1 | 2010-12-17 13:17:04 -0800 | [diff] [blame] | 626 | xhci_cleanup_msix(xhci); | 
|  | 627 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 628 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING | 
|  | 629 | /* Tell the event ring poll function not to reschedule */ | 
|  | 630 | xhci->zombie = 1; | 
|  | 631 | del_timer_sync(&xhci->event_ring_timer); | 
|  | 632 | #endif | 
|  | 633 |  | 
| Andiry Xu | c41136b | 2011-03-22 17:08:14 +0800 | [diff] [blame] | 634 | if (xhci->quirks & XHCI_AMD_PLL_FIX) | 
|  | 635 | usb_amd_dev_put(); | 
|  | 636 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 637 | xhci_dbg(xhci, "// Disabling event ring interrupts\n"); | 
|  | 638 | temp = xhci_readl(xhci, &xhci->op_regs->status); | 
|  | 639 | xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status); | 
|  | 640 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); | 
|  | 641 | xhci_writel(xhci, ER_IRQ_DISABLE(temp), | 
|  | 642 | &xhci->ir_set->irq_pending); | 
| Dmitry Torokhov | 09ece30 | 2011-02-08 16:29:33 -0800 | [diff] [blame] | 643 | xhci_print_ir_set(xhci, 0); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 644 |  | 
|  | 645 | xhci_dbg(xhci, "cleaning up memory\n"); | 
|  | 646 | xhci_mem_cleanup(xhci); | 
|  | 647 | xhci_dbg(xhci, "xhci_stop completed - status = %x\n", | 
|  | 648 | xhci_readl(xhci, &xhci->op_regs->status)); | 
|  | 649 | } | 
|  | 650 |  | 
|  | 651 | /* | 
|  | 652 | * Shutdown HC (not bus-specific) | 
|  | 653 | * | 
|  | 654 | * This is called when the machine is rebooting or halting.  We assume that the | 
|  | 655 | * machine will be powered off, and the HC's internal state will be reset. | 
|  | 656 | * Don't bother to free memory. | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 657 | * | 
|  | 658 | * This will only ever be called with the main usb_hcd (the USB3 roothub). | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 659 | */ | 
|  | 660 | void xhci_shutdown(struct usb_hcd *hcd) | 
|  | 661 | { | 
|  | 662 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 663 |  | 
| Sarah Sharp | e95829f | 2012-07-23 18:59:30 +0300 | [diff] [blame] | 664 | if (xhci->quirks && XHCI_SPURIOUS_REBOOT) | 
|  | 665 | usb_disable_xhci_ports(to_pci_dev(hcd->self.controller)); | 
|  | 666 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 667 | spin_lock_irq(&xhci->lock); | 
|  | 668 | xhci_halt(xhci); | 
| Dong Nguyen | 43b86af | 2010-07-21 16:56:08 -0700 | [diff] [blame] | 669 | spin_unlock_irq(&xhci->lock); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 670 |  | 
| Zhang Rui | 40a9fb1 | 2010-12-17 13:17:04 -0800 | [diff] [blame] | 671 | xhci_cleanup_msix(xhci); | 
|  | 672 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 673 | xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n", | 
|  | 674 | xhci_readl(xhci, &xhci->op_regs->status)); | 
|  | 675 | } | 
|  | 676 |  | 
| Sarah Sharp | b5b5c3a | 2010-10-15 11:24:14 -0700 | [diff] [blame] | 677 | #ifdef CONFIG_PM | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 678 | static void xhci_save_registers(struct xhci_hcd *xhci) | 
|  | 679 | { | 
|  | 680 | xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 681 | xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification); | 
|  | 682 | xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); | 
|  | 683 | xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 684 | xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size); | 
|  | 685 | xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base); | 
|  | 686 | xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); | 
| Sarah Sharp | c7713e7 | 2012-03-16 13:19:35 -0700 | [diff] [blame] | 687 | xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending); | 
|  | 688 | xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 689 | } | 
|  | 690 |  | 
|  | 691 | static void xhci_restore_registers(struct xhci_hcd *xhci) | 
|  | 692 | { | 
|  | 693 | xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command); | 
|  | 694 | xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification); | 
|  | 695 | xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr); | 
|  | 696 | xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 697 | xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size); | 
|  | 698 | xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base); | 
| Sarah Sharp | fb3d85b | 2012-03-16 13:27:39 -0700 | [diff] [blame] | 699 | xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue); | 
| Sarah Sharp | c7713e7 | 2012-03-16 13:19:35 -0700 | [diff] [blame] | 700 | xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending); | 
|  | 701 | xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 702 | } | 
|  | 703 |  | 
| Sarah Sharp | 8982132 | 2010-11-12 11:59:31 -0800 | [diff] [blame] | 704 | static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci) | 
|  | 705 | { | 
|  | 706 | u64	val_64; | 
|  | 707 |  | 
|  | 708 | /* step 2: initialize command ring buffer */ | 
|  | 709 | val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring); | 
|  | 710 | val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) | | 
|  | 711 | (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg, | 
|  | 712 | xhci->cmd_ring->dequeue) & | 
|  | 713 | (u64) ~CMD_RING_RSVD_BITS) | | 
|  | 714 | xhci->cmd_ring->cycle_state; | 
|  | 715 | xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n", | 
|  | 716 | (long unsigned long) val_64); | 
|  | 717 | xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring); | 
|  | 718 | } | 
|  | 719 |  | 
|  | 720 | /* | 
|  | 721 | * The whole command ring must be cleared to zero when we suspend the host. | 
|  | 722 | * | 
|  | 723 | * The host doesn't save the command ring pointer in the suspend well, so we | 
|  | 724 | * need to re-program it on resume.  Unfortunately, the pointer must be 64-byte | 
|  | 725 | * aligned, because of the reserved bits in the command ring dequeue pointer | 
|  | 726 | * register.  Therefore, we can't just set the dequeue pointer back in the | 
|  | 727 | * middle of the ring (TRBs are 16-byte aligned). | 
|  | 728 | */ | 
|  | 729 | static void xhci_clear_command_ring(struct xhci_hcd *xhci) | 
|  | 730 | { | 
|  | 731 | struct xhci_ring *ring; | 
|  | 732 | struct xhci_segment *seg; | 
|  | 733 |  | 
|  | 734 | ring = xhci->cmd_ring; | 
|  | 735 | seg = ring->deq_seg; | 
|  | 736 | do { | 
| Andiry Xu | 158886c | 2011-11-30 16:37:41 +0800 | [diff] [blame] | 737 | memset(seg->trbs, 0, | 
|  | 738 | sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1)); | 
|  | 739 | seg->trbs[TRBS_PER_SEGMENT - 1].link.control &= | 
|  | 740 | cpu_to_le32(~TRB_CYCLE); | 
| Sarah Sharp | 8982132 | 2010-11-12 11:59:31 -0800 | [diff] [blame] | 741 | seg = seg->next; | 
|  | 742 | } while (seg != ring->deq_seg); | 
|  | 743 |  | 
|  | 744 | /* Reset the software enqueue and dequeue pointers */ | 
|  | 745 | ring->deq_seg = ring->first_seg; | 
|  | 746 | ring->dequeue = ring->first_seg->trbs; | 
|  | 747 | ring->enq_seg = ring->deq_seg; | 
|  | 748 | ring->enqueue = ring->dequeue; | 
|  | 749 |  | 
| Andiry Xu | b008df6 | 2012-03-05 17:49:34 +0800 | [diff] [blame] | 750 | ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1; | 
| Sarah Sharp | 8982132 | 2010-11-12 11:59:31 -0800 | [diff] [blame] | 751 | /* | 
|  | 752 | * Ring is now zeroed, so the HW should look for change of ownership | 
|  | 753 | * when the cycle bit is set to 1. | 
|  | 754 | */ | 
|  | 755 | ring->cycle_state = 1; | 
|  | 756 |  | 
|  | 757 | /* | 
|  | 758 | * Reset the hardware dequeue pointer. | 
|  | 759 | * Yes, this will need to be re-written after resume, but we're paranoid | 
|  | 760 | * and want to make sure the hardware doesn't access bogus memory | 
|  | 761 | * because, say, the BIOS or an SMI started the host without changing | 
|  | 762 | * the command ring pointers. | 
|  | 763 | */ | 
|  | 764 | xhci_set_cmd_ring_deq(xhci); | 
|  | 765 | } | 
|  | 766 |  | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 767 | /* | 
|  | 768 | * Stop HC (not bus-specific) | 
|  | 769 | * | 
|  | 770 | * This is called when the machine transition into S3/S4 mode. | 
|  | 771 | * | 
|  | 772 | */ | 
|  | 773 | int xhci_suspend(struct xhci_hcd *xhci) | 
|  | 774 | { | 
|  | 775 | int			rc = 0; | 
|  | 776 | struct usb_hcd		*hcd = xhci_to_hcd(xhci); | 
|  | 777 | u32			command; | 
|  | 778 |  | 
|  | 779 | spin_lock_irq(&xhci->lock); | 
|  | 780 | clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); | 
| Sarah Sharp | b320937 | 2011-03-07 11:24:07 -0800 | [diff] [blame] | 781 | clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 782 | /* step 1: stop endpoint */ | 
|  | 783 | /* skipped assuming that port suspend has done */ | 
|  | 784 |  | 
|  | 785 | /* step 2: clear Run/Stop bit */ | 
|  | 786 | command = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 787 | command &= ~CMD_RUN; | 
|  | 788 | xhci_writel(xhci, command, &xhci->op_regs->command); | 
|  | 789 | if (handshake(xhci, &xhci->op_regs->status, | 
|  | 790 | STS_HALT, STS_HALT, 100*100)) { | 
|  | 791 | xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n"); | 
|  | 792 | spin_unlock_irq(&xhci->lock); | 
|  | 793 | return -ETIMEDOUT; | 
|  | 794 | } | 
| Sarah Sharp | 8982132 | 2010-11-12 11:59:31 -0800 | [diff] [blame] | 795 | xhci_clear_command_ring(xhci); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 796 |  | 
|  | 797 | /* step 3: save registers */ | 
|  | 798 | xhci_save_registers(xhci); | 
|  | 799 |  | 
|  | 800 | /* step 4: set CSS flag */ | 
|  | 801 | command = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 802 | command |= CMD_CSS; | 
|  | 803 | xhci_writel(xhci, command, &xhci->op_regs->command); | 
| Andiry Xu | 622eb78 | 2012-06-13 10:51:57 +0800 | [diff] [blame] | 804 | if (handshake(xhci, &xhci->op_regs->status, STS_SAVE, 0, 10 * 1000)) { | 
|  | 805 | xhci_warn(xhci, "WARN: xHC save state timeout\n"); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 806 | spin_unlock_irq(&xhci->lock); | 
|  | 807 | return -ETIMEDOUT; | 
|  | 808 | } | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 809 | spin_unlock_irq(&xhci->lock); | 
|  | 810 |  | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 811 | /* step 5: remove core well power */ | 
|  | 812 | /* synchronize irq when using MSI-X */ | 
| Sebastian Andrzej Siewior | 421aa84 | 2011-09-23 14:19:58 -0700 | [diff] [blame] | 813 | xhci_msix_sync_irqs(xhci); | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 814 |  | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 815 | return rc; | 
|  | 816 | } | 
|  | 817 |  | 
|  | 818 | /* | 
|  | 819 | * start xHC (not bus-specific) | 
|  | 820 | * | 
|  | 821 | * This is called when the machine transition from S3/S4 mode. | 
|  | 822 | * | 
|  | 823 | */ | 
|  | 824 | int xhci_resume(struct xhci_hcd *xhci, bool hibernated) | 
|  | 825 | { | 
|  | 826 | u32			command, temp = 0; | 
|  | 827 | struct usb_hcd		*hcd = xhci_to_hcd(xhci); | 
| Sarah Sharp | 65b22f9 | 2010-12-17 12:35:05 -0800 | [diff] [blame] | 828 | struct usb_hcd		*secondary_hcd; | 
| Alan Stern | f69e3120 | 2011-11-03 11:37:10 -0400 | [diff] [blame] | 829 | int			retval = 0; | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 830 |  | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 831 | /* Wait a bit if either of the roothubs need to settle from the | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 832 | * transition into bus suspend. | 
| Sarah Sharp | 20b67cf | 2010-12-15 12:47:14 -0800 | [diff] [blame] | 833 | */ | 
| Sarah Sharp | f6ff0ac | 2010-12-16 11:21:10 -0800 | [diff] [blame] | 834 | if (time_before(jiffies, xhci->bus_state[0].next_statechange) || | 
|  | 835 | time_before(jiffies, | 
|  | 836 | xhci->bus_state[1].next_statechange)) | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 837 | msleep(100); | 
|  | 838 |  | 
| Alan Stern | f69e3120 | 2011-11-03 11:37:10 -0400 | [diff] [blame] | 839 | set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); | 
|  | 840 | set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags); | 
|  | 841 |  | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 842 | spin_lock_irq(&xhci->lock); | 
| Maarten Lankhorst | c877b3b | 2011-06-15 23:47:21 +0200 | [diff] [blame] | 843 | if (xhci->quirks & XHCI_RESET_ON_RESUME) | 
|  | 844 | hibernated = true; | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 845 |  | 
|  | 846 | if (!hibernated) { | 
|  | 847 | /* step 1: restore register */ | 
|  | 848 | xhci_restore_registers(xhci); | 
|  | 849 | /* step 2: initialize command ring buffer */ | 
| Sarah Sharp | 8982132 | 2010-11-12 11:59:31 -0800 | [diff] [blame] | 850 | xhci_set_cmd_ring_deq(xhci); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 851 | /* step 3: restore state and start state*/ | 
|  | 852 | /* step 3: set CRS flag */ | 
|  | 853 | command = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 854 | command |= CMD_CRS; | 
|  | 855 | xhci_writel(xhci, command, &xhci->op_regs->command); | 
|  | 856 | if (handshake(xhci, &xhci->op_regs->status, | 
| Andiry Xu | 622eb78 | 2012-06-13 10:51:57 +0800 | [diff] [blame] | 857 | STS_RESTORE, 0, 10 * 1000)) { | 
|  | 858 | xhci_warn(xhci, "WARN: xHC restore state timeout\n"); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 859 | spin_unlock_irq(&xhci->lock); | 
|  | 860 | return -ETIMEDOUT; | 
|  | 861 | } | 
|  | 862 | temp = xhci_readl(xhci, &xhci->op_regs->status); | 
|  | 863 | } | 
|  | 864 |  | 
|  | 865 | /* If restore operation fails, re-initialize the HC during resume */ | 
|  | 866 | if ((temp & STS_SRE) || hibernated) { | 
| Sarah Sharp | fedd383 | 2011-04-12 17:43:19 -0700 | [diff] [blame] | 867 | /* Let the USB core know _both_ roothubs lost power. */ | 
|  | 868 | usb_root_hub_lost_power(xhci->main_hcd->self.root_hub); | 
|  | 869 | usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 870 |  | 
|  | 871 | xhci_dbg(xhci, "Stop HCD\n"); | 
|  | 872 | xhci_halt(xhci); | 
|  | 873 | xhci_reset(xhci); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 874 | spin_unlock_irq(&xhci->lock); | 
| Andiry Xu | 0029227 | 2010-12-27 17:39:02 +0800 | [diff] [blame] | 875 | xhci_cleanup_msix(xhci); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 876 |  | 
|  | 877 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING | 
|  | 878 | /* Tell the event ring poll function not to reschedule */ | 
|  | 879 | xhci->zombie = 1; | 
|  | 880 | del_timer_sync(&xhci->event_ring_timer); | 
|  | 881 | #endif | 
|  | 882 |  | 
|  | 883 | xhci_dbg(xhci, "// Disabling event ring interrupts\n"); | 
|  | 884 | temp = xhci_readl(xhci, &xhci->op_regs->status); | 
|  | 885 | xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status); | 
|  | 886 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); | 
|  | 887 | xhci_writel(xhci, ER_IRQ_DISABLE(temp), | 
|  | 888 | &xhci->ir_set->irq_pending); | 
| Dmitry Torokhov | 09ece30 | 2011-02-08 16:29:33 -0800 | [diff] [blame] | 889 | xhci_print_ir_set(xhci, 0); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 890 |  | 
|  | 891 | xhci_dbg(xhci, "cleaning up memory\n"); | 
|  | 892 | xhci_mem_cleanup(xhci); | 
|  | 893 | xhci_dbg(xhci, "xhci_stop completed - status = %x\n", | 
|  | 894 | xhci_readl(xhci, &xhci->op_regs->status)); | 
|  | 895 |  | 
| Sarah Sharp | 65b22f9 | 2010-12-17 12:35:05 -0800 | [diff] [blame] | 896 | /* USB core calls the PCI reinit and start functions twice: | 
|  | 897 | * first with the primary HCD, and then with the secondary HCD. | 
|  | 898 | * If we don't do the same, the host will never be started. | 
|  | 899 | */ | 
|  | 900 | if (!usb_hcd_is_primary_hcd(hcd)) | 
|  | 901 | secondary_hcd = hcd; | 
|  | 902 | else | 
|  | 903 | secondary_hcd = xhci->shared_hcd; | 
|  | 904 |  | 
|  | 905 | xhci_dbg(xhci, "Initialize the xhci_hcd\n"); | 
|  | 906 | retval = xhci_init(hcd->primary_hcd); | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 907 | if (retval) | 
|  | 908 | return retval; | 
| Sarah Sharp | 65b22f9 | 2010-12-17 12:35:05 -0800 | [diff] [blame] | 909 | xhci_dbg(xhci, "Start the primary HCD\n"); | 
|  | 910 | retval = xhci_run(hcd->primary_hcd); | 
| Sarah Sharp | b320937 | 2011-03-07 11:24:07 -0800 | [diff] [blame] | 911 | if (!retval) { | 
| Alan Stern | f69e3120 | 2011-11-03 11:37:10 -0400 | [diff] [blame] | 912 | xhci_dbg(xhci, "Start the secondary HCD\n"); | 
|  | 913 | retval = xhci_run(secondary_hcd); | 
| Sarah Sharp | b320937 | 2011-03-07 11:24:07 -0800 | [diff] [blame] | 914 | } | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 915 | hcd->state = HC_STATE_SUSPENDED; | 
| Sarah Sharp | b320937 | 2011-03-07 11:24:07 -0800 | [diff] [blame] | 916 | xhci->shared_hcd->state = HC_STATE_SUSPENDED; | 
| Alan Stern | f69e3120 | 2011-11-03 11:37:10 -0400 | [diff] [blame] | 917 | goto done; | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 918 | } | 
|  | 919 |  | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 920 | /* step 4: set Run/Stop bit */ | 
|  | 921 | command = xhci_readl(xhci, &xhci->op_regs->command); | 
|  | 922 | command |= CMD_RUN; | 
|  | 923 | xhci_writel(xhci, command, &xhci->op_regs->command); | 
|  | 924 | handshake(xhci, &xhci->op_regs->status, STS_HALT, | 
|  | 925 | 0, 250 * 1000); | 
|  | 926 |  | 
|  | 927 | /* step 5: walk topology and initialize portsc, | 
|  | 928 | * portpmsc and portli | 
|  | 929 | */ | 
|  | 930 | /* this is done in bus_resume */ | 
|  | 931 |  | 
|  | 932 | /* step 6: restart each of the previously | 
|  | 933 | * Running endpoints by ringing their doorbells | 
|  | 934 | */ | 
|  | 935 |  | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 936 | spin_unlock_irq(&xhci->lock); | 
| Alan Stern | f69e3120 | 2011-11-03 11:37:10 -0400 | [diff] [blame] | 937 |  | 
|  | 938 | done: | 
|  | 939 | if (retval == 0) { | 
|  | 940 | usb_hcd_resume_root_hub(hcd); | 
|  | 941 | usb_hcd_resume_root_hub(xhci->shared_hcd); | 
|  | 942 | } | 
|  | 943 | return retval; | 
| Andiry Xu | 5535b1d | 2010-10-14 07:23:06 -0700 | [diff] [blame] | 944 | } | 
| Sarah Sharp | b5b5c3a | 2010-10-15 11:24:14 -0700 | [diff] [blame] | 945 | #endif	/* CONFIG_PM */ | 
|  | 946 |  | 
| Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 947 | /*-------------------------------------------------------------------------*/ | 
|  | 948 |  | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 949 | /** | 
|  | 950 | * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and | 
|  | 951 | * HCDs.  Find the index for an endpoint given its descriptor.  Use the return | 
|  | 952 | * value to right shift 1 for the bitmask. | 
|  | 953 | * | 
|  | 954 | * Index  = (epnum * 2) + direction - 1, | 
|  | 955 | * where direction = 0 for OUT, 1 for IN. | 
|  | 956 | * For control endpoints, the IN index is used (OUT index is unused), so | 
|  | 957 | * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2) | 
|  | 958 | */ | 
|  | 959 | unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc) | 
|  | 960 | { | 
|  | 961 | unsigned int index; | 
|  | 962 | if (usb_endpoint_xfer_control(desc)) | 
|  | 963 | index = (unsigned int) (usb_endpoint_num(desc)*2); | 
|  | 964 | else | 
|  | 965 | index = (unsigned int) (usb_endpoint_num(desc)*2) + | 
|  | 966 | (usb_endpoint_dir_in(desc) ? 1 : 0) - 1; | 
|  | 967 | return index; | 
|  | 968 | } | 
|  | 969 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 970 | /* Find the flag for this endpoint (for use in the control context).  Use the | 
|  | 971 | * endpoint index to create a bitmask.  The slot context is bit 0, endpoint 0 is | 
|  | 972 | * bit 1, etc. | 
|  | 973 | */ | 
|  | 974 | unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc) | 
|  | 975 | { | 
|  | 976 | return 1 << (xhci_get_endpoint_index(desc) + 1); | 
|  | 977 | } | 
|  | 978 |  | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 979 | /* Find the flag for this endpoint (for use in the control context).  Use the | 
|  | 980 | * endpoint index to create a bitmask.  The slot context is bit 0, endpoint 0 is | 
|  | 981 | * bit 1, etc. | 
|  | 982 | */ | 
|  | 983 | unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index) | 
|  | 984 | { | 
|  | 985 | return 1 << (ep_index + 1); | 
|  | 986 | } | 
|  | 987 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 988 | /* Compute the last valid endpoint context index.  Basically, this is the | 
|  | 989 | * endpoint index plus one.  For slot contexts with more than valid endpoint, | 
|  | 990 | * we find the most significant bit set in the added contexts flags. | 
|  | 991 | * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000 | 
|  | 992 | * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one. | 
|  | 993 | */ | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 994 | unsigned int xhci_last_valid_endpoint(u32 added_ctxs) | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 995 | { | 
|  | 996 | return fls(added_ctxs) - 1; | 
|  | 997 | } | 
|  | 998 |  | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 999 | /* Returns 1 if the arguments are OK; | 
|  | 1000 | * returns 0 this is a root hub; returns -EINVAL for NULL pointers. | 
|  | 1001 | */ | 
| Dmitry Torokhov | 8212a49 | 2011-02-08 13:55:59 -0800 | [diff] [blame] | 1002 | static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev, | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1003 | struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev, | 
|  | 1004 | const char *func) { | 
|  | 1005 | struct xhci_hcd	*xhci; | 
|  | 1006 | struct xhci_virt_device	*virt_dev; | 
|  | 1007 |  | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1008 | if (!hcd || (check_ep && !ep) || !udev) { | 
|  | 1009 | printk(KERN_DEBUG "xHCI %s called with invalid args\n", | 
|  | 1010 | func); | 
|  | 1011 | return -EINVAL; | 
|  | 1012 | } | 
|  | 1013 | if (!udev->parent) { | 
|  | 1014 | printk(KERN_DEBUG "xHCI %s called for root hub\n", | 
|  | 1015 | func); | 
|  | 1016 | return 0; | 
|  | 1017 | } | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1018 |  | 
| Sarah Sharp | 7bd89b4 | 2011-07-01 13:35:40 -0700 | [diff] [blame] | 1019 | xhci = hcd_to_xhci(hcd); | 
|  | 1020 | if (xhci->xhc_state & XHCI_STATE_HALTED) | 
|  | 1021 | return -ENODEV; | 
|  | 1022 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1023 | if (check_virt_dev) { | 
| sifram.rajas@gmail.com | 73ddc24 | 2011-09-02 11:06:00 -0700 | [diff] [blame] | 1024 | if (!udev->slot_id || !xhci->devs[udev->slot_id]) { | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1025 | printk(KERN_DEBUG "xHCI %s called with unaddressed " | 
|  | 1026 | "device\n", func); | 
|  | 1027 | return -EINVAL; | 
|  | 1028 | } | 
|  | 1029 |  | 
|  | 1030 | virt_dev = xhci->devs[udev->slot_id]; | 
|  | 1031 | if (virt_dev->udev != udev) { | 
|  | 1032 | printk(KERN_DEBUG "xHCI %s called with udev and " | 
|  | 1033 | "virt_dev does not match\n", func); | 
|  | 1034 | return -EINVAL; | 
|  | 1035 | } | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1036 | } | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1037 |  | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1038 | return 1; | 
|  | 1039 | } | 
|  | 1040 |  | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1041 | static int xhci_configure_endpoint(struct xhci_hcd *xhci, | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1042 | struct usb_device *udev, struct xhci_command *command, | 
|  | 1043 | bool ctx_change, bool must_succeed); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1044 |  | 
|  | 1045 | /* | 
|  | 1046 | * Full speed devices may have a max packet size greater than 8 bytes, but the | 
|  | 1047 | * USB core doesn't know that until it reads the first 8 bytes of the | 
|  | 1048 | * descriptor.  If the usb_device's max packet size changes after that point, | 
|  | 1049 | * we need to issue an evaluate context command and wait on it. | 
|  | 1050 | */ | 
|  | 1051 | static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id, | 
|  | 1052 | unsigned int ep_index, struct urb *urb) | 
|  | 1053 | { | 
|  | 1054 | struct xhci_container_ctx *in_ctx; | 
|  | 1055 | struct xhci_container_ctx *out_ctx; | 
|  | 1056 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 1057 | struct xhci_ep_ctx *ep_ctx; | 
|  | 1058 | int max_packet_size; | 
|  | 1059 | int hw_max_packet_size; | 
|  | 1060 | int ret = 0; | 
|  | 1061 |  | 
|  | 1062 | out_ctx = xhci->devs[slot_id]->out_ctx; | 
|  | 1063 | ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1064 | hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2)); | 
| Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 1065 | max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1066 | if (hw_max_packet_size != max_packet_size) { | 
|  | 1067 | xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n"); | 
|  | 1068 | xhci_dbg(xhci, "Max packet size in usb_device = %d\n", | 
|  | 1069 | max_packet_size); | 
|  | 1070 | xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n", | 
|  | 1071 | hw_max_packet_size); | 
|  | 1072 | xhci_dbg(xhci, "Issuing evaluate context command.\n"); | 
|  | 1073 |  | 
|  | 1074 | /* Set up the modified control endpoint 0 */ | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1075 | xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx, | 
|  | 1076 | xhci->devs[slot_id]->out_ctx, ep_index); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1077 | in_ctx = xhci->devs[slot_id]->in_ctx; | 
|  | 1078 | ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1079 | ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK); | 
|  | 1080 | ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size)); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1081 |  | 
|  | 1082 | /* Set up the input context flags for the command */ | 
|  | 1083 | /* FIXME: This won't work if a non-default control endpoint | 
|  | 1084 | * changes max packet sizes. | 
|  | 1085 | */ | 
|  | 1086 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1087 | ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1088 | ctrl_ctx->drop_flags = 0; | 
|  | 1089 |  | 
|  | 1090 | xhci_dbg(xhci, "Slot %d input context\n", slot_id); | 
|  | 1091 | xhci_dbg_ctx(xhci, in_ctx, ep_index); | 
|  | 1092 | xhci_dbg(xhci, "Slot %d output context\n", slot_id); | 
|  | 1093 | xhci_dbg_ctx(xhci, out_ctx, ep_index); | 
|  | 1094 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1095 | ret = xhci_configure_endpoint(xhci, urb->dev, NULL, | 
|  | 1096 | true, false); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1097 |  | 
|  | 1098 | /* Clean up the input context for later use by bandwidth | 
|  | 1099 | * functions. | 
|  | 1100 | */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1101 | ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1102 | } | 
|  | 1103 | return ret; | 
|  | 1104 | } | 
|  | 1105 |  | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1106 | /* | 
|  | 1107 | * non-error returns are a promise to giveback() the urb later | 
|  | 1108 | * we drop ownership so next owner (or urb unlink) can get it | 
|  | 1109 | */ | 
|  | 1110 | int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags) | 
|  | 1111 | { | 
|  | 1112 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
| Andiry Xu | 2ffdea2 | 2011-09-02 11:05:57 -0700 | [diff] [blame] | 1113 | struct xhci_td *buffer; | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1114 | unsigned long flags; | 
|  | 1115 | int ret = 0; | 
|  | 1116 | unsigned int slot_id, ep_index; | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1117 | struct urb_priv	*urb_priv; | 
|  | 1118 | int size, i; | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1119 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1120 | if (!urb || xhci_check_args(hcd, urb->dev, urb->ep, | 
|  | 1121 | true, true, __func__) <= 0) | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1122 | return -EINVAL; | 
|  | 1123 |  | 
|  | 1124 | slot_id = urb->dev->slot_id; | 
|  | 1125 | ep_index = xhci_get_endpoint_index(&urb->ep->desc); | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1126 |  | 
| Alan Stern | 541c7d4 | 2010-06-22 16:39:10 -0400 | [diff] [blame] | 1127 | if (!HCD_HW_ACCESSIBLE(hcd)) { | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1128 | if (!in_interrupt()) | 
|  | 1129 | xhci_dbg(xhci, "urb submitted during PCI suspend\n"); | 
|  | 1130 | ret = -ESHUTDOWN; | 
|  | 1131 | goto exit; | 
|  | 1132 | } | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1133 |  | 
|  | 1134 | if (usb_endpoint_xfer_isoc(&urb->ep->desc)) | 
|  | 1135 | size = urb->number_of_packets; | 
|  | 1136 | else | 
|  | 1137 | size = 1; | 
|  | 1138 |  | 
|  | 1139 | urb_priv = kzalloc(sizeof(struct urb_priv) + | 
|  | 1140 | size * sizeof(struct xhci_td *), mem_flags); | 
|  | 1141 | if (!urb_priv) | 
|  | 1142 | return -ENOMEM; | 
|  | 1143 |  | 
| Andiry Xu | 2ffdea2 | 2011-09-02 11:05:57 -0700 | [diff] [blame] | 1144 | buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags); | 
|  | 1145 | if (!buffer) { | 
|  | 1146 | kfree(urb_priv); | 
|  | 1147 | return -ENOMEM; | 
|  | 1148 | } | 
|  | 1149 |  | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1150 | for (i = 0; i < size; i++) { | 
| Andiry Xu | 2ffdea2 | 2011-09-02 11:05:57 -0700 | [diff] [blame] | 1151 | urb_priv->td[i] = buffer; | 
|  | 1152 | buffer++; | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1153 | } | 
|  | 1154 |  | 
|  | 1155 | urb_priv->length = size; | 
|  | 1156 | urb_priv->td_cnt = 0; | 
|  | 1157 | urb->hcpriv = urb_priv; | 
|  | 1158 |  | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1159 | if (usb_endpoint_xfer_control(&urb->ep->desc)) { | 
|  | 1160 | /* Check to see if the max packet size for the default control | 
|  | 1161 | * endpoint changed during FS device enumeration | 
|  | 1162 | */ | 
|  | 1163 | if (urb->dev->speed == USB_SPEED_FULL) { | 
|  | 1164 | ret = xhci_check_maxpacket(xhci, slot_id, | 
|  | 1165 | ep_index, urb); | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1166 | if (ret < 0) { | 
|  | 1167 | xhci_urb_free_priv(xhci, urb_priv); | 
|  | 1168 | urb->hcpriv = NULL; | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1169 | return ret; | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1170 | } | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1171 | } | 
|  | 1172 |  | 
| Sarah Sharp | b11069f | 2009-07-27 12:03:23 -0700 | [diff] [blame] | 1173 | /* We have a spinlock and interrupts disabled, so we must pass | 
|  | 1174 | * atomic context to this function, which may allocate memory. | 
|  | 1175 | */ | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1176 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1177 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 1178 | goto dying; | 
| Sarah Sharp | b11069f | 2009-07-27 12:03:23 -0700 | [diff] [blame] | 1179 | ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb, | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1180 | slot_id, ep_index); | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1181 | if (ret) | 
|  | 1182 | goto free_priv; | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1183 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 1184 | } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) { | 
|  | 1185 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1186 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 1187 | goto dying; | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 1188 | if (xhci->devs[slot_id]->eps[ep_index].ep_state & | 
|  | 1189 | EP_GETTING_STREAMS) { | 
|  | 1190 | xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep " | 
|  | 1191 | "is transitioning to using streams.\n"); | 
|  | 1192 | ret = -EINVAL; | 
|  | 1193 | } else if (xhci->devs[slot_id]->eps[ep_index].ep_state & | 
|  | 1194 | EP_GETTING_NO_STREAMS) { | 
|  | 1195 | xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep " | 
|  | 1196 | "is transitioning to " | 
|  | 1197 | "not having streams.\n"); | 
|  | 1198 | ret = -EINVAL; | 
|  | 1199 | } else { | 
|  | 1200 | ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, | 
|  | 1201 | slot_id, ep_index); | 
|  | 1202 | } | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1203 | if (ret) | 
|  | 1204 | goto free_priv; | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1205 | spin_unlock_irqrestore(&xhci->lock, flags); | 
| Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 1206 | } else if (usb_endpoint_xfer_int(&urb->ep->desc)) { | 
|  | 1207 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1208 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 1209 | goto dying; | 
| Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 1210 | ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb, | 
|  | 1211 | slot_id, ep_index); | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1212 | if (ret) | 
|  | 1213 | goto free_priv; | 
| Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 1214 | spin_unlock_irqrestore(&xhci->lock, flags); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1215 | } else { | 
| Andiry Xu | 787f4e5 | 2010-07-22 15:23:52 -0700 | [diff] [blame] | 1216 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 1217 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 1218 | goto dying; | 
|  | 1219 | ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb, | 
|  | 1220 | slot_id, ep_index); | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1221 | if (ret) | 
|  | 1222 | goto free_priv; | 
| Andiry Xu | 787f4e5 | 2010-07-22 15:23:52 -0700 | [diff] [blame] | 1223 | spin_unlock_irqrestore(&xhci->lock, flags); | 
| Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 1224 | } | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1225 | exit: | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1226 | return ret; | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1227 | dying: | 
|  | 1228 | xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for " | 
|  | 1229 | "non-responsive xHCI host.\n", | 
|  | 1230 | urb->ep->desc.bEndpointAddress, urb); | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1231 | ret = -ESHUTDOWN; | 
|  | 1232 | free_priv: | 
|  | 1233 | xhci_urb_free_priv(xhci, urb_priv); | 
|  | 1234 | urb->hcpriv = NULL; | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1235 | spin_unlock_irqrestore(&xhci->lock, flags); | 
| Sarah Sharp | d13565c | 2011-07-22 14:34:34 -0700 | [diff] [blame] | 1236 | return ret; | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1237 | } | 
|  | 1238 |  | 
| Sarah Sharp | 021bff9 | 2010-07-29 22:12:20 -0700 | [diff] [blame] | 1239 | /* Get the right ring for the given URB. | 
|  | 1240 | * If the endpoint supports streams, boundary check the URB's stream ID. | 
|  | 1241 | * If the endpoint doesn't support streams, return the singular endpoint ring. | 
|  | 1242 | */ | 
|  | 1243 | static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci, | 
|  | 1244 | struct urb *urb) | 
|  | 1245 | { | 
|  | 1246 | unsigned int slot_id; | 
|  | 1247 | unsigned int ep_index; | 
|  | 1248 | unsigned int stream_id; | 
|  | 1249 | struct xhci_virt_ep *ep; | 
|  | 1250 |  | 
|  | 1251 | slot_id = urb->dev->slot_id; | 
|  | 1252 | ep_index = xhci_get_endpoint_index(&urb->ep->desc); | 
|  | 1253 | stream_id = urb->stream_id; | 
|  | 1254 | ep = &xhci->devs[slot_id]->eps[ep_index]; | 
|  | 1255 | /* Common case: no streams */ | 
|  | 1256 | if (!(ep->ep_state & EP_HAS_STREAMS)) | 
|  | 1257 | return ep->ring; | 
|  | 1258 |  | 
|  | 1259 | if (stream_id == 0) { | 
|  | 1260 | xhci_warn(xhci, | 
|  | 1261 | "WARN: Slot ID %u, ep index %u has streams, " | 
|  | 1262 | "but URB has no stream ID.\n", | 
|  | 1263 | slot_id, ep_index); | 
|  | 1264 | return NULL; | 
|  | 1265 | } | 
|  | 1266 |  | 
|  | 1267 | if (stream_id < ep->stream_info->num_streams) | 
|  | 1268 | return ep->stream_info->stream_rings[stream_id]; | 
|  | 1269 |  | 
|  | 1270 | xhci_warn(xhci, | 
|  | 1271 | "WARN: Slot ID %u, ep index %u has " | 
|  | 1272 | "stream IDs 1 to %u allocated, " | 
|  | 1273 | "but stream ID %u is requested.\n", | 
|  | 1274 | slot_id, ep_index, | 
|  | 1275 | ep->stream_info->num_streams - 1, | 
|  | 1276 | stream_id); | 
|  | 1277 | return NULL; | 
|  | 1278 | } | 
|  | 1279 |  | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1280 | /* | 
|  | 1281 | * Remove the URB's TD from the endpoint ring.  This may cause the HC to stop | 
|  | 1282 | * USB transfers, potentially stopping in the middle of a TRB buffer.  The HC | 
|  | 1283 | * should pick up where it left off in the TD, unless a Set Transfer Ring | 
|  | 1284 | * Dequeue Pointer is issued. | 
|  | 1285 | * | 
|  | 1286 | * The TRBs that make up the buffers for the canceled URB will be "removed" from | 
|  | 1287 | * the ring.  Since the ring is a contiguous structure, they can't be physically | 
|  | 1288 | * removed.  Instead, there are two options: | 
|  | 1289 | * | 
|  | 1290 | *  1) If the HC is in the middle of processing the URB to be canceled, we | 
|  | 1291 | *     simply move the ring's dequeue pointer past those TRBs using the Set | 
|  | 1292 | *     Transfer Ring Dequeue Pointer command.  This will be the common case, | 
|  | 1293 | *     when drivers timeout on the last submitted URB and attempt to cancel. | 
|  | 1294 | * | 
|  | 1295 | *  2) If the HC is in the middle of a different TD, we turn the TRBs into a | 
|  | 1296 | *     series of 1-TRB transfer no-op TDs.  (No-ops shouldn't be chained.)  The | 
|  | 1297 | *     HC will need to invalidate the any TRBs it has cached after the stop | 
|  | 1298 | *     endpoint command, as noted in the xHCI 0.95 errata. | 
|  | 1299 | * | 
|  | 1300 | *  3) The TD may have completed by the time the Stop Endpoint Command | 
|  | 1301 | *     completes, so software needs to handle that case too. | 
|  | 1302 | * | 
|  | 1303 | * This function should protect against the TD enqueueing code ringing the | 
|  | 1304 | * doorbell while this code is waiting for a Stop Endpoint command to complete. | 
|  | 1305 | * It also needs to account for multiple cancellations on happening at the same | 
|  | 1306 | * time for the same endpoint. | 
|  | 1307 | * | 
|  | 1308 | * Note that this function can be called in any context, or so says | 
|  | 1309 | * usb_hcd_unlink_urb() | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1310 | */ | 
|  | 1311 | int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) | 
|  | 1312 | { | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1313 | unsigned long flags; | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1314 | int ret, i; | 
| Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 1315 | u32 temp; | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1316 | struct xhci_hcd *xhci; | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1317 | struct urb_priv	*urb_priv; | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1318 | struct xhci_td *td; | 
|  | 1319 | unsigned int ep_index; | 
|  | 1320 | struct xhci_ring *ep_ring; | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1321 | struct xhci_virt_ep *ep; | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1322 |  | 
|  | 1323 | xhci = hcd_to_xhci(hcd); | 
|  | 1324 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 1325 | /* Make sure the URB hasn't completed or been unlinked already */ | 
|  | 1326 | ret = usb_hcd_check_unlink_urb(hcd, urb, status); | 
|  | 1327 | if (ret || !urb->hcpriv) | 
|  | 1328 | goto done; | 
| Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 1329 | temp = xhci_readl(xhci, &xhci->op_regs->status); | 
| Sarah Sharp | c6cc27c | 2011-03-11 10:20:58 -0800 | [diff] [blame] | 1330 | if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) { | 
| Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 1331 | xhci_dbg(xhci, "HW died, freeing TD.\n"); | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1332 | urb_priv = urb->hcpriv; | 
| Sarah Sharp | 585df1d | 2011-08-02 15:43:40 -0700 | [diff] [blame] | 1333 | for (i = urb_priv->td_cnt; i < urb_priv->length; i++) { | 
|  | 1334 | td = urb_priv->td[i]; | 
|  | 1335 | if (!list_empty(&td->td_list)) | 
|  | 1336 | list_del_init(&td->td_list); | 
|  | 1337 | if (!list_empty(&td->cancelled_td_list)) | 
|  | 1338 | list_del_init(&td->cancelled_td_list); | 
|  | 1339 | } | 
| Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 1340 |  | 
|  | 1341 | usb_hcd_unlink_urb_from_ep(hcd, urb); | 
|  | 1342 | spin_unlock_irqrestore(&xhci->lock, flags); | 
| Sarah Sharp | 214f76f | 2010-10-26 11:22:02 -0700 | [diff] [blame] | 1343 | usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN); | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1344 | xhci_urb_free_priv(xhci, urb_priv); | 
| Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 1345 | return ret; | 
|  | 1346 | } | 
| Sarah Sharp | 7bd89b4 | 2011-07-01 13:35:40 -0700 | [diff] [blame] | 1347 | if ((xhci->xhc_state & XHCI_STATE_DYING) || | 
|  | 1348 | (xhci->xhc_state & XHCI_STATE_HALTED)) { | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1349 | xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on " | 
|  | 1350 | "non-responsive xHCI host.\n", | 
|  | 1351 | urb->ep->desc.bEndpointAddress, urb); | 
|  | 1352 | /* Let the stop endpoint command watchdog timer (which set this | 
|  | 1353 | * state) finish cleaning up the endpoint TD lists.  We must | 
|  | 1354 | * have caught it in the middle of dropping a lock and giving | 
|  | 1355 | * back an URB. | 
|  | 1356 | */ | 
|  | 1357 | goto done; | 
|  | 1358 | } | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1359 |  | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1360 | ep_index = xhci_get_endpoint_index(&urb->ep->desc); | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1361 | ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index]; | 
| Sarah Sharp | e9df17e | 2010-04-02 15:34:43 -0700 | [diff] [blame] | 1362 | ep_ring = xhci_urb_to_transfer_ring(xhci, urb); | 
|  | 1363 | if (!ep_ring) { | 
|  | 1364 | ret = -EINVAL; | 
|  | 1365 | goto done; | 
|  | 1366 | } | 
|  | 1367 |  | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1368 | urb_priv = urb->hcpriv; | 
| Sarah Sharp | 79688ac | 2011-12-19 16:56:04 -0800 | [diff] [blame] | 1369 | i = urb_priv->td_cnt; | 
|  | 1370 | if (i < urb_priv->length) | 
|  | 1371 | xhci_dbg(xhci, "Cancel URB %p, dev %s, ep 0x%x, " | 
|  | 1372 | "starting at offset 0x%llx\n", | 
|  | 1373 | urb, urb->dev->devpath, | 
|  | 1374 | urb->ep->desc.bEndpointAddress, | 
|  | 1375 | (unsigned long long) xhci_trb_virt_to_dma( | 
|  | 1376 | urb_priv->td[i]->start_seg, | 
|  | 1377 | urb_priv->td[i]->first_trb)); | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1378 |  | 
| Sarah Sharp | 79688ac | 2011-12-19 16:56:04 -0800 | [diff] [blame] | 1379 | for (; i < urb_priv->length; i++) { | 
| Andiry Xu | 8e51adc | 2010-07-22 15:23:31 -0700 | [diff] [blame] | 1380 | td = urb_priv->td[i]; | 
|  | 1381 | list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list); | 
|  | 1382 | } | 
|  | 1383 |  | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1384 | /* Queue a stop endpoint command, but only if this is | 
|  | 1385 | * the first cancellation to be handled. | 
|  | 1386 | */ | 
| Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 1387 | if (!(ep->ep_state & EP_HALT_PENDING)) { | 
|  | 1388 | ep->ep_state |= EP_HALT_PENDING; | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1389 | ep->stop_cmds_pending++; | 
|  | 1390 | ep->stop_cmd_timer.expires = jiffies + | 
|  | 1391 | XHCI_STOP_EP_CMD_TIMEOUT * HZ; | 
|  | 1392 | add_timer(&ep->stop_cmd_timer); | 
| Andiry Xu | be88fe4 | 2010-10-14 07:22:57 -0700 | [diff] [blame] | 1393 | xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0); | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1394 | xhci_ring_cmd_db(xhci); | 
| Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 1395 | } | 
|  | 1396 | done: | 
|  | 1397 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 1398 | return ret; | 
| Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 1399 | } | 
|  | 1400 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1401 | /* Drop an endpoint from a new bandwidth configuration for this device. | 
|  | 1402 | * Only one call to this function is allowed per endpoint before | 
|  | 1403 | * check_bandwidth() or reset_bandwidth() must be called. | 
|  | 1404 | * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will | 
|  | 1405 | * add the endpoint to the schedule with possibly new parameters denoted by a | 
|  | 1406 | * different endpoint descriptor in usb_host_endpoint. | 
|  | 1407 | * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is | 
|  | 1408 | * not allowed. | 
| Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1409 | * | 
|  | 1410 | * The USB core will not allow URBs to be queued to an endpoint that is being | 
|  | 1411 | * disabled, so there's no need for mutual exclusion to protect | 
|  | 1412 | * the xhci->devs[slot_id] structure. | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1413 | */ | 
|  | 1414 | int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev, | 
|  | 1415 | struct usb_host_endpoint *ep) | 
|  | 1416 | { | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1417 | struct xhci_hcd *xhci; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1418 | struct xhci_container_ctx *in_ctx, *out_ctx; | 
|  | 1419 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 1420 | struct xhci_slot_ctx *slot_ctx; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1421 | unsigned int last_ctx; | 
|  | 1422 | unsigned int ep_index; | 
|  | 1423 | struct xhci_ep_ctx *ep_ctx; | 
|  | 1424 | u32 drop_flag; | 
|  | 1425 | u32 new_add_flags, new_drop_flags, new_slot_info; | 
|  | 1426 | int ret; | 
|  | 1427 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1428 | ret = xhci_check_args(hcd, udev, ep, 1, true, __func__); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1429 | if (ret <= 0) | 
|  | 1430 | return ret; | 
|  | 1431 | xhci = hcd_to_xhci(hcd); | 
| Sarah Sharp | fe6c6c1 | 2011-05-23 16:41:17 -0700 | [diff] [blame] | 1432 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 1433 | return -ENODEV; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1434 |  | 
| Sarah Sharp | fe6c6c1 | 2011-05-23 16:41:17 -0700 | [diff] [blame] | 1435 | xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1436 | drop_flag = xhci_get_endpoint_flag(&ep->desc); | 
|  | 1437 | if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) { | 
|  | 1438 | xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n", | 
|  | 1439 | __func__, drop_flag); | 
|  | 1440 | return 0; | 
|  | 1441 | } | 
|  | 1442 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1443 | in_ctx = xhci->devs[udev->slot_id]->in_ctx; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1444 | out_ctx = xhci->devs[udev->slot_id]->out_ctx; | 
|  | 1445 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1446 | ep_index = xhci_get_endpoint_index(&ep->desc); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1447 | ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1448 | /* If the HC already knows the endpoint is disabled, | 
|  | 1449 | * or the HCD has noted it is disabled, ignore this request | 
|  | 1450 | */ | 
| Matt Evans | f5960b6 | 2011-06-01 10:22:55 +1000 | [diff] [blame] | 1451 | if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) == | 
|  | 1452 | cpu_to_le32(EP_STATE_DISABLED)) || | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1453 | le32_to_cpu(ctrl_ctx->drop_flags) & | 
|  | 1454 | xhci_get_endpoint_flag(&ep->desc)) { | 
| Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1455 | xhci_warn(xhci, "xHCI %s called with disabled ep %p\n", | 
|  | 1456 | __func__, ep); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1457 | return 0; | 
|  | 1458 | } | 
|  | 1459 |  | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1460 | ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag); | 
|  | 1461 | new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1462 |  | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1463 | ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag); | 
|  | 1464 | new_add_flags = le32_to_cpu(ctrl_ctx->add_flags); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1465 |  | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1466 | last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags)); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1467 | slot_ctx = xhci_get_slot_ctx(xhci, in_ctx); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1468 | /* Update the last valid endpoint context, if we deleted the last one */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1469 | if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) > | 
|  | 1470 | LAST_CTX(last_ctx)) { | 
|  | 1471 | slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK); | 
|  | 1472 | slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx)); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1473 | } | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1474 | new_slot_info = le32_to_cpu(slot_ctx->dev_info); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1475 |  | 
|  | 1476 | xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep); | 
|  | 1477 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1478 | xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n", | 
|  | 1479 | (unsigned int) ep->desc.bEndpointAddress, | 
|  | 1480 | udev->slot_id, | 
|  | 1481 | (unsigned int) new_drop_flags, | 
|  | 1482 | (unsigned int) new_add_flags, | 
|  | 1483 | (unsigned int) new_slot_info); | 
|  | 1484 | return 0; | 
|  | 1485 | } | 
|  | 1486 |  | 
|  | 1487 | /* Add an endpoint to a new possible bandwidth configuration for this device. | 
|  | 1488 | * Only one call to this function is allowed per endpoint before | 
|  | 1489 | * check_bandwidth() or reset_bandwidth() must be called. | 
|  | 1490 | * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will | 
|  | 1491 | * add the endpoint to the schedule with possibly new parameters denoted by a | 
|  | 1492 | * different endpoint descriptor in usb_host_endpoint. | 
|  | 1493 | * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is | 
|  | 1494 | * not allowed. | 
| Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1495 | * | 
|  | 1496 | * The USB core will not allow URBs to be queued to an endpoint until the | 
|  | 1497 | * configuration or alt setting is installed in the device, so there's no need | 
|  | 1498 | * for mutual exclusion to protect the xhci->devs[slot_id] structure. | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1499 | */ | 
|  | 1500 | int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev, | 
|  | 1501 | struct usb_host_endpoint *ep) | 
|  | 1502 | { | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1503 | struct xhci_hcd *xhci; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1504 | struct xhci_container_ctx *in_ctx, *out_ctx; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1505 | unsigned int ep_index; | 
|  | 1506 | struct xhci_ep_ctx *ep_ctx; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1507 | struct xhci_slot_ctx *slot_ctx; | 
|  | 1508 | struct xhci_input_control_ctx *ctrl_ctx; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1509 | u32 added_ctxs; | 
|  | 1510 | unsigned int last_ctx; | 
|  | 1511 | u32 new_add_flags, new_drop_flags, new_slot_info; | 
| Sarah Sharp | fa75ac3 | 2011-06-05 23:10:04 -0700 | [diff] [blame] | 1512 | struct xhci_virt_device *virt_dev; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1513 | int ret = 0; | 
|  | 1514 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 1515 | ret = xhci_check_args(hcd, udev, ep, 1, true, __func__); | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1516 | if (ret <= 0) { | 
|  | 1517 | /* So we won't queue a reset ep command for a root hub */ | 
|  | 1518 | ep->hcpriv = NULL; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1519 | return ret; | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1520 | } | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1521 | xhci = hcd_to_xhci(hcd); | 
| Sarah Sharp | fe6c6c1 | 2011-05-23 16:41:17 -0700 | [diff] [blame] | 1522 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 1523 | return -ENODEV; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1524 |  | 
|  | 1525 | added_ctxs = xhci_get_endpoint_flag(&ep->desc); | 
|  | 1526 | last_ctx = xhci_last_valid_endpoint(added_ctxs); | 
|  | 1527 | if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) { | 
|  | 1528 | /* FIXME when we have to issue an evaluate endpoint command to | 
|  | 1529 | * deal with ep0 max packet size changing once we get the | 
|  | 1530 | * descriptors | 
|  | 1531 | */ | 
|  | 1532 | xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n", | 
|  | 1533 | __func__, added_ctxs); | 
|  | 1534 | return 0; | 
|  | 1535 | } | 
|  | 1536 |  | 
| Sarah Sharp | fa75ac3 | 2011-06-05 23:10:04 -0700 | [diff] [blame] | 1537 | virt_dev = xhci->devs[udev->slot_id]; | 
|  | 1538 | in_ctx = virt_dev->in_ctx; | 
|  | 1539 | out_ctx = virt_dev->out_ctx; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1540 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1541 | ep_index = xhci_get_endpoint_index(&ep->desc); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1542 | ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index); | 
| Sarah Sharp | fa75ac3 | 2011-06-05 23:10:04 -0700 | [diff] [blame] | 1543 |  | 
|  | 1544 | /* If this endpoint is already in use, and the upper layers are trying | 
|  | 1545 | * to add it again without dropping it, reject the addition. | 
|  | 1546 | */ | 
|  | 1547 | if (virt_dev->eps[ep_index].ring && | 
|  | 1548 | !(le32_to_cpu(ctrl_ctx->drop_flags) & | 
|  | 1549 | xhci_get_endpoint_flag(&ep->desc))) { | 
|  | 1550 | xhci_warn(xhci, "Trying to add endpoint 0x%x " | 
|  | 1551 | "without dropping it.\n", | 
|  | 1552 | (unsigned int) ep->desc.bEndpointAddress); | 
|  | 1553 | return -EINVAL; | 
|  | 1554 | } | 
|  | 1555 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1556 | /* If the HCD has already noted the endpoint is enabled, | 
|  | 1557 | * ignore this request. | 
|  | 1558 | */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1559 | if (le32_to_cpu(ctrl_ctx->add_flags) & | 
|  | 1560 | xhci_get_endpoint_flag(&ep->desc)) { | 
| Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1561 | xhci_warn(xhci, "xHCI %s called with enabled ep %p\n", | 
|  | 1562 | __func__, ep); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1563 | return 0; | 
|  | 1564 | } | 
|  | 1565 |  | 
| Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1566 | /* | 
|  | 1567 | * Configuration and alternate setting changes must be done in | 
|  | 1568 | * process context, not interrupt context (or so documenation | 
|  | 1569 | * for usb_set_interface() and usb_set_configuration() claim). | 
|  | 1570 | */ | 
| Sarah Sharp | fa75ac3 | 2011-06-05 23:10:04 -0700 | [diff] [blame] | 1571 | if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) { | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1572 | dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n", | 
|  | 1573 | __func__, ep->desc.bEndpointAddress); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1574 | return -ENOMEM; | 
|  | 1575 | } | 
|  | 1576 |  | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1577 | ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs); | 
|  | 1578 | new_add_flags = le32_to_cpu(ctrl_ctx->add_flags); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1579 |  | 
|  | 1580 | /* If xhci_endpoint_disable() was called for this endpoint, but the | 
|  | 1581 | * xHC hasn't been notified yet through the check_bandwidth() call, | 
|  | 1582 | * this re-adds a new state for the endpoint from the new endpoint | 
|  | 1583 | * descriptors.  We must drop and re-add this endpoint, so we leave the | 
|  | 1584 | * drop flags alone. | 
|  | 1585 | */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1586 | new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1587 |  | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1588 | slot_ctx = xhci_get_slot_ctx(xhci, in_ctx); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1589 | /* Update the last valid endpoint context, if we just added one past */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1590 | if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) < | 
|  | 1591 | LAST_CTX(last_ctx)) { | 
|  | 1592 | slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK); | 
|  | 1593 | slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx)); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1594 | } | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1595 | new_slot_info = le32_to_cpu(slot_ctx->dev_info); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1596 |  | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1597 | /* Store the usb_device pointer for later use */ | 
|  | 1598 | ep->hcpriv = udev; | 
|  | 1599 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1600 | xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n", | 
|  | 1601 | (unsigned int) ep->desc.bEndpointAddress, | 
|  | 1602 | udev->slot_id, | 
|  | 1603 | (unsigned int) new_drop_flags, | 
|  | 1604 | (unsigned int) new_add_flags, | 
|  | 1605 | (unsigned int) new_slot_info); | 
|  | 1606 | return 0; | 
|  | 1607 | } | 
|  | 1608 |  | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1609 | static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev) | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1610 | { | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1611 | struct xhci_input_control_ctx *ctrl_ctx; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1612 | struct xhci_ep_ctx *ep_ctx; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1613 | struct xhci_slot_ctx *slot_ctx; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1614 | int i; | 
|  | 1615 |  | 
|  | 1616 | /* When a device's add flag and drop flag are zero, any subsequent | 
|  | 1617 | * configure endpoint command will leave that endpoint's state | 
|  | 1618 | * untouched.  Make sure we don't leave any old state in the input | 
|  | 1619 | * endpoint contexts. | 
|  | 1620 | */ | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1621 | ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx); | 
|  | 1622 | ctrl_ctx->drop_flags = 0; | 
|  | 1623 | ctrl_ctx->add_flags = 0; | 
|  | 1624 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1625 | slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1626 | /* Endpoint 0 is always valid */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 1627 | slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1)); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1628 | for (i = 1; i < 31; ++i) { | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1629 | ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1630 | ep_ctx->ep_info = 0; | 
|  | 1631 | ep_ctx->ep_info2 = 0; | 
| Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1632 | ep_ctx->deq = 0; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1633 | ep_ctx->tx_info = 0; | 
|  | 1634 | } | 
|  | 1635 | } | 
|  | 1636 |  | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1637 | static int xhci_configure_endpoint_result(struct xhci_hcd *xhci, | 
| Sarah Sharp | 00161f7 | 2011-04-28 12:23:23 -0700 | [diff] [blame] | 1638 | struct usb_device *udev, u32 *cmd_status) | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1639 | { | 
|  | 1640 | int ret; | 
|  | 1641 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1642 | switch (*cmd_status) { | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1643 | case COMP_ENOMEM: | 
|  | 1644 | dev_warn(&udev->dev, "Not enough host controller resources " | 
|  | 1645 | "for new device state.\n"); | 
|  | 1646 | ret = -ENOMEM; | 
|  | 1647 | /* FIXME: can we allocate more resources for the HC? */ | 
|  | 1648 | break; | 
|  | 1649 | case COMP_BW_ERR: | 
| Hans de Goede | 71d8572 | 2012-01-04 23:29:18 +0100 | [diff] [blame] | 1650 | case COMP_2ND_BW_ERR: | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1651 | dev_warn(&udev->dev, "Not enough bandwidth " | 
|  | 1652 | "for new device state.\n"); | 
|  | 1653 | ret = -ENOSPC; | 
|  | 1654 | /* FIXME: can we go back to the old state? */ | 
|  | 1655 | break; | 
|  | 1656 | case COMP_TRB_ERR: | 
|  | 1657 | /* the HCD set up something wrong */ | 
|  | 1658 | dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, " | 
|  | 1659 | "add flag = 1, " | 
|  | 1660 | "and endpoint is not disabled.\n"); | 
|  | 1661 | ret = -EINVAL; | 
|  | 1662 | break; | 
| Alex He | f6ba6fe | 2011-06-08 18:34:06 +0800 | [diff] [blame] | 1663 | case COMP_DEV_ERR: | 
|  | 1664 | dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint " | 
|  | 1665 | "configure command.\n"); | 
|  | 1666 | ret = -ENODEV; | 
|  | 1667 | break; | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1668 | case COMP_SUCCESS: | 
|  | 1669 | dev_dbg(&udev->dev, "Successful Endpoint Configure command\n"); | 
|  | 1670 | ret = 0; | 
|  | 1671 | break; | 
|  | 1672 | default: | 
|  | 1673 | xhci_err(xhci, "ERROR: unexpected command completion " | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1674 | "code 0x%x.\n", *cmd_status); | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1675 | ret = -EINVAL; | 
|  | 1676 | break; | 
|  | 1677 | } | 
|  | 1678 | return ret; | 
|  | 1679 | } | 
|  | 1680 |  | 
|  | 1681 | static int xhci_evaluate_context_result(struct xhci_hcd *xhci, | 
| Sarah Sharp | 00161f7 | 2011-04-28 12:23:23 -0700 | [diff] [blame] | 1682 | struct usb_device *udev, u32 *cmd_status) | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1683 | { | 
|  | 1684 | int ret; | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1685 | struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id]; | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1686 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1687 | switch (*cmd_status) { | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1688 | case COMP_EINVAL: | 
|  | 1689 | dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate " | 
|  | 1690 | "context command.\n"); | 
|  | 1691 | ret = -EINVAL; | 
|  | 1692 | break; | 
|  | 1693 | case COMP_EBADSLT: | 
|  | 1694 | dev_warn(&udev->dev, "WARN: slot not enabled for" | 
|  | 1695 | "evaluate context command.\n"); | 
|  | 1696 | case COMP_CTX_STATE: | 
|  | 1697 | dev_warn(&udev->dev, "WARN: invalid context state for " | 
|  | 1698 | "evaluate context command.\n"); | 
|  | 1699 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1); | 
|  | 1700 | ret = -EINVAL; | 
|  | 1701 | break; | 
| Alex He | f6ba6fe | 2011-06-08 18:34:06 +0800 | [diff] [blame] | 1702 | case COMP_DEV_ERR: | 
|  | 1703 | dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate " | 
|  | 1704 | "context command.\n"); | 
|  | 1705 | ret = -ENODEV; | 
|  | 1706 | break; | 
| Alex He | 1bb73a8 | 2011-05-05 18:14:12 +0800 | [diff] [blame] | 1707 | case COMP_MEL_ERR: | 
|  | 1708 | /* Max Exit Latency too large error */ | 
|  | 1709 | dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n"); | 
|  | 1710 | ret = -EINVAL; | 
|  | 1711 | break; | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1712 | case COMP_SUCCESS: | 
|  | 1713 | dev_dbg(&udev->dev, "Successful evaluate context command\n"); | 
|  | 1714 | ret = 0; | 
|  | 1715 | break; | 
|  | 1716 | default: | 
|  | 1717 | xhci_err(xhci, "ERROR: unexpected command completion " | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1718 | "code 0x%x.\n", *cmd_status); | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1719 | ret = -EINVAL; | 
|  | 1720 | break; | 
|  | 1721 | } | 
|  | 1722 | return ret; | 
|  | 1723 | } | 
|  | 1724 |  | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 1725 | static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci, | 
|  | 1726 | struct xhci_container_ctx *in_ctx) | 
|  | 1727 | { | 
|  | 1728 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 1729 | u32 valid_add_flags; | 
|  | 1730 | u32 valid_drop_flags; | 
|  | 1731 |  | 
|  | 1732 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
|  | 1733 | /* Ignore the slot flag (bit 0), and the default control endpoint flag | 
|  | 1734 | * (bit 1).  The default control endpoint is added during the Address | 
|  | 1735 | * Device command and is never removed until the slot is disabled. | 
|  | 1736 | */ | 
|  | 1737 | valid_add_flags = ctrl_ctx->add_flags >> 2; | 
|  | 1738 | valid_drop_flags = ctrl_ctx->drop_flags >> 2; | 
|  | 1739 |  | 
|  | 1740 | /* Use hweight32 to count the number of ones in the add flags, or | 
|  | 1741 | * number of endpoints added.  Don't count endpoints that are changed | 
|  | 1742 | * (both added and dropped). | 
|  | 1743 | */ | 
|  | 1744 | return hweight32(valid_add_flags) - | 
|  | 1745 | hweight32(valid_add_flags & valid_drop_flags); | 
|  | 1746 | } | 
|  | 1747 |  | 
|  | 1748 | static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci, | 
|  | 1749 | struct xhci_container_ctx *in_ctx) | 
|  | 1750 | { | 
|  | 1751 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 1752 | u32 valid_add_flags; | 
|  | 1753 | u32 valid_drop_flags; | 
|  | 1754 |  | 
|  | 1755 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
|  | 1756 | valid_add_flags = ctrl_ctx->add_flags >> 2; | 
|  | 1757 | valid_drop_flags = ctrl_ctx->drop_flags >> 2; | 
|  | 1758 |  | 
|  | 1759 | return hweight32(valid_drop_flags) - | 
|  | 1760 | hweight32(valid_add_flags & valid_drop_flags); | 
|  | 1761 | } | 
|  | 1762 |  | 
|  | 1763 | /* | 
|  | 1764 | * We need to reserve the new number of endpoints before the configure endpoint | 
|  | 1765 | * command completes.  We can't subtract the dropped endpoints from the number | 
|  | 1766 | * of active endpoints until the command completes because we can oversubscribe | 
|  | 1767 | * the host in this case: | 
|  | 1768 | * | 
|  | 1769 | *  - the first configure endpoint command drops more endpoints than it adds | 
|  | 1770 | *  - a second configure endpoint command that adds more endpoints is queued | 
|  | 1771 | *  - the first configure endpoint command fails, so the config is unchanged | 
|  | 1772 | *  - the second command may succeed, even though there isn't enough resources | 
|  | 1773 | * | 
|  | 1774 | * Must be called with xhci->lock held. | 
|  | 1775 | */ | 
|  | 1776 | static int xhci_reserve_host_resources(struct xhci_hcd *xhci, | 
|  | 1777 | struct xhci_container_ctx *in_ctx) | 
|  | 1778 | { | 
|  | 1779 | u32 added_eps; | 
|  | 1780 |  | 
|  | 1781 | added_eps = xhci_count_num_new_endpoints(xhci, in_ctx); | 
|  | 1782 | if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) { | 
|  | 1783 | xhci_dbg(xhci, "Not enough ep ctxs: " | 
|  | 1784 | "%u active, need to add %u, limit is %u.\n", | 
|  | 1785 | xhci->num_active_eps, added_eps, | 
|  | 1786 | xhci->limit_active_eps); | 
|  | 1787 | return -ENOMEM; | 
|  | 1788 | } | 
|  | 1789 | xhci->num_active_eps += added_eps; | 
|  | 1790 | xhci_dbg(xhci, "Adding %u ep ctxs, %u now active.\n", added_eps, | 
|  | 1791 | xhci->num_active_eps); | 
|  | 1792 | return 0; | 
|  | 1793 | } | 
|  | 1794 |  | 
|  | 1795 | /* | 
|  | 1796 | * The configure endpoint was failed by the xHC for some other reason, so we | 
|  | 1797 | * need to revert the resources that failed configuration would have used. | 
|  | 1798 | * | 
|  | 1799 | * Must be called with xhci->lock held. | 
|  | 1800 | */ | 
|  | 1801 | static void xhci_free_host_resources(struct xhci_hcd *xhci, | 
|  | 1802 | struct xhci_container_ctx *in_ctx) | 
|  | 1803 | { | 
|  | 1804 | u32 num_failed_eps; | 
|  | 1805 |  | 
|  | 1806 | num_failed_eps = xhci_count_num_new_endpoints(xhci, in_ctx); | 
|  | 1807 | xhci->num_active_eps -= num_failed_eps; | 
|  | 1808 | xhci_dbg(xhci, "Removing %u failed ep ctxs, %u now active.\n", | 
|  | 1809 | num_failed_eps, | 
|  | 1810 | xhci->num_active_eps); | 
|  | 1811 | } | 
|  | 1812 |  | 
|  | 1813 | /* | 
|  | 1814 | * Now that the command has completed, clean up the active endpoint count by | 
|  | 1815 | * subtracting out the endpoints that were dropped (but not changed). | 
|  | 1816 | * | 
|  | 1817 | * Must be called with xhci->lock held. | 
|  | 1818 | */ | 
|  | 1819 | static void xhci_finish_resource_reservation(struct xhci_hcd *xhci, | 
|  | 1820 | struct xhci_container_ctx *in_ctx) | 
|  | 1821 | { | 
|  | 1822 | u32 num_dropped_eps; | 
|  | 1823 |  | 
|  | 1824 | num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, in_ctx); | 
|  | 1825 | xhci->num_active_eps -= num_dropped_eps; | 
|  | 1826 | if (num_dropped_eps) | 
|  | 1827 | xhci_dbg(xhci, "Removing %u dropped ep ctxs, %u now active.\n", | 
|  | 1828 | num_dropped_eps, | 
|  | 1829 | xhci->num_active_eps); | 
|  | 1830 | } | 
|  | 1831 |  | 
| Sarah Sharp | c29eea6 | 2011-09-02 11:05:52 -0700 | [diff] [blame] | 1832 | unsigned int xhci_get_block_size(struct usb_device *udev) | 
|  | 1833 | { | 
|  | 1834 | switch (udev->speed) { | 
|  | 1835 | case USB_SPEED_LOW: | 
|  | 1836 | case USB_SPEED_FULL: | 
|  | 1837 | return FS_BLOCK; | 
|  | 1838 | case USB_SPEED_HIGH: | 
|  | 1839 | return HS_BLOCK; | 
|  | 1840 | case USB_SPEED_SUPER: | 
|  | 1841 | return SS_BLOCK; | 
|  | 1842 | case USB_SPEED_UNKNOWN: | 
|  | 1843 | case USB_SPEED_WIRELESS: | 
|  | 1844 | default: | 
|  | 1845 | /* Should never happen */ | 
|  | 1846 | return 1; | 
|  | 1847 | } | 
|  | 1848 | } | 
|  | 1849 |  | 
|  | 1850 | unsigned int xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw) | 
|  | 1851 | { | 
|  | 1852 | if (interval_bw->overhead[LS_OVERHEAD_TYPE]) | 
|  | 1853 | return LS_OVERHEAD; | 
|  | 1854 | if (interval_bw->overhead[FS_OVERHEAD_TYPE]) | 
|  | 1855 | return FS_OVERHEAD; | 
|  | 1856 | return HS_OVERHEAD; | 
|  | 1857 | } | 
|  | 1858 |  | 
|  | 1859 | /* If we are changing a LS/FS device under a HS hub, | 
|  | 1860 | * make sure (if we are activating a new TT) that the HS bus has enough | 
|  | 1861 | * bandwidth for this new TT. | 
|  | 1862 | */ | 
|  | 1863 | static int xhci_check_tt_bw_table(struct xhci_hcd *xhci, | 
|  | 1864 | struct xhci_virt_device *virt_dev, | 
|  | 1865 | int old_active_eps) | 
|  | 1866 | { | 
|  | 1867 | struct xhci_interval_bw_table *bw_table; | 
|  | 1868 | struct xhci_tt_bw_info *tt_info; | 
|  | 1869 |  | 
|  | 1870 | /* Find the bandwidth table for the root port this TT is attached to. */ | 
|  | 1871 | bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table; | 
|  | 1872 | tt_info = virt_dev->tt_info; | 
|  | 1873 | /* If this TT already had active endpoints, the bandwidth for this TT | 
|  | 1874 | * has already been added.  Removing all periodic endpoints (and thus | 
|  | 1875 | * making the TT enactive) will only decrease the bandwidth used. | 
|  | 1876 | */ | 
|  | 1877 | if (old_active_eps) | 
|  | 1878 | return 0; | 
|  | 1879 | if (old_active_eps == 0 && tt_info->active_eps != 0) { | 
|  | 1880 | if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT) | 
|  | 1881 | return -ENOMEM; | 
|  | 1882 | return 0; | 
|  | 1883 | } | 
|  | 1884 | /* Not sure why we would have no new active endpoints... | 
|  | 1885 | * | 
|  | 1886 | * Maybe because of an Evaluate Context change for a hub update or a | 
|  | 1887 | * control endpoint 0 max packet size change? | 
|  | 1888 | * FIXME: skip the bandwidth calculation in that case. | 
|  | 1889 | */ | 
|  | 1890 | return 0; | 
|  | 1891 | } | 
|  | 1892 |  | 
| Sarah Sharp | 2b69899 | 2011-09-13 16:41:13 -0700 | [diff] [blame] | 1893 | static int xhci_check_ss_bw(struct xhci_hcd *xhci, | 
|  | 1894 | struct xhci_virt_device *virt_dev) | 
|  | 1895 | { | 
|  | 1896 | unsigned int bw_reserved; | 
|  | 1897 |  | 
|  | 1898 | bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100); | 
|  | 1899 | if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved)) | 
|  | 1900 | return -ENOMEM; | 
|  | 1901 |  | 
|  | 1902 | bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100); | 
|  | 1903 | if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved)) | 
|  | 1904 | return -ENOMEM; | 
|  | 1905 |  | 
|  | 1906 | return 0; | 
|  | 1907 | } | 
|  | 1908 |  | 
| Sarah Sharp | c29eea6 | 2011-09-02 11:05:52 -0700 | [diff] [blame] | 1909 | /* | 
|  | 1910 | * This algorithm is a very conservative estimate of the worst-case scheduling | 
|  | 1911 | * scenario for any one interval.  The hardware dynamically schedules the | 
|  | 1912 | * packets, so we can't tell which microframe could be the limiting factor in | 
|  | 1913 | * the bandwidth scheduling.  This only takes into account periodic endpoints. | 
|  | 1914 | * | 
|  | 1915 | * Obviously, we can't solve an NP complete problem to find the minimum worst | 
|  | 1916 | * case scenario.  Instead, we come up with an estimate that is no less than | 
|  | 1917 | * the worst case bandwidth used for any one microframe, but may be an | 
|  | 1918 | * over-estimate. | 
|  | 1919 | * | 
|  | 1920 | * We walk the requirements for each endpoint by interval, starting with the | 
|  | 1921 | * smallest interval, and place packets in the schedule where there is only one | 
|  | 1922 | * possible way to schedule packets for that interval.  In order to simplify | 
|  | 1923 | * this algorithm, we record the largest max packet size for each interval, and | 
|  | 1924 | * assume all packets will be that size. | 
|  | 1925 | * | 
|  | 1926 | * For interval 0, we obviously must schedule all packets for each interval. | 
|  | 1927 | * The bandwidth for interval 0 is just the amount of data to be transmitted | 
|  | 1928 | * (the sum of all max ESIT payload sizes, plus any overhead per packet times | 
|  | 1929 | * the number of packets). | 
|  | 1930 | * | 
|  | 1931 | * For interval 1, we have two possible microframes to schedule those packets | 
|  | 1932 | * in.  For this algorithm, if we can schedule the same number of packets for | 
|  | 1933 | * each possible scheduling opportunity (each microframe), we will do so.  The | 
|  | 1934 | * remaining number of packets will be saved to be transmitted in the gaps in | 
|  | 1935 | * the next interval's scheduling sequence. | 
|  | 1936 | * | 
|  | 1937 | * As we move those remaining packets to be scheduled with interval 2 packets, | 
|  | 1938 | * we have to double the number of remaining packets to transmit.  This is | 
|  | 1939 | * because the intervals are actually powers of 2, and we would be transmitting | 
|  | 1940 | * the previous interval's packets twice in this interval.  We also have to be | 
|  | 1941 | * sure that when we look at the largest max packet size for this interval, we | 
|  | 1942 | * also look at the largest max packet size for the remaining packets and take | 
|  | 1943 | * the greater of the two. | 
|  | 1944 | * | 
|  | 1945 | * The algorithm continues to evenly distribute packets in each scheduling | 
|  | 1946 | * opportunity, and push the remaining packets out, until we get to the last | 
|  | 1947 | * interval.  Then those packets and their associated overhead are just added | 
|  | 1948 | * to the bandwidth used. | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 1949 | */ | 
|  | 1950 | static int xhci_check_bw_table(struct xhci_hcd *xhci, | 
|  | 1951 | struct xhci_virt_device *virt_dev, | 
|  | 1952 | int old_active_eps) | 
|  | 1953 | { | 
| Sarah Sharp | c29eea6 | 2011-09-02 11:05:52 -0700 | [diff] [blame] | 1954 | unsigned int bw_reserved; | 
|  | 1955 | unsigned int max_bandwidth; | 
|  | 1956 | unsigned int bw_used; | 
|  | 1957 | unsigned int block_size; | 
|  | 1958 | struct xhci_interval_bw_table *bw_table; | 
|  | 1959 | unsigned int packet_size = 0; | 
|  | 1960 | unsigned int overhead = 0; | 
|  | 1961 | unsigned int packets_transmitted = 0; | 
|  | 1962 | unsigned int packets_remaining = 0; | 
|  | 1963 | unsigned int i; | 
|  | 1964 |  | 
| Sarah Sharp | 2b69899 | 2011-09-13 16:41:13 -0700 | [diff] [blame] | 1965 | if (virt_dev->udev->speed == USB_SPEED_SUPER) | 
|  | 1966 | return xhci_check_ss_bw(xhci, virt_dev); | 
|  | 1967 |  | 
| Sarah Sharp | c29eea6 | 2011-09-02 11:05:52 -0700 | [diff] [blame] | 1968 | if (virt_dev->udev->speed == USB_SPEED_HIGH) { | 
|  | 1969 | max_bandwidth = HS_BW_LIMIT; | 
|  | 1970 | /* Convert percent of bus BW reserved to blocks reserved */ | 
|  | 1971 | bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100); | 
|  | 1972 | } else { | 
|  | 1973 | max_bandwidth = FS_BW_LIMIT; | 
|  | 1974 | bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100); | 
|  | 1975 | } | 
|  | 1976 |  | 
|  | 1977 | bw_table = virt_dev->bw_table; | 
|  | 1978 | /* We need to translate the max packet size and max ESIT payloads into | 
|  | 1979 | * the units the hardware uses. | 
|  | 1980 | */ | 
|  | 1981 | block_size = xhci_get_block_size(virt_dev->udev); | 
|  | 1982 |  | 
|  | 1983 | /* If we are manipulating a LS/FS device under a HS hub, double check | 
|  | 1984 | * that the HS bus has enough bandwidth if we are activing a new TT. | 
|  | 1985 | */ | 
|  | 1986 | if (virt_dev->tt_info) { | 
|  | 1987 | xhci_dbg(xhci, "Recalculating BW for rootport %u\n", | 
|  | 1988 | virt_dev->real_port); | 
|  | 1989 | if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) { | 
|  | 1990 | xhci_warn(xhci, "Not enough bandwidth on HS bus for " | 
|  | 1991 | "newly activated TT.\n"); | 
|  | 1992 | return -ENOMEM; | 
|  | 1993 | } | 
|  | 1994 | xhci_dbg(xhci, "Recalculating BW for TT slot %u port %u\n", | 
|  | 1995 | virt_dev->tt_info->slot_id, | 
|  | 1996 | virt_dev->tt_info->ttport); | 
|  | 1997 | } else { | 
|  | 1998 | xhci_dbg(xhci, "Recalculating BW for rootport %u\n", | 
|  | 1999 | virt_dev->real_port); | 
|  | 2000 | } | 
|  | 2001 |  | 
|  | 2002 | /* Add in how much bandwidth will be used for interval zero, or the | 
|  | 2003 | * rounded max ESIT payload + number of packets * largest overhead. | 
|  | 2004 | */ | 
|  | 2005 | bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) + | 
|  | 2006 | bw_table->interval_bw[0].num_packets * | 
|  | 2007 | xhci_get_largest_overhead(&bw_table->interval_bw[0]); | 
|  | 2008 |  | 
|  | 2009 | for (i = 1; i < XHCI_MAX_INTERVAL; i++) { | 
|  | 2010 | unsigned int bw_added; | 
|  | 2011 | unsigned int largest_mps; | 
|  | 2012 | unsigned int interval_overhead; | 
|  | 2013 |  | 
|  | 2014 | /* | 
|  | 2015 | * How many packets could we transmit in this interval? | 
|  | 2016 | * If packets didn't fit in the previous interval, we will need | 
|  | 2017 | * to transmit that many packets twice within this interval. | 
|  | 2018 | */ | 
|  | 2019 | packets_remaining = 2 * packets_remaining + | 
|  | 2020 | bw_table->interval_bw[i].num_packets; | 
|  | 2021 |  | 
|  | 2022 | /* Find the largest max packet size of this or the previous | 
|  | 2023 | * interval. | 
|  | 2024 | */ | 
|  | 2025 | if (list_empty(&bw_table->interval_bw[i].endpoints)) | 
|  | 2026 | largest_mps = 0; | 
|  | 2027 | else { | 
|  | 2028 | struct xhci_virt_ep *virt_ep; | 
|  | 2029 | struct list_head *ep_entry; | 
|  | 2030 |  | 
|  | 2031 | ep_entry = bw_table->interval_bw[i].endpoints.next; | 
|  | 2032 | virt_ep = list_entry(ep_entry, | 
|  | 2033 | struct xhci_virt_ep, bw_endpoint_list); | 
|  | 2034 | /* Convert to blocks, rounding up */ | 
|  | 2035 | largest_mps = DIV_ROUND_UP( | 
|  | 2036 | virt_ep->bw_info.max_packet_size, | 
|  | 2037 | block_size); | 
|  | 2038 | } | 
|  | 2039 | if (largest_mps > packet_size) | 
|  | 2040 | packet_size = largest_mps; | 
|  | 2041 |  | 
|  | 2042 | /* Use the larger overhead of this or the previous interval. */ | 
|  | 2043 | interval_overhead = xhci_get_largest_overhead( | 
|  | 2044 | &bw_table->interval_bw[i]); | 
|  | 2045 | if (interval_overhead > overhead) | 
|  | 2046 | overhead = interval_overhead; | 
|  | 2047 |  | 
|  | 2048 | /* How many packets can we evenly distribute across | 
|  | 2049 | * (1 << (i + 1)) possible scheduling opportunities? | 
|  | 2050 | */ | 
|  | 2051 | packets_transmitted = packets_remaining >> (i + 1); | 
|  | 2052 |  | 
|  | 2053 | /* Add in the bandwidth used for those scheduled packets */ | 
|  | 2054 | bw_added = packets_transmitted * (overhead + packet_size); | 
|  | 2055 |  | 
|  | 2056 | /* How many packets do we have remaining to transmit? */ | 
|  | 2057 | packets_remaining = packets_remaining % (1 << (i + 1)); | 
|  | 2058 |  | 
|  | 2059 | /* What largest max packet size should those packets have? */ | 
|  | 2060 | /* If we've transmitted all packets, don't carry over the | 
|  | 2061 | * largest packet size. | 
|  | 2062 | */ | 
|  | 2063 | if (packets_remaining == 0) { | 
|  | 2064 | packet_size = 0; | 
|  | 2065 | overhead = 0; | 
|  | 2066 | } else if (packets_transmitted > 0) { | 
|  | 2067 | /* Otherwise if we do have remaining packets, and we've | 
|  | 2068 | * scheduled some packets in this interval, take the | 
|  | 2069 | * largest max packet size from endpoints with this | 
|  | 2070 | * interval. | 
|  | 2071 | */ | 
|  | 2072 | packet_size = largest_mps; | 
|  | 2073 | overhead = interval_overhead; | 
|  | 2074 | } | 
|  | 2075 | /* Otherwise carry over packet_size and overhead from the last | 
|  | 2076 | * time we had a remainder. | 
|  | 2077 | */ | 
|  | 2078 | bw_used += bw_added; | 
|  | 2079 | if (bw_used > max_bandwidth) { | 
|  | 2080 | xhci_warn(xhci, "Not enough bandwidth. " | 
|  | 2081 | "Proposed: %u, Max: %u\n", | 
|  | 2082 | bw_used, max_bandwidth); | 
|  | 2083 | return -ENOMEM; | 
|  | 2084 | } | 
|  | 2085 | } | 
|  | 2086 | /* | 
|  | 2087 | * Ok, we know we have some packets left over after even-handedly | 
|  | 2088 | * scheduling interval 15.  We don't know which microframes they will | 
|  | 2089 | * fit into, so we over-schedule and say they will be scheduled every | 
|  | 2090 | * microframe. | 
|  | 2091 | */ | 
|  | 2092 | if (packets_remaining > 0) | 
|  | 2093 | bw_used += overhead + packet_size; | 
|  | 2094 |  | 
|  | 2095 | if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) { | 
|  | 2096 | unsigned int port_index = virt_dev->real_port - 1; | 
|  | 2097 |  | 
|  | 2098 | /* OK, we're manipulating a HS device attached to a | 
|  | 2099 | * root port bandwidth domain.  Include the number of active TTs | 
|  | 2100 | * in the bandwidth used. | 
|  | 2101 | */ | 
|  | 2102 | bw_used += TT_HS_OVERHEAD * | 
|  | 2103 | xhci->rh_bw[port_index].num_active_tts; | 
|  | 2104 | } | 
|  | 2105 |  | 
|  | 2106 | xhci_dbg(xhci, "Final bandwidth: %u, Limit: %u, Reserved: %u, " | 
|  | 2107 | "Available: %u " "percent\n", | 
|  | 2108 | bw_used, max_bandwidth, bw_reserved, | 
|  | 2109 | (max_bandwidth - bw_used - bw_reserved) * 100 / | 
|  | 2110 | max_bandwidth); | 
|  | 2111 |  | 
|  | 2112 | bw_used += bw_reserved; | 
|  | 2113 | if (bw_used > max_bandwidth) { | 
|  | 2114 | xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n", | 
|  | 2115 | bw_used, max_bandwidth); | 
|  | 2116 | return -ENOMEM; | 
|  | 2117 | } | 
|  | 2118 |  | 
|  | 2119 | bw_table->bw_used = bw_used; | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2120 | return 0; | 
|  | 2121 | } | 
|  | 2122 |  | 
|  | 2123 | static bool xhci_is_async_ep(unsigned int ep_type) | 
|  | 2124 | { | 
|  | 2125 | return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP && | 
|  | 2126 | ep_type != ISOC_IN_EP && | 
|  | 2127 | ep_type != INT_IN_EP); | 
|  | 2128 | } | 
|  | 2129 |  | 
| Sarah Sharp | 2b69899 | 2011-09-13 16:41:13 -0700 | [diff] [blame] | 2130 | static bool xhci_is_sync_in_ep(unsigned int ep_type) | 
|  | 2131 | { | 
|  | 2132 | return (ep_type == ISOC_IN_EP || ep_type != INT_IN_EP); | 
|  | 2133 | } | 
|  | 2134 |  | 
|  | 2135 | static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw) | 
|  | 2136 | { | 
|  | 2137 | unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK); | 
|  | 2138 |  | 
|  | 2139 | if (ep_bw->ep_interval == 0) | 
|  | 2140 | return SS_OVERHEAD_BURST + | 
|  | 2141 | (ep_bw->mult * ep_bw->num_packets * | 
|  | 2142 | (SS_OVERHEAD + mps)); | 
|  | 2143 | return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets * | 
|  | 2144 | (SS_OVERHEAD + mps + SS_OVERHEAD_BURST), | 
|  | 2145 | 1 << ep_bw->ep_interval); | 
|  | 2146 |  | 
|  | 2147 | } | 
|  | 2148 |  | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2149 | void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci, | 
|  | 2150 | struct xhci_bw_info *ep_bw, | 
|  | 2151 | struct xhci_interval_bw_table *bw_table, | 
|  | 2152 | struct usb_device *udev, | 
|  | 2153 | struct xhci_virt_ep *virt_ep, | 
|  | 2154 | struct xhci_tt_bw_info *tt_info) | 
|  | 2155 | { | 
|  | 2156 | struct xhci_interval_bw	*interval_bw; | 
|  | 2157 | int normalized_interval; | 
|  | 2158 |  | 
| Sarah Sharp | 2b69899 | 2011-09-13 16:41:13 -0700 | [diff] [blame] | 2159 | if (xhci_is_async_ep(ep_bw->type)) | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2160 | return; | 
|  | 2161 |  | 
| Sarah Sharp | 2b69899 | 2011-09-13 16:41:13 -0700 | [diff] [blame] | 2162 | if (udev->speed == USB_SPEED_SUPER) { | 
|  | 2163 | if (xhci_is_sync_in_ep(ep_bw->type)) | 
|  | 2164 | xhci->devs[udev->slot_id]->bw_table->ss_bw_in -= | 
|  | 2165 | xhci_get_ss_bw_consumed(ep_bw); | 
|  | 2166 | else | 
|  | 2167 | xhci->devs[udev->slot_id]->bw_table->ss_bw_out -= | 
|  | 2168 | xhci_get_ss_bw_consumed(ep_bw); | 
|  | 2169 | return; | 
|  | 2170 | } | 
|  | 2171 |  | 
|  | 2172 | /* SuperSpeed endpoints never get added to intervals in the table, so | 
|  | 2173 | * this check is only valid for HS/FS/LS devices. | 
|  | 2174 | */ | 
|  | 2175 | if (list_empty(&virt_ep->bw_endpoint_list)) | 
|  | 2176 | return; | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2177 | /* For LS/FS devices, we need to translate the interval expressed in | 
|  | 2178 | * microframes to frames. | 
|  | 2179 | */ | 
|  | 2180 | if (udev->speed == USB_SPEED_HIGH) | 
|  | 2181 | normalized_interval = ep_bw->ep_interval; | 
|  | 2182 | else | 
|  | 2183 | normalized_interval = ep_bw->ep_interval - 3; | 
|  | 2184 |  | 
|  | 2185 | if (normalized_interval == 0) | 
|  | 2186 | bw_table->interval0_esit_payload -= ep_bw->max_esit_payload; | 
|  | 2187 | interval_bw = &bw_table->interval_bw[normalized_interval]; | 
|  | 2188 | interval_bw->num_packets -= ep_bw->num_packets; | 
|  | 2189 | switch (udev->speed) { | 
|  | 2190 | case USB_SPEED_LOW: | 
|  | 2191 | interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1; | 
|  | 2192 | break; | 
|  | 2193 | case USB_SPEED_FULL: | 
|  | 2194 | interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1; | 
|  | 2195 | break; | 
|  | 2196 | case USB_SPEED_HIGH: | 
|  | 2197 | interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1; | 
|  | 2198 | break; | 
|  | 2199 | case USB_SPEED_SUPER: | 
|  | 2200 | case USB_SPEED_UNKNOWN: | 
|  | 2201 | case USB_SPEED_WIRELESS: | 
|  | 2202 | /* Should never happen because only LS/FS/HS endpoints will get | 
|  | 2203 | * added to the endpoint list. | 
|  | 2204 | */ | 
|  | 2205 | return; | 
|  | 2206 | } | 
|  | 2207 | if (tt_info) | 
|  | 2208 | tt_info->active_eps -= 1; | 
|  | 2209 | list_del_init(&virt_ep->bw_endpoint_list); | 
|  | 2210 | } | 
|  | 2211 |  | 
|  | 2212 | static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci, | 
|  | 2213 | struct xhci_bw_info *ep_bw, | 
|  | 2214 | struct xhci_interval_bw_table *bw_table, | 
|  | 2215 | struct usb_device *udev, | 
|  | 2216 | struct xhci_virt_ep *virt_ep, | 
|  | 2217 | struct xhci_tt_bw_info *tt_info) | 
|  | 2218 | { | 
|  | 2219 | struct xhci_interval_bw	*interval_bw; | 
|  | 2220 | struct xhci_virt_ep *smaller_ep; | 
|  | 2221 | int normalized_interval; | 
|  | 2222 |  | 
|  | 2223 | if (xhci_is_async_ep(ep_bw->type)) | 
|  | 2224 | return; | 
|  | 2225 |  | 
| Sarah Sharp | 2b69899 | 2011-09-13 16:41:13 -0700 | [diff] [blame] | 2226 | if (udev->speed == USB_SPEED_SUPER) { | 
|  | 2227 | if (xhci_is_sync_in_ep(ep_bw->type)) | 
|  | 2228 | xhci->devs[udev->slot_id]->bw_table->ss_bw_in += | 
|  | 2229 | xhci_get_ss_bw_consumed(ep_bw); | 
|  | 2230 | else | 
|  | 2231 | xhci->devs[udev->slot_id]->bw_table->ss_bw_out += | 
|  | 2232 | xhci_get_ss_bw_consumed(ep_bw); | 
|  | 2233 | return; | 
|  | 2234 | } | 
|  | 2235 |  | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2236 | /* For LS/FS devices, we need to translate the interval expressed in | 
|  | 2237 | * microframes to frames. | 
|  | 2238 | */ | 
|  | 2239 | if (udev->speed == USB_SPEED_HIGH) | 
|  | 2240 | normalized_interval = ep_bw->ep_interval; | 
|  | 2241 | else | 
|  | 2242 | normalized_interval = ep_bw->ep_interval - 3; | 
|  | 2243 |  | 
|  | 2244 | if (normalized_interval == 0) | 
|  | 2245 | bw_table->interval0_esit_payload += ep_bw->max_esit_payload; | 
|  | 2246 | interval_bw = &bw_table->interval_bw[normalized_interval]; | 
|  | 2247 | interval_bw->num_packets += ep_bw->num_packets; | 
|  | 2248 | switch (udev->speed) { | 
|  | 2249 | case USB_SPEED_LOW: | 
|  | 2250 | interval_bw->overhead[LS_OVERHEAD_TYPE] += 1; | 
|  | 2251 | break; | 
|  | 2252 | case USB_SPEED_FULL: | 
|  | 2253 | interval_bw->overhead[FS_OVERHEAD_TYPE] += 1; | 
|  | 2254 | break; | 
|  | 2255 | case USB_SPEED_HIGH: | 
|  | 2256 | interval_bw->overhead[HS_OVERHEAD_TYPE] += 1; | 
|  | 2257 | break; | 
|  | 2258 | case USB_SPEED_SUPER: | 
|  | 2259 | case USB_SPEED_UNKNOWN: | 
|  | 2260 | case USB_SPEED_WIRELESS: | 
|  | 2261 | /* Should never happen because only LS/FS/HS endpoints will get | 
|  | 2262 | * added to the endpoint list. | 
|  | 2263 | */ | 
|  | 2264 | return; | 
|  | 2265 | } | 
|  | 2266 |  | 
|  | 2267 | if (tt_info) | 
|  | 2268 | tt_info->active_eps += 1; | 
|  | 2269 | /* Insert the endpoint into the list, largest max packet size first. */ | 
|  | 2270 | list_for_each_entry(smaller_ep, &interval_bw->endpoints, | 
|  | 2271 | bw_endpoint_list) { | 
|  | 2272 | if (ep_bw->max_packet_size >= | 
|  | 2273 | smaller_ep->bw_info.max_packet_size) { | 
|  | 2274 | /* Add the new ep before the smaller endpoint */ | 
|  | 2275 | list_add_tail(&virt_ep->bw_endpoint_list, | 
|  | 2276 | &smaller_ep->bw_endpoint_list); | 
|  | 2277 | return; | 
|  | 2278 | } | 
|  | 2279 | } | 
|  | 2280 | /* Add the new endpoint at the end of the list. */ | 
|  | 2281 | list_add_tail(&virt_ep->bw_endpoint_list, | 
|  | 2282 | &interval_bw->endpoints); | 
|  | 2283 | } | 
|  | 2284 |  | 
|  | 2285 | void xhci_update_tt_active_eps(struct xhci_hcd *xhci, | 
|  | 2286 | struct xhci_virt_device *virt_dev, | 
|  | 2287 | int old_active_eps) | 
|  | 2288 | { | 
|  | 2289 | struct xhci_root_port_bw_info *rh_bw_info; | 
|  | 2290 | if (!virt_dev->tt_info) | 
|  | 2291 | return; | 
|  | 2292 |  | 
|  | 2293 | rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1]; | 
|  | 2294 | if (old_active_eps == 0 && | 
|  | 2295 | virt_dev->tt_info->active_eps != 0) { | 
|  | 2296 | rh_bw_info->num_active_tts += 1; | 
| Sarah Sharp | c29eea6 | 2011-09-02 11:05:52 -0700 | [diff] [blame] | 2297 | rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD; | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2298 | } else if (old_active_eps != 0 && | 
|  | 2299 | virt_dev->tt_info->active_eps == 0) { | 
|  | 2300 | rh_bw_info->num_active_tts -= 1; | 
| Sarah Sharp | c29eea6 | 2011-09-02 11:05:52 -0700 | [diff] [blame] | 2301 | rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD; | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2302 | } | 
|  | 2303 | } | 
|  | 2304 |  | 
|  | 2305 | static int xhci_reserve_bandwidth(struct xhci_hcd *xhci, | 
|  | 2306 | struct xhci_virt_device *virt_dev, | 
|  | 2307 | struct xhci_container_ctx *in_ctx) | 
|  | 2308 | { | 
|  | 2309 | struct xhci_bw_info ep_bw_info[31]; | 
|  | 2310 | int i; | 
|  | 2311 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 2312 | int old_active_eps = 0; | 
|  | 2313 |  | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2314 | if (virt_dev->tt_info) | 
|  | 2315 | old_active_eps = virt_dev->tt_info->active_eps; | 
|  | 2316 |  | 
|  | 2317 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
|  | 2318 |  | 
|  | 2319 | for (i = 0; i < 31; i++) { | 
|  | 2320 | if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i)) | 
|  | 2321 | continue; | 
|  | 2322 |  | 
|  | 2323 | /* Make a copy of the BW info in case we need to revert this */ | 
|  | 2324 | memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info, | 
|  | 2325 | sizeof(ep_bw_info[i])); | 
|  | 2326 | /* Drop the endpoint from the interval table if the endpoint is | 
|  | 2327 | * being dropped or changed. | 
|  | 2328 | */ | 
|  | 2329 | if (EP_IS_DROPPED(ctrl_ctx, i)) | 
|  | 2330 | xhci_drop_ep_from_interval_table(xhci, | 
|  | 2331 | &virt_dev->eps[i].bw_info, | 
|  | 2332 | virt_dev->bw_table, | 
|  | 2333 | virt_dev->udev, | 
|  | 2334 | &virt_dev->eps[i], | 
|  | 2335 | virt_dev->tt_info); | 
|  | 2336 | } | 
|  | 2337 | /* Overwrite the information stored in the endpoints' bw_info */ | 
|  | 2338 | xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev); | 
|  | 2339 | for (i = 0; i < 31; i++) { | 
|  | 2340 | /* Add any changed or added endpoints to the interval table */ | 
|  | 2341 | if (EP_IS_ADDED(ctrl_ctx, i)) | 
|  | 2342 | xhci_add_ep_to_interval_table(xhci, | 
|  | 2343 | &virt_dev->eps[i].bw_info, | 
|  | 2344 | virt_dev->bw_table, | 
|  | 2345 | virt_dev->udev, | 
|  | 2346 | &virt_dev->eps[i], | 
|  | 2347 | virt_dev->tt_info); | 
|  | 2348 | } | 
|  | 2349 |  | 
|  | 2350 | if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) { | 
|  | 2351 | /* Ok, this fits in the bandwidth we have. | 
|  | 2352 | * Update the number of active TTs. | 
|  | 2353 | */ | 
|  | 2354 | xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps); | 
|  | 2355 | return 0; | 
|  | 2356 | } | 
|  | 2357 |  | 
|  | 2358 | /* We don't have enough bandwidth for this, revert the stored info. */ | 
|  | 2359 | for (i = 0; i < 31; i++) { | 
|  | 2360 | if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i)) | 
|  | 2361 | continue; | 
|  | 2362 |  | 
|  | 2363 | /* Drop the new copies of any added or changed endpoints from | 
|  | 2364 | * the interval table. | 
|  | 2365 | */ | 
|  | 2366 | if (EP_IS_ADDED(ctrl_ctx, i)) { | 
|  | 2367 | xhci_drop_ep_from_interval_table(xhci, | 
|  | 2368 | &virt_dev->eps[i].bw_info, | 
|  | 2369 | virt_dev->bw_table, | 
|  | 2370 | virt_dev->udev, | 
|  | 2371 | &virt_dev->eps[i], | 
|  | 2372 | virt_dev->tt_info); | 
|  | 2373 | } | 
|  | 2374 | /* Revert the endpoint back to its old information */ | 
|  | 2375 | memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i], | 
|  | 2376 | sizeof(ep_bw_info[i])); | 
|  | 2377 | /* Add any changed or dropped endpoints back into the table */ | 
|  | 2378 | if (EP_IS_DROPPED(ctrl_ctx, i)) | 
|  | 2379 | xhci_add_ep_to_interval_table(xhci, | 
|  | 2380 | &virt_dev->eps[i].bw_info, | 
|  | 2381 | virt_dev->bw_table, | 
|  | 2382 | virt_dev->udev, | 
|  | 2383 | &virt_dev->eps[i], | 
|  | 2384 | virt_dev->tt_info); | 
|  | 2385 | } | 
|  | 2386 | return -ENOMEM; | 
|  | 2387 | } | 
|  | 2388 |  | 
|  | 2389 |  | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2390 | /* Issue a configure endpoint command or evaluate context command | 
|  | 2391 | * and wait for it to finish. | 
|  | 2392 | */ | 
|  | 2393 | static int xhci_configure_endpoint(struct xhci_hcd *xhci, | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2394 | struct usb_device *udev, | 
|  | 2395 | struct xhci_command *command, | 
|  | 2396 | bool ctx_change, bool must_succeed) | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2397 | { | 
|  | 2398 | int ret; | 
|  | 2399 | int timeleft; | 
|  | 2400 | unsigned long flags; | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2401 | struct xhci_container_ctx *in_ctx; | 
|  | 2402 | struct completion *cmd_completion; | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2403 | u32 *cmd_status; | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2404 | struct xhci_virt_device *virt_dev; | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2405 |  | 
|  | 2406 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2407 | virt_dev = xhci->devs[udev->slot_id]; | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 2408 |  | 
| Sarah Sharp | 750645f | 2011-09-02 11:05:43 -0700 | [diff] [blame] | 2409 | if (command) | 
|  | 2410 | in_ctx = command->in_ctx; | 
|  | 2411 | else | 
|  | 2412 | in_ctx = virt_dev->in_ctx; | 
|  | 2413 |  | 
|  | 2414 | if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) && | 
|  | 2415 | xhci_reserve_host_resources(xhci, in_ctx)) { | 
|  | 2416 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2417 | xhci_warn(xhci, "Not enough host resources, " | 
|  | 2418 | "active endpoint contexts = %u\n", | 
|  | 2419 | xhci->num_active_eps); | 
|  | 2420 | return -ENOMEM; | 
|  | 2421 | } | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 2422 | if ((xhci->quirks & XHCI_SW_BW_CHECKING) && | 
|  | 2423 | xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) { | 
|  | 2424 | if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) | 
|  | 2425 | xhci_free_host_resources(xhci, in_ctx); | 
|  | 2426 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2427 | xhci_warn(xhci, "Not enough bandwidth\n"); | 
|  | 2428 | return -ENOMEM; | 
|  | 2429 | } | 
| Sarah Sharp | 750645f | 2011-09-02 11:05:43 -0700 | [diff] [blame] | 2430 |  | 
|  | 2431 | if (command) { | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2432 | cmd_completion = command->completion; | 
|  | 2433 | cmd_status = &command->status; | 
|  | 2434 | command->command_trb = xhci->cmd_ring->enqueue; | 
| Paul Zimmerman | 7a3783e | 2010-11-17 16:26:50 -0800 | [diff] [blame] | 2435 |  | 
|  | 2436 | /* Enqueue pointer can be left pointing to the link TRB, | 
|  | 2437 | * we must handle that | 
|  | 2438 | */ | 
| Matt Evans | f5960b6 | 2011-06-01 10:22:55 +1000 | [diff] [blame] | 2439 | if (TRB_TYPE_LINK_LE32(command->command_trb->link.control)) | 
| Paul Zimmerman | 7a3783e | 2010-11-17 16:26:50 -0800 | [diff] [blame] | 2440 | command->command_trb = | 
|  | 2441 | xhci->cmd_ring->enq_seg->next->trbs; | 
|  | 2442 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2443 | list_add_tail(&command->cmd_list, &virt_dev->cmd_list); | 
|  | 2444 | } else { | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2445 | cmd_completion = &virt_dev->cmd_completion; | 
|  | 2446 | cmd_status = &virt_dev->cmd_status; | 
|  | 2447 | } | 
| Andiry Xu | 1d68064 | 2010-03-12 17:10:04 +0800 | [diff] [blame] | 2448 | init_completion(cmd_completion); | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2449 |  | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2450 | if (!ctx_change) | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2451 | ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma, | 
|  | 2452 | udev->slot_id, must_succeed); | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2453 | else | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2454 | ret = xhci_queue_evaluate_context(xhci, in_ctx->dma, | 
| Sarah Sharp | 4b26654 | 2012-05-07 15:34:26 -0700 | [diff] [blame] | 2455 | udev->slot_id, must_succeed); | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2456 | if (ret < 0) { | 
| Sarah Sharp | c01591b | 2009-12-09 15:58:58 -0800 | [diff] [blame] | 2457 | if (command) | 
|  | 2458 | list_del(&command->cmd_list); | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 2459 | if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) | 
|  | 2460 | xhci_free_host_resources(xhci, in_ctx); | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2461 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2462 | xhci_dbg(xhci, "FIXME allocate a new ring segment\n"); | 
|  | 2463 | return -ENOMEM; | 
|  | 2464 | } | 
|  | 2465 | xhci_ring_cmd_db(xhci); | 
|  | 2466 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2467 |  | 
|  | 2468 | /* Wait for the configure endpoint command to complete */ | 
|  | 2469 | timeleft = wait_for_completion_interruptible_timeout( | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2470 | cmd_completion, | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2471 | USB_CTRL_SET_TIMEOUT); | 
|  | 2472 | if (timeleft <= 0) { | 
|  | 2473 | xhci_warn(xhci, "%s while waiting for %s command\n", | 
|  | 2474 | timeleft == 0 ? "Timeout" : "Signal", | 
|  | 2475 | ctx_change == 0 ? | 
|  | 2476 | "configure endpoint" : | 
|  | 2477 | "evaluate context"); | 
|  | 2478 | /* FIXME cancel the configure endpoint command */ | 
|  | 2479 | return -ETIME; | 
|  | 2480 | } | 
|  | 2481 |  | 
|  | 2482 | if (!ctx_change) | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 2483 | ret = xhci_configure_endpoint_result(xhci, udev, cmd_status); | 
|  | 2484 | else | 
|  | 2485 | ret = xhci_evaluate_context_result(xhci, udev, cmd_status); | 
|  | 2486 |  | 
|  | 2487 | if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) { | 
|  | 2488 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 2489 | /* If the command failed, remove the reserved resources. | 
|  | 2490 | * Otherwise, clean up the estimate to include dropped eps. | 
|  | 2491 | */ | 
|  | 2492 | if (ret) | 
|  | 2493 | xhci_free_host_resources(xhci, in_ctx); | 
|  | 2494 | else | 
|  | 2495 | xhci_finish_resource_reservation(xhci, in_ctx); | 
|  | 2496 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2497 | } | 
|  | 2498 | return ret; | 
| Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 2499 | } | 
|  | 2500 |  | 
| Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 2501 | /* Called after one or more calls to xhci_add_endpoint() or | 
|  | 2502 | * xhci_drop_endpoint().  If this call fails, the USB core is expected | 
|  | 2503 | * to call xhci_reset_bandwidth(). | 
|  | 2504 | * | 
|  | 2505 | * Since we are in the middle of changing either configuration or | 
|  | 2506 | * installing a new alt setting, the USB core won't allow URBs to be | 
|  | 2507 | * enqueued for any endpoint on the old config or interface.  Nothing | 
|  | 2508 | * else should be touching the xhci->devs[slot_id] structure, so we | 
|  | 2509 | * don't need to take the xhci->lock for manipulating that. | 
|  | 2510 | */ | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2511 | int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 2512 | { | 
|  | 2513 | int i; | 
|  | 2514 | int ret = 0; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2515 | struct xhci_hcd *xhci; | 
|  | 2516 | struct xhci_virt_device	*virt_dev; | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 2517 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 2518 | struct xhci_slot_ctx *slot_ctx; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2519 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 2520 | ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2521 | if (ret <= 0) | 
|  | 2522 | return ret; | 
|  | 2523 | xhci = hcd_to_xhci(hcd); | 
| Sarah Sharp | fe6c6c1 | 2011-05-23 16:41:17 -0700 | [diff] [blame] | 2524 | if (xhci->xhc_state & XHCI_STATE_DYING) | 
|  | 2525 | return -ENODEV; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2526 |  | 
| Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 2527 | xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2528 | virt_dev = xhci->devs[udev->slot_id]; | 
|  | 2529 |  | 
|  | 2530 | /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */ | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 2531 | ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2532 | ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG); | 
|  | 2533 | ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG); | 
|  | 2534 | ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG)); | 
| Sarah Sharp | 2dc3753 | 2011-09-02 11:05:40 -0700 | [diff] [blame] | 2535 |  | 
|  | 2536 | /* Don't issue the command if there's no endpoints to update. */ | 
|  | 2537 | if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) && | 
|  | 2538 | ctrl_ctx->drop_flags == 0) | 
|  | 2539 | return 0; | 
|  | 2540 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2541 | xhci_dbg(xhci, "New Input Control Context:\n"); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 2542 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); | 
|  | 2543 | xhci_dbg_ctx(xhci, virt_dev->in_ctx, | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2544 | LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info))); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2545 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2546 | ret = xhci_configure_endpoint(xhci, udev, NULL, | 
|  | 2547 | false, false); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2548 | if (ret) { | 
|  | 2549 | /* Callee should call reset_bandwidth() */ | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2550 | return ret; | 
|  | 2551 | } | 
|  | 2552 |  | 
|  | 2553 | xhci_dbg(xhci, "Output context after successful config ep cmd:\n"); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 2554 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2555 | LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info))); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2556 |  | 
| Sarah Sharp | 834cb0f | 2011-05-12 18:06:37 -0700 | [diff] [blame] | 2557 | /* Free any rings that were dropped, but not changed. */ | 
|  | 2558 | for (i = 1; i < 31; ++i) { | 
| Matt Evans | 4819fef | 2011-06-01 13:01:07 +1000 | [diff] [blame] | 2559 | if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) && | 
|  | 2560 | !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))) | 
| Sarah Sharp | 834cb0f | 2011-05-12 18:06:37 -0700 | [diff] [blame] | 2561 | xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i); | 
|  | 2562 | } | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 2563 | xhci_zero_in_ctx(xhci, virt_dev); | 
| Sarah Sharp | 834cb0f | 2011-05-12 18:06:37 -0700 | [diff] [blame] | 2564 | /* | 
|  | 2565 | * Install any rings for completely new endpoints or changed endpoints, | 
|  | 2566 | * and free or cache any old rings from changed endpoints. | 
|  | 2567 | */ | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2568 | for (i = 1; i < 31; ++i) { | 
| Sarah Sharp | 74f9fe2 | 2009-12-03 09:44:29 -0800 | [diff] [blame] | 2569 | if (!virt_dev->eps[i].new_ring) | 
|  | 2570 | continue; | 
|  | 2571 | /* Only cache or free the old ring if it exists. | 
|  | 2572 | * It may not if this is the first add of an endpoint. | 
|  | 2573 | */ | 
|  | 2574 | if (virt_dev->eps[i].ring) { | 
| Sarah Sharp | 412566b | 2009-12-09 15:59:01 -0800 | [diff] [blame] | 2575 | xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2576 | } | 
| Sarah Sharp | 74f9fe2 | 2009-12-03 09:44:29 -0800 | [diff] [blame] | 2577 | virt_dev->eps[i].ring = virt_dev->eps[i].new_ring; | 
|  | 2578 | virt_dev->eps[i].new_ring = NULL; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2579 | } | 
|  | 2580 |  | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2581 | return ret; | 
|  | 2582 | } | 
|  | 2583 |  | 
|  | 2584 | void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 2585 | { | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2586 | struct xhci_hcd *xhci; | 
|  | 2587 | struct xhci_virt_device	*virt_dev; | 
|  | 2588 | int i, ret; | 
|  | 2589 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 2590 | ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2591 | if (ret <= 0) | 
|  | 2592 | return; | 
|  | 2593 | xhci = hcd_to_xhci(hcd); | 
|  | 2594 |  | 
| Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 2595 | xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2596 | virt_dev = xhci->devs[udev->slot_id]; | 
|  | 2597 | /* Free any rings allocated for added endpoints */ | 
|  | 2598 | for (i = 0; i < 31; ++i) { | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2599 | if (virt_dev->eps[i].new_ring) { | 
|  | 2600 | xhci_ring_free(xhci, virt_dev->eps[i].new_ring); | 
|  | 2601 | virt_dev->eps[i].new_ring = NULL; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2602 | } | 
|  | 2603 | } | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 2604 | xhci_zero_in_ctx(xhci, virt_dev); | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 2605 | } | 
|  | 2606 |  | 
| Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 2607 | static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci, | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2608 | struct xhci_container_ctx *in_ctx, | 
|  | 2609 | struct xhci_container_ctx *out_ctx, | 
|  | 2610 | u32 add_flags, u32 drop_flags) | 
| Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 2611 | { | 
|  | 2612 | struct xhci_input_control_ctx *ctrl_ctx; | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2613 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2614 | ctrl_ctx->add_flags = cpu_to_le32(add_flags); | 
|  | 2615 | ctrl_ctx->drop_flags = cpu_to_le32(drop_flags); | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2616 | xhci_slot_copy(xhci, in_ctx, out_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2617 | ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG); | 
| Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 2618 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2619 | xhci_dbg(xhci, "Input Context:\n"); | 
|  | 2620 | xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags)); | 
| Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 2621 | } | 
|  | 2622 |  | 
| Dmitry Torokhov | 8212a49 | 2011-02-08 13:55:59 -0800 | [diff] [blame] | 2623 | static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci, | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2624 | unsigned int slot_id, unsigned int ep_index, | 
|  | 2625 | struct xhci_dequeue_state *deq_state) | 
|  | 2626 | { | 
|  | 2627 | struct xhci_container_ctx *in_ctx; | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2628 | struct xhci_ep_ctx *ep_ctx; | 
|  | 2629 | u32 added_ctxs; | 
|  | 2630 | dma_addr_t addr; | 
|  | 2631 |  | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2632 | xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx, | 
|  | 2633 | xhci->devs[slot_id]->out_ctx, ep_index); | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2634 | in_ctx = xhci->devs[slot_id]->in_ctx; | 
|  | 2635 | ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index); | 
|  | 2636 | addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg, | 
|  | 2637 | deq_state->new_deq_ptr); | 
|  | 2638 | if (addr == 0) { | 
|  | 2639 | xhci_warn(xhci, "WARN Cannot submit config ep after " | 
|  | 2640 | "reset ep command\n"); | 
|  | 2641 | xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n", | 
|  | 2642 | deq_state->new_deq_seg, | 
|  | 2643 | deq_state->new_deq_ptr); | 
|  | 2644 | return; | 
|  | 2645 | } | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 2646 | ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state); | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2647 |  | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2648 | added_ctxs = xhci_get_endpoint_flag_from_index(ep_index); | 
| Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 2649 | xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx, | 
|  | 2650 | xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs); | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2651 | } | 
|  | 2652 |  | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2653 | void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci, | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2654 | struct usb_device *udev, unsigned int ep_index) | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2655 | { | 
|  | 2656 | struct xhci_dequeue_state deq_state; | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2657 | struct xhci_virt_ep *ep; | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2658 |  | 
|  | 2659 | xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n"); | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2660 | ep = &xhci->devs[udev->slot_id]->eps[ep_index]; | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2661 | /* We need to move the HW's dequeue pointer past this TD, | 
|  | 2662 | * or it will attempt to resend it on the next doorbell ring. | 
|  | 2663 | */ | 
|  | 2664 | xhci_find_new_dequeue_state(xhci, udev->slot_id, | 
| Sarah Sharp | e9df17e | 2010-04-02 15:34:43 -0700 | [diff] [blame] | 2665 | ep_index, ep->stopped_stream, ep->stopped_td, | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2666 | &deq_state); | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2667 |  | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2668 | /* HW with the reset endpoint quirk will use the saved dequeue state to | 
|  | 2669 | * issue a configure endpoint command later. | 
|  | 2670 | */ | 
|  | 2671 | if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) { | 
|  | 2672 | xhci_dbg(xhci, "Queueing new dequeue state\n"); | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2673 | xhci_queue_new_dequeue_state(xhci, udev->slot_id, | 
| Sarah Sharp | e9df17e | 2010-04-02 15:34:43 -0700 | [diff] [blame] | 2674 | ep_index, ep->stopped_stream, &deq_state); | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2675 | } else { | 
|  | 2676 | /* Better hope no one uses the input context between now and the | 
|  | 2677 | * reset endpoint completion! | 
| Sarah Sharp | e9df17e | 2010-04-02 15:34:43 -0700 | [diff] [blame] | 2678 | * XXX: No idea how this hardware will react when stream rings | 
|  | 2679 | * are enabled. | 
| Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 2680 | */ | 
|  | 2681 | xhci_dbg(xhci, "Setting up input context for " | 
|  | 2682 | "configure endpoint command\n"); | 
|  | 2683 | xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id, | 
|  | 2684 | ep_index, &deq_state); | 
|  | 2685 | } | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2686 | } | 
|  | 2687 |  | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2688 | /* Deal with stalled endpoints.  The core should have sent the control message | 
|  | 2689 | * to clear the halt condition.  However, we need to make the xHCI hardware | 
|  | 2690 | * reset its sequence number, since a device will expect a sequence number of | 
|  | 2691 | * zero after the halt condition is cleared. | 
|  | 2692 | * Context: in_interrupt | 
|  | 2693 | */ | 
|  | 2694 | void xhci_endpoint_reset(struct usb_hcd *hcd, | 
|  | 2695 | struct usb_host_endpoint *ep) | 
|  | 2696 | { | 
|  | 2697 | struct xhci_hcd *xhci; | 
|  | 2698 | struct usb_device *udev; | 
|  | 2699 | unsigned int ep_index; | 
|  | 2700 | unsigned long flags; | 
|  | 2701 | int ret; | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2702 | struct xhci_virt_ep *virt_ep; | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2703 |  | 
|  | 2704 | xhci = hcd_to_xhci(hcd); | 
|  | 2705 | udev = (struct usb_device *) ep->hcpriv; | 
|  | 2706 | /* Called with a root hub endpoint (or an endpoint that wasn't added | 
|  | 2707 | * with xhci_add_endpoint() | 
|  | 2708 | */ | 
|  | 2709 | if (!ep->hcpriv) | 
|  | 2710 | return; | 
|  | 2711 | ep_index = xhci_get_endpoint_index(&ep->desc); | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2712 | virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index]; | 
|  | 2713 | if (!virt_ep->stopped_td) { | 
| Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 2714 | xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n", | 
|  | 2715 | ep->desc.bEndpointAddress); | 
|  | 2716 | return; | 
|  | 2717 | } | 
| Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 2718 | if (usb_endpoint_xfer_control(&ep->desc)) { | 
|  | 2719 | xhci_dbg(xhci, "Control endpoint stall already handled.\n"); | 
|  | 2720 | return; | 
|  | 2721 | } | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2722 |  | 
|  | 2723 | xhci_dbg(xhci, "Queueing reset endpoint command\n"); | 
|  | 2724 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 2725 | ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index); | 
| Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 2726 | /* | 
|  | 2727 | * Can't change the ring dequeue pointer until it's transitioned to the | 
|  | 2728 | * stopped state, which is only upon a successful reset endpoint | 
|  | 2729 | * command.  Better hope that last command worked! | 
|  | 2730 | */ | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2731 | if (!ret) { | 
| Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 2732 | xhci_cleanup_stalled_ring(xhci, udev, ep_index); | 
|  | 2733 | kfree(virt_ep->stopped_td); | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2734 | xhci_ring_cmd_db(xhci); | 
|  | 2735 | } | 
| Sarah Sharp | 1624ae1 | 2010-05-06 13:40:08 -0700 | [diff] [blame] | 2736 | virt_ep->stopped_td = NULL; | 
|  | 2737 | virt_ep->stopped_trb = NULL; | 
| Sarah Sharp | 5e5cf6f | 2010-05-06 13:40:18 -0700 | [diff] [blame] | 2738 | virt_ep->stopped_stream = 0; | 
| Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 2739 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2740 |  | 
|  | 2741 | if (ret) | 
|  | 2742 | xhci_warn(xhci, "FIXME allocate a new ring segment\n"); | 
|  | 2743 | } | 
|  | 2744 |  | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 2745 | static int xhci_check_streams_endpoint(struct xhci_hcd *xhci, | 
|  | 2746 | struct usb_device *udev, struct usb_host_endpoint *ep, | 
|  | 2747 | unsigned int slot_id) | 
|  | 2748 | { | 
|  | 2749 | int ret; | 
|  | 2750 | unsigned int ep_index; | 
|  | 2751 | unsigned int ep_state; | 
|  | 2752 |  | 
|  | 2753 | if (!ep) | 
|  | 2754 | return -EINVAL; | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 2755 | ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__); | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 2756 | if (ret <= 0) | 
|  | 2757 | return -EINVAL; | 
| Alan Stern | 842f169 | 2010-04-30 12:44:46 -0400 | [diff] [blame] | 2758 | if (ep->ss_ep_comp.bmAttributes == 0) { | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 2759 | xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion" | 
|  | 2760 | " descriptor for ep 0x%x does not support streams\n", | 
|  | 2761 | ep->desc.bEndpointAddress); | 
|  | 2762 | return -EINVAL; | 
|  | 2763 | } | 
|  | 2764 |  | 
|  | 2765 | ep_index = xhci_get_endpoint_index(&ep->desc); | 
|  | 2766 | ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state; | 
|  | 2767 | if (ep_state & EP_HAS_STREAMS || | 
|  | 2768 | ep_state & EP_GETTING_STREAMS) { | 
|  | 2769 | xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x " | 
|  | 2770 | "already has streams set up.\n", | 
|  | 2771 | ep->desc.bEndpointAddress); | 
|  | 2772 | xhci_warn(xhci, "Send email to xHCI maintainer and ask for " | 
|  | 2773 | "dynamic stream context array reallocation.\n"); | 
|  | 2774 | return -EINVAL; | 
|  | 2775 | } | 
|  | 2776 | if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) { | 
|  | 2777 | xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk " | 
|  | 2778 | "endpoint 0x%x; URBs are pending.\n", | 
|  | 2779 | ep->desc.bEndpointAddress); | 
|  | 2780 | return -EINVAL; | 
|  | 2781 | } | 
|  | 2782 | return 0; | 
|  | 2783 | } | 
|  | 2784 |  | 
|  | 2785 | static void xhci_calculate_streams_entries(struct xhci_hcd *xhci, | 
|  | 2786 | unsigned int *num_streams, unsigned int *num_stream_ctxs) | 
|  | 2787 | { | 
|  | 2788 | unsigned int max_streams; | 
|  | 2789 |  | 
|  | 2790 | /* The stream context array size must be a power of two */ | 
|  | 2791 | *num_stream_ctxs = roundup_pow_of_two(*num_streams); | 
|  | 2792 | /* | 
|  | 2793 | * Find out how many primary stream array entries the host controller | 
|  | 2794 | * supports.  Later we may use secondary stream arrays (similar to 2nd | 
|  | 2795 | * level page entries), but that's an optional feature for xHCI host | 
|  | 2796 | * controllers. xHCs must support at least 4 stream IDs. | 
|  | 2797 | */ | 
|  | 2798 | max_streams = HCC_MAX_PSA(xhci->hcc_params); | 
|  | 2799 | if (*num_stream_ctxs > max_streams) { | 
|  | 2800 | xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n", | 
|  | 2801 | max_streams); | 
|  | 2802 | *num_stream_ctxs = max_streams; | 
|  | 2803 | *num_streams = max_streams; | 
|  | 2804 | } | 
|  | 2805 | } | 
|  | 2806 |  | 
|  | 2807 | /* Returns an error code if one of the endpoint already has streams. | 
|  | 2808 | * This does not change any data structures, it only checks and gathers | 
|  | 2809 | * information. | 
|  | 2810 | */ | 
|  | 2811 | static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci, | 
|  | 2812 | struct usb_device *udev, | 
|  | 2813 | struct usb_host_endpoint **eps, unsigned int num_eps, | 
|  | 2814 | unsigned int *num_streams, u32 *changed_ep_bitmask) | 
|  | 2815 | { | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 2816 | unsigned int max_streams; | 
|  | 2817 | unsigned int endpoint_flag; | 
|  | 2818 | int i; | 
|  | 2819 | int ret; | 
|  | 2820 |  | 
|  | 2821 | for (i = 0; i < num_eps; i++) { | 
|  | 2822 | ret = xhci_check_streams_endpoint(xhci, udev, | 
|  | 2823 | eps[i], udev->slot_id); | 
|  | 2824 | if (ret < 0) | 
|  | 2825 | return ret; | 
|  | 2826 |  | 
| Felipe Balbi | 18b7ede | 2012-01-02 13:35:41 +0200 | [diff] [blame] | 2827 | max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp); | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 2828 | if (max_streams < (*num_streams - 1)) { | 
|  | 2829 | xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n", | 
|  | 2830 | eps[i]->desc.bEndpointAddress, | 
|  | 2831 | max_streams); | 
|  | 2832 | *num_streams = max_streams+1; | 
|  | 2833 | } | 
|  | 2834 |  | 
|  | 2835 | endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc); | 
|  | 2836 | if (*changed_ep_bitmask & endpoint_flag) | 
|  | 2837 | return -EINVAL; | 
|  | 2838 | *changed_ep_bitmask |= endpoint_flag; | 
|  | 2839 | } | 
|  | 2840 | return 0; | 
|  | 2841 | } | 
|  | 2842 |  | 
|  | 2843 | static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci, | 
|  | 2844 | struct usb_device *udev, | 
|  | 2845 | struct usb_host_endpoint **eps, unsigned int num_eps) | 
|  | 2846 | { | 
|  | 2847 | u32 changed_ep_bitmask = 0; | 
|  | 2848 | unsigned int slot_id; | 
|  | 2849 | unsigned int ep_index; | 
|  | 2850 | unsigned int ep_state; | 
|  | 2851 | int i; | 
|  | 2852 |  | 
|  | 2853 | slot_id = udev->slot_id; | 
|  | 2854 | if (!xhci->devs[slot_id]) | 
|  | 2855 | return 0; | 
|  | 2856 |  | 
|  | 2857 | for (i = 0; i < num_eps; i++) { | 
|  | 2858 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 2859 | ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state; | 
|  | 2860 | /* Are streams already being freed for the endpoint? */ | 
|  | 2861 | if (ep_state & EP_GETTING_NO_STREAMS) { | 
|  | 2862 | xhci_warn(xhci, "WARN Can't disable streams for " | 
|  | 2863 | "endpoint 0x%x\n, " | 
|  | 2864 | "streams are being disabled already.", | 
|  | 2865 | eps[i]->desc.bEndpointAddress); | 
|  | 2866 | return 0; | 
|  | 2867 | } | 
|  | 2868 | /* Are there actually any streams to free? */ | 
|  | 2869 | if (!(ep_state & EP_HAS_STREAMS) && | 
|  | 2870 | !(ep_state & EP_GETTING_STREAMS)) { | 
|  | 2871 | xhci_warn(xhci, "WARN Can't disable streams for " | 
|  | 2872 | "endpoint 0x%x\n, " | 
|  | 2873 | "streams are already disabled!", | 
|  | 2874 | eps[i]->desc.bEndpointAddress); | 
|  | 2875 | xhci_warn(xhci, "WARN xhci_free_streams() called " | 
|  | 2876 | "with non-streams endpoint\n"); | 
|  | 2877 | return 0; | 
|  | 2878 | } | 
|  | 2879 | changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc); | 
|  | 2880 | } | 
|  | 2881 | return changed_ep_bitmask; | 
|  | 2882 | } | 
|  | 2883 |  | 
|  | 2884 | /* | 
|  | 2885 | * The USB device drivers use this function (though the HCD interface in USB | 
|  | 2886 | * core) to prepare a set of bulk endpoints to use streams.  Streams are used to | 
|  | 2887 | * coordinate mass storage command queueing across multiple endpoints (basically | 
|  | 2888 | * a stream ID == a task ID). | 
|  | 2889 | * | 
|  | 2890 | * Setting up streams involves allocating the same size stream context array | 
|  | 2891 | * for each endpoint and issuing a configure endpoint command for all endpoints. | 
|  | 2892 | * | 
|  | 2893 | * Don't allow the call to succeed if one endpoint only supports one stream | 
|  | 2894 | * (which means it doesn't support streams at all). | 
|  | 2895 | * | 
|  | 2896 | * Drivers may get less stream IDs than they asked for, if the host controller | 
|  | 2897 | * hardware or endpoints claim they can't support the number of requested | 
|  | 2898 | * stream IDs. | 
|  | 2899 | */ | 
|  | 2900 | int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev, | 
|  | 2901 | struct usb_host_endpoint **eps, unsigned int num_eps, | 
|  | 2902 | unsigned int num_streams, gfp_t mem_flags) | 
|  | 2903 | { | 
|  | 2904 | int i, ret; | 
|  | 2905 | struct xhci_hcd *xhci; | 
|  | 2906 | struct xhci_virt_device *vdev; | 
|  | 2907 | struct xhci_command *config_cmd; | 
|  | 2908 | unsigned int ep_index; | 
|  | 2909 | unsigned int num_stream_ctxs; | 
|  | 2910 | unsigned long flags; | 
|  | 2911 | u32 changed_ep_bitmask = 0; | 
|  | 2912 |  | 
|  | 2913 | if (!eps) | 
|  | 2914 | return -EINVAL; | 
|  | 2915 |  | 
|  | 2916 | /* Add one to the number of streams requested to account for | 
|  | 2917 | * stream 0 that is reserved for xHCI usage. | 
|  | 2918 | */ | 
|  | 2919 | num_streams += 1; | 
|  | 2920 | xhci = hcd_to_xhci(hcd); | 
|  | 2921 | xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n", | 
|  | 2922 | num_streams); | 
|  | 2923 |  | 
|  | 2924 | config_cmd = xhci_alloc_command(xhci, true, true, mem_flags); | 
|  | 2925 | if (!config_cmd) { | 
|  | 2926 | xhci_dbg(xhci, "Could not allocate xHCI command structure.\n"); | 
|  | 2927 | return -ENOMEM; | 
|  | 2928 | } | 
|  | 2929 |  | 
|  | 2930 | /* Check to make sure all endpoints are not already configured for | 
|  | 2931 | * streams.  While we're at it, find the maximum number of streams that | 
|  | 2932 | * all the endpoints will support and check for duplicate endpoints. | 
|  | 2933 | */ | 
|  | 2934 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 2935 | ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps, | 
|  | 2936 | num_eps, &num_streams, &changed_ep_bitmask); | 
|  | 2937 | if (ret < 0) { | 
|  | 2938 | xhci_free_command(xhci, config_cmd); | 
|  | 2939 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2940 | return ret; | 
|  | 2941 | } | 
|  | 2942 | if (num_streams <= 1) { | 
|  | 2943 | xhci_warn(xhci, "WARN: endpoints can't handle " | 
|  | 2944 | "more than one stream.\n"); | 
|  | 2945 | xhci_free_command(xhci, config_cmd); | 
|  | 2946 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2947 | return -EINVAL; | 
|  | 2948 | } | 
|  | 2949 | vdev = xhci->devs[udev->slot_id]; | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2950 | /* Mark each endpoint as being in transition, so | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 2951 | * xhci_urb_enqueue() will reject all URBs. | 
|  | 2952 | */ | 
|  | 2953 | for (i = 0; i < num_eps; i++) { | 
|  | 2954 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 2955 | vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS; | 
|  | 2956 | } | 
|  | 2957 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 2958 |  | 
|  | 2959 | /* Setup internal data structures and allocate HW data structures for | 
|  | 2960 | * streams (but don't install the HW structures in the input context | 
|  | 2961 | * until we're sure all memory allocation succeeded). | 
|  | 2962 | */ | 
|  | 2963 | xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs); | 
|  | 2964 | xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n", | 
|  | 2965 | num_stream_ctxs, num_streams); | 
|  | 2966 |  | 
|  | 2967 | for (i = 0; i < num_eps; i++) { | 
|  | 2968 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 2969 | vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci, | 
|  | 2970 | num_stream_ctxs, | 
|  | 2971 | num_streams, mem_flags); | 
|  | 2972 | if (!vdev->eps[ep_index].stream_info) | 
|  | 2973 | goto cleanup; | 
|  | 2974 | /* Set maxPstreams in endpoint context and update deq ptr to | 
|  | 2975 | * point to stream context array. FIXME | 
|  | 2976 | */ | 
|  | 2977 | } | 
|  | 2978 |  | 
|  | 2979 | /* Set up the input context for a configure endpoint command. */ | 
|  | 2980 | for (i = 0; i < num_eps; i++) { | 
|  | 2981 | struct xhci_ep_ctx *ep_ctx; | 
|  | 2982 |  | 
|  | 2983 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 2984 | ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index); | 
|  | 2985 |  | 
|  | 2986 | xhci_endpoint_copy(xhci, config_cmd->in_ctx, | 
|  | 2987 | vdev->out_ctx, ep_index); | 
|  | 2988 | xhci_setup_streams_ep_input_ctx(xhci, ep_ctx, | 
|  | 2989 | vdev->eps[ep_index].stream_info); | 
|  | 2990 | } | 
|  | 2991 | /* Tell the HW to drop its old copy of the endpoint context info | 
|  | 2992 | * and add the updated copy from the input context. | 
|  | 2993 | */ | 
|  | 2994 | xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx, | 
|  | 2995 | vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask); | 
|  | 2996 |  | 
|  | 2997 | /* Issue and wait for the configure endpoint command */ | 
|  | 2998 | ret = xhci_configure_endpoint(xhci, udev, config_cmd, | 
|  | 2999 | false, false); | 
|  | 3000 |  | 
|  | 3001 | /* xHC rejected the configure endpoint command for some reason, so we | 
|  | 3002 | * leave the old ring intact and free our internal streams data | 
|  | 3003 | * structure. | 
|  | 3004 | */ | 
|  | 3005 | if (ret < 0) | 
|  | 3006 | goto cleanup; | 
|  | 3007 |  | 
|  | 3008 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3009 | for (i = 0; i < num_eps; i++) { | 
|  | 3010 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 3011 | vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS; | 
|  | 3012 | xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n", | 
|  | 3013 | udev->slot_id, ep_index); | 
|  | 3014 | vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS; | 
|  | 3015 | } | 
|  | 3016 | xhci_free_command(xhci, config_cmd); | 
|  | 3017 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3018 |  | 
|  | 3019 | /* Subtract 1 for stream 0, which drivers can't use */ | 
|  | 3020 | return num_streams - 1; | 
|  | 3021 |  | 
|  | 3022 | cleanup: | 
|  | 3023 | /* If it didn't work, free the streams! */ | 
|  | 3024 | for (i = 0; i < num_eps; i++) { | 
|  | 3025 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 3026 | xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info); | 
| Sarah Sharp | 8a00774 | 2010-04-30 15:37:56 -0700 | [diff] [blame] | 3027 | vdev->eps[ep_index].stream_info = NULL; | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 3028 | /* FIXME Unset maxPstreams in endpoint context and | 
|  | 3029 | * update deq ptr to point to normal string ring. | 
|  | 3030 | */ | 
|  | 3031 | vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS; | 
|  | 3032 | vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS; | 
|  | 3033 | xhci_endpoint_zero(xhci, vdev, eps[i]); | 
|  | 3034 | } | 
|  | 3035 | xhci_free_command(xhci, config_cmd); | 
|  | 3036 | return -ENOMEM; | 
|  | 3037 | } | 
|  | 3038 |  | 
|  | 3039 | /* Transition the endpoint from using streams to being a "normal" endpoint | 
|  | 3040 | * without streams. | 
|  | 3041 | * | 
|  | 3042 | * Modify the endpoint context state, submit a configure endpoint command, | 
|  | 3043 | * and free all endpoint rings for streams if that completes successfully. | 
|  | 3044 | */ | 
|  | 3045 | int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev, | 
|  | 3046 | struct usb_host_endpoint **eps, unsigned int num_eps, | 
|  | 3047 | gfp_t mem_flags) | 
|  | 3048 | { | 
|  | 3049 | int i, ret; | 
|  | 3050 | struct xhci_hcd *xhci; | 
|  | 3051 | struct xhci_virt_device *vdev; | 
|  | 3052 | struct xhci_command *command; | 
|  | 3053 | unsigned int ep_index; | 
|  | 3054 | unsigned long flags; | 
|  | 3055 | u32 changed_ep_bitmask; | 
|  | 3056 |  | 
|  | 3057 | xhci = hcd_to_xhci(hcd); | 
|  | 3058 | vdev = xhci->devs[udev->slot_id]; | 
|  | 3059 |  | 
|  | 3060 | /* Set up a configure endpoint command to remove the streams rings */ | 
|  | 3061 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3062 | changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci, | 
|  | 3063 | udev, eps, num_eps); | 
|  | 3064 | if (changed_ep_bitmask == 0) { | 
|  | 3065 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3066 | return -EINVAL; | 
|  | 3067 | } | 
|  | 3068 |  | 
|  | 3069 | /* Use the xhci_command structure from the first endpoint.  We may have | 
|  | 3070 | * allocated too many, but the driver may call xhci_free_streams() for | 
|  | 3071 | * each endpoint it grouped into one call to xhci_alloc_streams(). | 
|  | 3072 | */ | 
|  | 3073 | ep_index = xhci_get_endpoint_index(&eps[0]->desc); | 
|  | 3074 | command = vdev->eps[ep_index].stream_info->free_streams_command; | 
|  | 3075 | for (i = 0; i < num_eps; i++) { | 
|  | 3076 | struct xhci_ep_ctx *ep_ctx; | 
|  | 3077 |  | 
|  | 3078 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 3079 | ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index); | 
|  | 3080 | xhci->devs[udev->slot_id]->eps[ep_index].ep_state |= | 
|  | 3081 | EP_GETTING_NO_STREAMS; | 
|  | 3082 |  | 
|  | 3083 | xhci_endpoint_copy(xhci, command->in_ctx, | 
|  | 3084 | vdev->out_ctx, ep_index); | 
|  | 3085 | xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx, | 
|  | 3086 | &vdev->eps[ep_index]); | 
|  | 3087 | } | 
|  | 3088 | xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx, | 
|  | 3089 | vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask); | 
|  | 3090 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3091 |  | 
|  | 3092 | /* Issue and wait for the configure endpoint command, | 
|  | 3093 | * which must succeed. | 
|  | 3094 | */ | 
|  | 3095 | ret = xhci_configure_endpoint(xhci, udev, command, | 
|  | 3096 | false, true); | 
|  | 3097 |  | 
|  | 3098 | /* xHC rejected the configure endpoint command for some reason, so we | 
|  | 3099 | * leave the streams rings intact. | 
|  | 3100 | */ | 
|  | 3101 | if (ret < 0) | 
|  | 3102 | return ret; | 
|  | 3103 |  | 
|  | 3104 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3105 | for (i = 0; i < num_eps; i++) { | 
|  | 3106 | ep_index = xhci_get_endpoint_index(&eps[i]->desc); | 
|  | 3107 | xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info); | 
| Sarah Sharp | 8a00774 | 2010-04-30 15:37:56 -0700 | [diff] [blame] | 3108 | vdev->eps[ep_index].stream_info = NULL; | 
| Sarah Sharp | 8df75f4 | 2010-04-02 15:34:16 -0700 | [diff] [blame] | 3109 | /* FIXME Unset maxPstreams in endpoint context and | 
|  | 3110 | * update deq ptr to point to normal string ring. | 
|  | 3111 | */ | 
|  | 3112 | vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS; | 
|  | 3113 | vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS; | 
|  | 3114 | } | 
|  | 3115 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3116 |  | 
|  | 3117 | return 0; | 
|  | 3118 | } | 
|  | 3119 |  | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3120 | /* | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 3121 | * Deletes endpoint resources for endpoints that were active before a Reset | 
|  | 3122 | * Device command, or a Disable Slot command.  The Reset Device command leaves | 
|  | 3123 | * the control endpoint intact, whereas the Disable Slot command deletes it. | 
|  | 3124 | * | 
|  | 3125 | * Must be called with xhci->lock held. | 
|  | 3126 | */ | 
|  | 3127 | void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci, | 
|  | 3128 | struct xhci_virt_device *virt_dev, bool drop_control_ep) | 
|  | 3129 | { | 
|  | 3130 | int i; | 
|  | 3131 | unsigned int num_dropped_eps = 0; | 
|  | 3132 | unsigned int drop_flags = 0; | 
|  | 3133 |  | 
|  | 3134 | for (i = (drop_control_ep ? 0 : 1); i < 31; i++) { | 
|  | 3135 | if (virt_dev->eps[i].ring) { | 
|  | 3136 | drop_flags |= 1 << i; | 
|  | 3137 | num_dropped_eps++; | 
|  | 3138 | } | 
|  | 3139 | } | 
|  | 3140 | xhci->num_active_eps -= num_dropped_eps; | 
|  | 3141 | if (num_dropped_eps) | 
|  | 3142 | xhci_dbg(xhci, "Dropped %u ep ctxs, flags = 0x%x, " | 
|  | 3143 | "%u now active.\n", | 
|  | 3144 | num_dropped_eps, drop_flags, | 
|  | 3145 | xhci->num_active_eps); | 
|  | 3146 | } | 
|  | 3147 |  | 
|  | 3148 | /* | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3149 | * This submits a Reset Device Command, which will set the device state to 0, | 
|  | 3150 | * set the device address to 0, and disable all the endpoints except the default | 
|  | 3151 | * control endpoint.  The USB core should come back and call | 
|  | 3152 | * xhci_address_device(), and then re-set up the configuration.  If this is | 
|  | 3153 | * called because of a usb_reset_and_verify_device(), then the old alternate | 
|  | 3154 | * settings will be re-installed through the normal bandwidth allocation | 
|  | 3155 | * functions. | 
|  | 3156 | * | 
|  | 3157 | * Wait for the Reset Device command to finish.  Remove all structures | 
|  | 3158 | * associated with the endpoints that were disabled.  Clear the input device | 
|  | 3159 | * structure?  Cache the rings?  Reset the control endpoint 0 max packet size? | 
| Andiry Xu | f0615c4 | 2010-10-14 07:22:48 -0700 | [diff] [blame] | 3160 | * | 
|  | 3161 | * If the virt_dev to be reset does not exist or does not match the udev, | 
|  | 3162 | * it means the device is lost, possibly due to the xHC restore error and | 
|  | 3163 | * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to | 
|  | 3164 | * re-allocate the device. | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3165 | */ | 
| Andiry Xu | f0615c4 | 2010-10-14 07:22:48 -0700 | [diff] [blame] | 3166 | int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev) | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3167 | { | 
|  | 3168 | int ret, i; | 
|  | 3169 | unsigned long flags; | 
|  | 3170 | struct xhci_hcd *xhci; | 
|  | 3171 | unsigned int slot_id; | 
|  | 3172 | struct xhci_virt_device *virt_dev; | 
|  | 3173 | struct xhci_command *reset_device_cmd; | 
|  | 3174 | int timeleft; | 
|  | 3175 | int last_freed_endpoint; | 
| Maarten Lankhorst | 001fd38 | 2011-06-01 23:27:50 +0200 | [diff] [blame] | 3176 | struct xhci_slot_ctx *slot_ctx; | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 3177 | int old_active_eps = 0; | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3178 |  | 
| Andiry Xu | f0615c4 | 2010-10-14 07:22:48 -0700 | [diff] [blame] | 3179 | ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__); | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3180 | if (ret <= 0) | 
|  | 3181 | return ret; | 
|  | 3182 | xhci = hcd_to_xhci(hcd); | 
|  | 3183 | slot_id = udev->slot_id; | 
|  | 3184 | virt_dev = xhci->devs[slot_id]; | 
| Andiry Xu | f0615c4 | 2010-10-14 07:22:48 -0700 | [diff] [blame] | 3185 | if (!virt_dev) { | 
|  | 3186 | xhci_dbg(xhci, "The device to be reset with slot ID %u does " | 
|  | 3187 | "not exist. Re-allocate the device\n", slot_id); | 
|  | 3188 | ret = xhci_alloc_dev(hcd, udev); | 
|  | 3189 | if (ret == 1) | 
|  | 3190 | return 0; | 
|  | 3191 | else | 
|  | 3192 | return -EINVAL; | 
|  | 3193 | } | 
|  | 3194 |  | 
|  | 3195 | if (virt_dev->udev != udev) { | 
|  | 3196 | /* If the virt_dev and the udev does not match, this virt_dev | 
|  | 3197 | * may belong to another udev. | 
|  | 3198 | * Re-allocate the device. | 
|  | 3199 | */ | 
|  | 3200 | xhci_dbg(xhci, "The device to be reset with slot ID %u does " | 
|  | 3201 | "not match the udev. Re-allocate the device\n", | 
|  | 3202 | slot_id); | 
|  | 3203 | ret = xhci_alloc_dev(hcd, udev); | 
|  | 3204 | if (ret == 1) | 
|  | 3205 | return 0; | 
|  | 3206 | else | 
|  | 3207 | return -EINVAL; | 
|  | 3208 | } | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3209 |  | 
| Maarten Lankhorst | 001fd38 | 2011-06-01 23:27:50 +0200 | [diff] [blame] | 3210 | /* If device is not setup, there is no point in resetting it */ | 
|  | 3211 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx); | 
|  | 3212 | if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) == | 
|  | 3213 | SLOT_STATE_DISABLED) | 
|  | 3214 | return 0; | 
|  | 3215 |  | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3216 | xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id); | 
|  | 3217 | /* Allocate the command structure that holds the struct completion. | 
|  | 3218 | * Assume we're in process context, since the normal device reset | 
|  | 3219 | * process has to wait for the device anyway.  Storage devices are | 
|  | 3220 | * reset as part of error handling, so use GFP_NOIO instead of | 
|  | 3221 | * GFP_KERNEL. | 
|  | 3222 | */ | 
|  | 3223 | reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO); | 
|  | 3224 | if (!reset_device_cmd) { | 
|  | 3225 | xhci_dbg(xhci, "Couldn't allocate command structure.\n"); | 
|  | 3226 | return -ENOMEM; | 
|  | 3227 | } | 
|  | 3228 |  | 
|  | 3229 | /* Attempt to submit the Reset Device command to the command ring */ | 
|  | 3230 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3231 | reset_device_cmd->command_trb = xhci->cmd_ring->enqueue; | 
| Paul Zimmerman | 7a3783e | 2010-11-17 16:26:50 -0800 | [diff] [blame] | 3232 |  | 
|  | 3233 | /* Enqueue pointer can be left pointing to the link TRB, | 
|  | 3234 | * we must handle that | 
|  | 3235 | */ | 
| Matt Evans | f5960b6 | 2011-06-01 10:22:55 +1000 | [diff] [blame] | 3236 | if (TRB_TYPE_LINK_LE32(reset_device_cmd->command_trb->link.control)) | 
| Paul Zimmerman | 7a3783e | 2010-11-17 16:26:50 -0800 | [diff] [blame] | 3237 | reset_device_cmd->command_trb = | 
|  | 3238 | xhci->cmd_ring->enq_seg->next->trbs; | 
|  | 3239 |  | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3240 | list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list); | 
|  | 3241 | ret = xhci_queue_reset_device(xhci, slot_id); | 
|  | 3242 | if (ret) { | 
|  | 3243 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); | 
|  | 3244 | list_del(&reset_device_cmd->cmd_list); | 
|  | 3245 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3246 | goto command_cleanup; | 
|  | 3247 | } | 
|  | 3248 | xhci_ring_cmd_db(xhci); | 
|  | 3249 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3250 |  | 
|  | 3251 | /* Wait for the Reset Device command to finish */ | 
|  | 3252 | timeleft = wait_for_completion_interruptible_timeout( | 
|  | 3253 | reset_device_cmd->completion, | 
|  | 3254 | USB_CTRL_SET_TIMEOUT); | 
|  | 3255 | if (timeleft <= 0) { | 
|  | 3256 | xhci_warn(xhci, "%s while waiting for reset device command\n", | 
|  | 3257 | timeleft == 0 ? "Timeout" : "Signal"); | 
|  | 3258 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3259 | /* The timeout might have raced with the event ring handler, so | 
|  | 3260 | * only delete from the list if the item isn't poisoned. | 
|  | 3261 | */ | 
|  | 3262 | if (reset_device_cmd->cmd_list.next != LIST_POISON1) | 
|  | 3263 | list_del(&reset_device_cmd->cmd_list); | 
|  | 3264 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3265 | ret = -ETIME; | 
|  | 3266 | goto command_cleanup; | 
|  | 3267 | } | 
|  | 3268 |  | 
|  | 3269 | /* The Reset Device command can't fail, according to the 0.95/0.96 spec, | 
|  | 3270 | * unless we tried to reset a slot ID that wasn't enabled, | 
|  | 3271 | * or the device wasn't in the addressed or configured state. | 
|  | 3272 | */ | 
|  | 3273 | ret = reset_device_cmd->status; | 
|  | 3274 | switch (ret) { | 
|  | 3275 | case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */ | 
|  | 3276 | case COMP_CTX_STATE: /* 0.96 completion code for same thing */ | 
|  | 3277 | xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n", | 
|  | 3278 | slot_id, | 
|  | 3279 | xhci_get_slot_state(xhci, virt_dev->out_ctx)); | 
|  | 3280 | xhci_info(xhci, "Not freeing device rings.\n"); | 
|  | 3281 | /* Don't treat this as an error.  May change my mind later. */ | 
|  | 3282 | ret = 0; | 
|  | 3283 | goto command_cleanup; | 
|  | 3284 | case COMP_SUCCESS: | 
|  | 3285 | xhci_dbg(xhci, "Successful reset device command.\n"); | 
|  | 3286 | break; | 
|  | 3287 | default: | 
|  | 3288 | if (xhci_is_vendor_info_code(xhci, ret)) | 
|  | 3289 | break; | 
|  | 3290 | xhci_warn(xhci, "Unknown completion code %u for " | 
|  | 3291 | "reset device command.\n", ret); | 
|  | 3292 | ret = -EINVAL; | 
|  | 3293 | goto command_cleanup; | 
|  | 3294 | } | 
|  | 3295 |  | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 3296 | /* Free up host controller endpoint resources */ | 
|  | 3297 | if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) { | 
|  | 3298 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3299 | /* Don't delete the default control endpoint resources */ | 
|  | 3300 | xhci_free_device_endpoint_resources(xhci, virt_dev, false); | 
|  | 3301 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3302 | } | 
|  | 3303 |  | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3304 | /* Everything but endpoint 0 is disabled, so free or cache the rings. */ | 
|  | 3305 | last_freed_endpoint = 1; | 
|  | 3306 | for (i = 1; i < 31; ++i) { | 
| Dmitry Torokhov | 2dea75d | 2011-04-12 23:06:28 -0700 | [diff] [blame] | 3307 | struct xhci_virt_ep *ep = &virt_dev->eps[i]; | 
|  | 3308 |  | 
|  | 3309 | if (ep->ep_state & EP_HAS_STREAMS) { | 
|  | 3310 | xhci_free_stream_info(xhci, ep->stream_info); | 
|  | 3311 | ep->stream_info = NULL; | 
|  | 3312 | ep->ep_state &= ~EP_HAS_STREAMS; | 
|  | 3313 | } | 
|  | 3314 |  | 
|  | 3315 | if (ep->ring) { | 
|  | 3316 | xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i); | 
|  | 3317 | last_freed_endpoint = i; | 
|  | 3318 | } | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 3319 | if (!list_empty(&virt_dev->eps[i].bw_endpoint_list)) | 
|  | 3320 | xhci_drop_ep_from_interval_table(xhci, | 
|  | 3321 | &virt_dev->eps[i].bw_info, | 
|  | 3322 | virt_dev->bw_table, | 
|  | 3323 | udev, | 
|  | 3324 | &virt_dev->eps[i], | 
|  | 3325 | virt_dev->tt_info); | 
| Sarah Sharp | 9af5d71 | 2011-09-02 11:05:48 -0700 | [diff] [blame] | 3326 | xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info); | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3327 | } | 
| Sarah Sharp | 2e27980 | 2011-09-02 11:05:50 -0700 | [diff] [blame] | 3328 | /* If necessary, update the number of active TTs on this root port */ | 
|  | 3329 | xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps); | 
|  | 3330 |  | 
| Sarah Sharp | 2a8f82c | 2009-12-09 15:59:13 -0800 | [diff] [blame] | 3331 | xhci_dbg(xhci, "Output context after successful reset device cmd:\n"); | 
|  | 3332 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint); | 
|  | 3333 | ret = 0; | 
|  | 3334 |  | 
|  | 3335 | command_cleanup: | 
|  | 3336 | xhci_free_command(xhci, reset_device_cmd); | 
|  | 3337 | return ret; | 
|  | 3338 | } | 
|  | 3339 |  | 
|  | 3340 | /* | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3341 | * At this point, the struct usb_device is about to go away, the device has | 
|  | 3342 | * disconnected, and all traffic has been stopped and the endpoints have been | 
|  | 3343 | * disabled.  Free any HC data structures associated with that device. | 
|  | 3344 | */ | 
|  | 3345 | void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 3346 | { | 
|  | 3347 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 3348 | struct xhci_virt_device *virt_dev; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3349 | unsigned long flags; | 
| Sarah Sharp | c526d0d | 2009-09-16 16:42:39 -0700 | [diff] [blame] | 3350 | u32 state; | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 3351 | int i, ret; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3352 |  | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 3353 | ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__); | 
| Sarah Sharp | 7bd89b4 | 2011-07-01 13:35:40 -0700 | [diff] [blame] | 3354 | /* If the host is halted due to driver unload, we still need to free the | 
|  | 3355 | * device. | 
|  | 3356 | */ | 
|  | 3357 | if (ret <= 0 && ret != -ENODEV) | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3358 | return; | 
| Andiry Xu | 6492773 | 2010-10-14 07:22:45 -0700 | [diff] [blame] | 3359 |  | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 3360 | virt_dev = xhci->devs[udev->slot_id]; | 
| Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 3361 |  | 
|  | 3362 | /* Stop any wayward timer functions (which may grab the lock) */ | 
|  | 3363 | for (i = 0; i < 31; ++i) { | 
|  | 3364 | virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING; | 
|  | 3365 | del_timer_sync(&virt_dev->eps[i].stop_cmd_timer); | 
|  | 3366 | } | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3367 |  | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3368 | if (udev->usb2_hw_lpm_enabled) { | 
|  | 3369 | xhci_set_usb2_hardware_lpm(hcd, udev, 0); | 
|  | 3370 | udev->usb2_hw_lpm_enabled = 0; | 
|  | 3371 | } | 
|  | 3372 |  | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3373 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | c526d0d | 2009-09-16 16:42:39 -0700 | [diff] [blame] | 3374 | /* Don't disable the slot if the host controller is dead. */ | 
|  | 3375 | state = xhci_readl(xhci, &xhci->op_regs->status); | 
| Sarah Sharp | 7bd89b4 | 2011-07-01 13:35:40 -0700 | [diff] [blame] | 3376 | if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) || | 
|  | 3377 | (xhci->xhc_state & XHCI_STATE_HALTED)) { | 
| Sarah Sharp | c526d0d | 2009-09-16 16:42:39 -0700 | [diff] [blame] | 3378 | xhci_free_virt_device(xhci, udev->slot_id); | 
|  | 3379 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3380 | return; | 
|  | 3381 | } | 
|  | 3382 |  | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 3383 | if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) { | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3384 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3385 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); | 
|  | 3386 | return; | 
|  | 3387 | } | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 3388 | xhci_ring_cmd_db(xhci); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3389 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3390 | /* | 
|  | 3391 | * Event command completion handler will free any data structures | 
| Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 3392 | * associated with the slot.  XXX Can free sleep? | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3393 | */ | 
|  | 3394 | } | 
|  | 3395 |  | 
|  | 3396 | /* | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 3397 | * Checks if we have enough host controller resources for the default control | 
|  | 3398 | * endpoint. | 
|  | 3399 | * | 
|  | 3400 | * Must be called with xhci->lock held. | 
|  | 3401 | */ | 
|  | 3402 | static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci) | 
|  | 3403 | { | 
|  | 3404 | if (xhci->num_active_eps + 1 > xhci->limit_active_eps) { | 
|  | 3405 | xhci_dbg(xhci, "Not enough ep ctxs: " | 
|  | 3406 | "%u active, need to add 1, limit is %u.\n", | 
|  | 3407 | xhci->num_active_eps, xhci->limit_active_eps); | 
|  | 3408 | return -ENOMEM; | 
|  | 3409 | } | 
|  | 3410 | xhci->num_active_eps += 1; | 
|  | 3411 | xhci_dbg(xhci, "Adding 1 ep ctx, %u now active.\n", | 
|  | 3412 | xhci->num_active_eps); | 
|  | 3413 | return 0; | 
|  | 3414 | } | 
|  | 3415 |  | 
|  | 3416 |  | 
|  | 3417 | /* | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3418 | * Returns 0 if the xHC ran out of device slots, the Enable Slot command | 
|  | 3419 | * timed out, or allocating memory failed.  Returns 1 on success. | 
|  | 3420 | */ | 
|  | 3421 | int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 3422 | { | 
|  | 3423 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 3424 | unsigned long flags; | 
|  | 3425 | int timeleft; | 
|  | 3426 | int ret; | 
|  | 3427 |  | 
|  | 3428 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 3429 | ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3430 | if (ret) { | 
|  | 3431 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3432 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); | 
|  | 3433 | return 0; | 
|  | 3434 | } | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 3435 | xhci_ring_cmd_db(xhci); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3436 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3437 |  | 
|  | 3438 | /* XXX: how much time for xHC slot assignment? */ | 
|  | 3439 | timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev, | 
|  | 3440 | USB_CTRL_SET_TIMEOUT); | 
|  | 3441 | if (timeleft <= 0) { | 
|  | 3442 | xhci_warn(xhci, "%s while waiting for a slot\n", | 
|  | 3443 | timeleft == 0 ? "Timeout" : "Signal"); | 
|  | 3444 | /* FIXME cancel the enable slot request */ | 
|  | 3445 | return 0; | 
|  | 3446 | } | 
|  | 3447 |  | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3448 | if (!xhci->slot_id) { | 
|  | 3449 | xhci_err(xhci, "Error while assigning device slot ID\n"); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3450 | return 0; | 
|  | 3451 | } | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 3452 |  | 
|  | 3453 | if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) { | 
|  | 3454 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3455 | ret = xhci_reserve_host_control_ep_resources(xhci); | 
|  | 3456 | if (ret) { | 
|  | 3457 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3458 | xhci_warn(xhci, "Not enough host resources, " | 
|  | 3459 | "active endpoint contexts = %u\n", | 
|  | 3460 | xhci->num_active_eps); | 
|  | 3461 | goto disable_slot; | 
|  | 3462 | } | 
|  | 3463 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3464 | } | 
|  | 3465 | /* Use GFP_NOIO, since this function can be called from | 
| Sarah Sharp | a6d940d | 2010-12-28 13:08:42 -0800 | [diff] [blame] | 3466 | * xhci_discover_or_reset_device(), which may be called as part of | 
|  | 3467 | * mass storage driver error handling. | 
|  | 3468 | */ | 
|  | 3469 | if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) { | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3470 | xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n"); | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 3471 | goto disable_slot; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3472 | } | 
|  | 3473 | udev->slot_id = xhci->slot_id; | 
|  | 3474 | /* Is this a LS or FS device under a HS hub? */ | 
|  | 3475 | /* Hub or peripherial? */ | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3476 | return 1; | 
| Sarah Sharp | 2cf95c1 | 2011-05-11 16:14:58 -0700 | [diff] [blame] | 3477 |  | 
|  | 3478 | disable_slot: | 
|  | 3479 | /* Disable slot, if we can do it without mem alloc */ | 
|  | 3480 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3481 | if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) | 
|  | 3482 | xhci_ring_cmd_db(xhci); | 
|  | 3483 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3484 | return 0; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3485 | } | 
|  | 3486 |  | 
|  | 3487 | /* | 
|  | 3488 | * Issue an Address Device command (which will issue a SetAddress request to | 
|  | 3489 | * the device). | 
|  | 3490 | * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so | 
|  | 3491 | * we should only issue and wait on one address command at the same time. | 
|  | 3492 | * | 
|  | 3493 | * We add one to the device address issued by the hardware because the USB core | 
|  | 3494 | * uses address 1 for the root hubs (even though they're not really devices). | 
|  | 3495 | */ | 
|  | 3496 | int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 3497 | { | 
|  | 3498 | unsigned long flags; | 
|  | 3499 | int timeleft; | 
|  | 3500 | struct xhci_virt_device *virt_dev; | 
|  | 3501 | int ret = 0; | 
|  | 3502 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3503 | struct xhci_slot_ctx *slot_ctx; | 
|  | 3504 | struct xhci_input_control_ctx *ctrl_ctx; | 
| Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 3505 | u64 temp_64; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3506 |  | 
|  | 3507 | if (!udev->slot_id) { | 
|  | 3508 | xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id); | 
|  | 3509 | return -EINVAL; | 
|  | 3510 | } | 
|  | 3511 |  | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3512 | virt_dev = xhci->devs[udev->slot_id]; | 
|  | 3513 |  | 
| Matt Evans | 7ed603e | 2011-03-29 13:40:56 +1100 | [diff] [blame] | 3514 | if (WARN_ON(!virt_dev)) { | 
|  | 3515 | /* | 
|  | 3516 | * In plug/unplug torture test with an NEC controller, | 
|  | 3517 | * a zero-dereference was observed once due to virt_dev = 0. | 
|  | 3518 | * Print useful debug rather than crash if it is observed again! | 
|  | 3519 | */ | 
|  | 3520 | xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n", | 
|  | 3521 | udev->slot_id); | 
|  | 3522 | return -EINVAL; | 
|  | 3523 | } | 
|  | 3524 |  | 
| Andiry Xu | f0615c4 | 2010-10-14 07:22:48 -0700 | [diff] [blame] | 3525 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); | 
|  | 3526 | /* | 
|  | 3527 | * If this is the first Set Address since device plug-in or | 
|  | 3528 | * virt_device realloaction after a resume with an xHCI power loss, | 
|  | 3529 | * then set up the slot context. | 
|  | 3530 | */ | 
|  | 3531 | if (!slot_ctx->dev_info) | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3532 | xhci_setup_addressable_virt_dev(xhci, udev); | 
| Andiry Xu | f0615c4 | 2010-10-14 07:22:48 -0700 | [diff] [blame] | 3533 | /* Otherwise, update the control endpoint ring enqueue pointer. */ | 
| Sarah Sharp | 2d1ee59 | 2010-07-09 17:08:54 +0200 | [diff] [blame] | 3534 | else | 
|  | 3535 | xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev); | 
| Sarah Sharp | d31c285 | 2011-11-03 13:06:08 -0700 | [diff] [blame] | 3536 | ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx); | 
|  | 3537 | ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG); | 
|  | 3538 | ctrl_ctx->drop_flags = 0; | 
|  | 3539 |  | 
| Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 3540 | xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3541 | xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3542 |  | 
| Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 3543 | spin_lock_irqsave(&xhci->lock, flags); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3544 | ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma, | 
|  | 3545 | udev->slot_id); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3546 | if (ret) { | 
|  | 3547 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3548 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); | 
|  | 3549 | return ret; | 
|  | 3550 | } | 
| Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 3551 | xhci_ring_cmd_db(xhci); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3552 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3553 |  | 
|  | 3554 | /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */ | 
|  | 3555 | timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev, | 
|  | 3556 | USB_CTRL_SET_TIMEOUT); | 
|  | 3557 | /* FIXME: From section 4.3.4: "Software shall be responsible for timing | 
|  | 3558 | * the SetAddress() "recovery interval" required by USB and aborting the | 
|  | 3559 | * command on a timeout. | 
|  | 3560 | */ | 
|  | 3561 | if (timeleft <= 0) { | 
| Andiry Xu | cd68176 | 2011-09-23 14:19:55 -0700 | [diff] [blame] | 3562 | xhci_warn(xhci, "%s while waiting for address device command\n", | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3563 | timeleft == 0 ? "Timeout" : "Signal"); | 
|  | 3564 | /* FIXME cancel the address device command */ | 
|  | 3565 | return -ETIME; | 
|  | 3566 | } | 
|  | 3567 |  | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3568 | switch (virt_dev->cmd_status) { | 
|  | 3569 | case COMP_CTX_STATE: | 
|  | 3570 | case COMP_EBADSLT: | 
|  | 3571 | xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n", | 
|  | 3572 | udev->slot_id); | 
|  | 3573 | ret = -EINVAL; | 
|  | 3574 | break; | 
|  | 3575 | case COMP_TX_ERR: | 
|  | 3576 | dev_warn(&udev->dev, "Device not responding to set address.\n"); | 
|  | 3577 | ret = -EPROTO; | 
|  | 3578 | break; | 
| Alex He | f6ba6fe | 2011-06-08 18:34:06 +0800 | [diff] [blame] | 3579 | case COMP_DEV_ERR: | 
|  | 3580 | dev_warn(&udev->dev, "ERROR: Incompatible device for address " | 
|  | 3581 | "device command.\n"); | 
|  | 3582 | ret = -ENODEV; | 
|  | 3583 | break; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3584 | case COMP_SUCCESS: | 
|  | 3585 | xhci_dbg(xhci, "Successful Address Device command\n"); | 
|  | 3586 | break; | 
|  | 3587 | default: | 
|  | 3588 | xhci_err(xhci, "ERROR: unexpected command completion " | 
|  | 3589 | "code 0x%x.\n", virt_dev->cmd_status); | 
| Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 3590 | xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3591 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3592 | ret = -EINVAL; | 
|  | 3593 | break; | 
|  | 3594 | } | 
|  | 3595 | if (ret) { | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3596 | return ret; | 
|  | 3597 | } | 
| Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 3598 | temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); | 
|  | 3599 | xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64); | 
|  | 3600 | xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n", | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 3601 | udev->slot_id, | 
|  | 3602 | &xhci->dcbaa->dev_context_ptrs[udev->slot_id], | 
|  | 3603 | (unsigned long long) | 
|  | 3604 | le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id])); | 
| Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 3605 | xhci_dbg(xhci, "Output Context DMA address = %#08llx\n", | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3606 | (unsigned long long)virt_dev->out_ctx->dma); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3607 | xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3608 | xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3609 | xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id); | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3610 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3611 | /* | 
|  | 3612 | * USB core uses address 1 for the roothubs, so we add one to the | 
|  | 3613 | * address given back to us by the HC. | 
|  | 3614 | */ | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3615 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx); | 
| Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3616 | /* Use kernel assigned address for devices; store xHC assigned | 
|  | 3617 | * address locally. */ | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 3618 | virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK) | 
|  | 3619 | + 1; | 
| Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 3620 | /* Zero the input context control for later use */ | 
| John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 3621 | ctrl_ctx->add_flags = 0; | 
|  | 3622 | ctrl_ctx->drop_flags = 0; | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3623 |  | 
| Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3624 | xhci_dbg(xhci, "Internal device address = %d\n", virt_dev->address); | 
| Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 3625 |  | 
|  | 3626 | return 0; | 
|  | 3627 | } | 
|  | 3628 |  | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3629 | #ifdef CONFIG_USB_SUSPEND | 
|  | 3630 |  | 
|  | 3631 | /* BESL to HIRD Encoding array for USB2 LPM */ | 
|  | 3632 | static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000, | 
|  | 3633 | 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000}; | 
|  | 3634 |  | 
|  | 3635 | /* Calculate HIRD/BESL for USB2 PORTPMSC*/ | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3636 | static int xhci_calculate_hird_besl(struct xhci_hcd *xhci, | 
|  | 3637 | struct usb_device *udev) | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3638 | { | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3639 | int u2del, besl, besl_host; | 
|  | 3640 | int besl_device = 0; | 
|  | 3641 | u32 field; | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3642 |  | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3643 | u2del = HCS_U2_LATENCY(xhci->hcs_params3); | 
|  | 3644 | field = le32_to_cpu(udev->bos->ext_cap->bmAttributes); | 
|  | 3645 |  | 
|  | 3646 | if (field & USB_BESL_SUPPORT) { | 
|  | 3647 | for (besl_host = 0; besl_host < 16; besl_host++) { | 
|  | 3648 | if (xhci_besl_encoding[besl_host] >= u2del) | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3649 | break; | 
|  | 3650 | } | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3651 | /* Use baseline BESL value as default */ | 
|  | 3652 | if (field & USB_BESL_BASELINE_VALID) | 
|  | 3653 | besl_device = USB_GET_BESL_BASELINE(field); | 
|  | 3654 | else if (field & USB_BESL_DEEP_VALID) | 
|  | 3655 | besl_device = USB_GET_BESL_DEEP(field); | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3656 | } else { | 
|  | 3657 | if (u2del <= 50) | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3658 | besl_host = 0; | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3659 | else | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3660 | besl_host = (u2del - 51) / 75 + 1; | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3661 | } | 
|  | 3662 |  | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3663 | besl = besl_host + besl_device; | 
|  | 3664 | if (besl > 15) | 
|  | 3665 | besl = 15; | 
|  | 3666 |  | 
|  | 3667 | return besl; | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3668 | } | 
|  | 3669 |  | 
|  | 3670 | static int xhci_usb2_software_lpm_test(struct usb_hcd *hcd, | 
|  | 3671 | struct usb_device *udev) | 
|  | 3672 | { | 
|  | 3673 | struct xhci_hcd	*xhci = hcd_to_xhci(hcd); | 
|  | 3674 | struct dev_info	*dev_info; | 
|  | 3675 | __le32 __iomem	**port_array; | 
|  | 3676 | __le32 __iomem	*addr, *pm_addr; | 
|  | 3677 | u32		temp, dev_id; | 
|  | 3678 | unsigned int	port_num; | 
|  | 3679 | unsigned long	flags; | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3680 | int		hird; | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3681 | int		ret; | 
|  | 3682 |  | 
|  | 3683 | if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support || | 
|  | 3684 | !udev->lpm_capable) | 
|  | 3685 | return -EINVAL; | 
|  | 3686 |  | 
|  | 3687 | /* we only support lpm for non-hub device connected to root hub yet */ | 
|  | 3688 | if (!udev->parent || udev->parent->parent || | 
|  | 3689 | udev->descriptor.bDeviceClass == USB_CLASS_HUB) | 
|  | 3690 | return -EINVAL; | 
|  | 3691 |  | 
|  | 3692 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3693 |  | 
|  | 3694 | /* Look for devices in lpm_failed_devs list */ | 
|  | 3695 | dev_id = le16_to_cpu(udev->descriptor.idVendor) << 16 | | 
|  | 3696 | le16_to_cpu(udev->descriptor.idProduct); | 
|  | 3697 | list_for_each_entry(dev_info, &xhci->lpm_failed_devs, list) { | 
|  | 3698 | if (dev_info->dev_id == dev_id) { | 
|  | 3699 | ret = -EINVAL; | 
|  | 3700 | goto finish; | 
|  | 3701 | } | 
|  | 3702 | } | 
|  | 3703 |  | 
|  | 3704 | port_array = xhci->usb2_ports; | 
|  | 3705 | port_num = udev->portnum - 1; | 
|  | 3706 |  | 
|  | 3707 | if (port_num > HCS_MAX_PORTS(xhci->hcs_params1)) { | 
|  | 3708 | xhci_dbg(xhci, "invalid port number %d\n", udev->portnum); | 
|  | 3709 | ret = -EINVAL; | 
|  | 3710 | goto finish; | 
|  | 3711 | } | 
|  | 3712 |  | 
|  | 3713 | /* | 
|  | 3714 | * Test USB 2.0 software LPM. | 
|  | 3715 | * FIXME: some xHCI 1.0 hosts may implement a new register to set up | 
|  | 3716 | * hardware-controlled USB 2.0 LPM. See section 5.4.11 and 4.23.5.1.1.1 | 
|  | 3717 | * in the June 2011 errata release. | 
|  | 3718 | */ | 
|  | 3719 | xhci_dbg(xhci, "test port %d software LPM\n", port_num); | 
|  | 3720 | /* | 
|  | 3721 | * Set L1 Device Slot and HIRD/BESL. | 
|  | 3722 | * Check device's USB 2.0 extension descriptor to determine whether | 
|  | 3723 | * HIRD or BESL shoule be used. See USB2.0 LPM errata. | 
|  | 3724 | */ | 
|  | 3725 | pm_addr = port_array[port_num] + 1; | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3726 | hird = xhci_calculate_hird_besl(xhci, udev); | 
| Andiry Xu | 9574323 | 2011-09-23 14:19:51 -0700 | [diff] [blame] | 3727 | temp = PORT_L1DS(udev->slot_id) | PORT_HIRD(hird); | 
|  | 3728 | xhci_writel(xhci, temp, pm_addr); | 
|  | 3729 |  | 
|  | 3730 | /* Set port link state to U2(L1) */ | 
|  | 3731 | addr = port_array[port_num]; | 
|  | 3732 | xhci_set_link_state(xhci, port_array, port_num, XDEV_U2); | 
|  | 3733 |  | 
|  | 3734 | /* wait for ACK */ | 
|  | 3735 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3736 | msleep(10); | 
|  | 3737 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3738 |  | 
|  | 3739 | /* Check L1 Status */ | 
|  | 3740 | ret = handshake(xhci, pm_addr, PORT_L1S_MASK, PORT_L1S_SUCCESS, 125); | 
|  | 3741 | if (ret != -ETIMEDOUT) { | 
|  | 3742 | /* enter L1 successfully */ | 
|  | 3743 | temp = xhci_readl(xhci, addr); | 
|  | 3744 | xhci_dbg(xhci, "port %d entered L1 state, port status 0x%x\n", | 
|  | 3745 | port_num, temp); | 
|  | 3746 | ret = 0; | 
|  | 3747 | } else { | 
|  | 3748 | temp = xhci_readl(xhci, pm_addr); | 
|  | 3749 | xhci_dbg(xhci, "port %d software lpm failed, L1 status %d\n", | 
|  | 3750 | port_num, temp & PORT_L1S_MASK); | 
|  | 3751 | ret = -EINVAL; | 
|  | 3752 | } | 
|  | 3753 |  | 
|  | 3754 | /* Resume the port */ | 
|  | 3755 | xhci_set_link_state(xhci, port_array, port_num, XDEV_U0); | 
|  | 3756 |  | 
|  | 3757 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3758 | msleep(10); | 
|  | 3759 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3760 |  | 
|  | 3761 | /* Clear PLC */ | 
|  | 3762 | xhci_test_and_clear_bit(xhci, port_array, port_num, PORT_PLC); | 
|  | 3763 |  | 
|  | 3764 | /* Check PORTSC to make sure the device is in the right state */ | 
|  | 3765 | if (!ret) { | 
|  | 3766 | temp = xhci_readl(xhci, addr); | 
|  | 3767 | xhci_dbg(xhci, "resumed port %d status 0x%x\n",	port_num, temp); | 
|  | 3768 | if (!(temp & PORT_CONNECT) || !(temp & PORT_PE) || | 
|  | 3769 | (temp & PORT_PLS_MASK) != XDEV_U0) { | 
|  | 3770 | xhci_dbg(xhci, "port L1 resume fail\n"); | 
|  | 3771 | ret = -EINVAL; | 
|  | 3772 | } | 
|  | 3773 | } | 
|  | 3774 |  | 
|  | 3775 | if (ret) { | 
|  | 3776 | /* Insert dev to lpm_failed_devs list */ | 
|  | 3777 | xhci_warn(xhci, "device LPM test failed, may disconnect and " | 
|  | 3778 | "re-enumerate\n"); | 
|  | 3779 | dev_info = kzalloc(sizeof(struct dev_info), GFP_ATOMIC); | 
|  | 3780 | if (!dev_info) { | 
|  | 3781 | ret = -ENOMEM; | 
|  | 3782 | goto finish; | 
|  | 3783 | } | 
|  | 3784 | dev_info->dev_id = dev_id; | 
|  | 3785 | INIT_LIST_HEAD(&dev_info->list); | 
|  | 3786 | list_add(&dev_info->list, &xhci->lpm_failed_devs); | 
|  | 3787 | } else { | 
|  | 3788 | xhci_ring_device(xhci, udev->slot_id); | 
|  | 3789 | } | 
|  | 3790 |  | 
|  | 3791 | finish: | 
|  | 3792 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3793 | return ret; | 
|  | 3794 | } | 
|  | 3795 |  | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3796 | int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd, | 
|  | 3797 | struct usb_device *udev, int enable) | 
|  | 3798 | { | 
|  | 3799 | struct xhci_hcd	*xhci = hcd_to_xhci(hcd); | 
|  | 3800 | __le32 __iomem	**port_array; | 
|  | 3801 | __le32 __iomem	*pm_addr; | 
|  | 3802 | u32		temp; | 
|  | 3803 | unsigned int	port_num; | 
|  | 3804 | unsigned long	flags; | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3805 | int		hird; | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3806 |  | 
|  | 3807 | if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support || | 
|  | 3808 | !udev->lpm_capable) | 
|  | 3809 | return -EPERM; | 
|  | 3810 |  | 
|  | 3811 | if (!udev->parent || udev->parent->parent || | 
|  | 3812 | udev->descriptor.bDeviceClass == USB_CLASS_HUB) | 
|  | 3813 | return -EPERM; | 
|  | 3814 |  | 
|  | 3815 | if (udev->usb2_hw_lpm_capable != 1) | 
|  | 3816 | return -EPERM; | 
|  | 3817 |  | 
|  | 3818 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 3819 |  | 
|  | 3820 | port_array = xhci->usb2_ports; | 
|  | 3821 | port_num = udev->portnum - 1; | 
|  | 3822 | pm_addr = port_array[port_num] + 1; | 
|  | 3823 | temp = xhci_readl(xhci, pm_addr); | 
|  | 3824 |  | 
|  | 3825 | xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n", | 
|  | 3826 | enable ? "enable" : "disable", port_num); | 
|  | 3827 |  | 
| Andiry Xu | f99298b | 2011-12-12 16:45:28 +0800 | [diff] [blame] | 3828 | hird = xhci_calculate_hird_besl(xhci, udev); | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3829 |  | 
|  | 3830 | if (enable) { | 
|  | 3831 | temp &= ~PORT_HIRD_MASK; | 
|  | 3832 | temp |= PORT_HIRD(hird) | PORT_RWE; | 
|  | 3833 | xhci_writel(xhci, temp, pm_addr); | 
|  | 3834 | temp = xhci_readl(xhci, pm_addr); | 
|  | 3835 | temp |= PORT_HLE; | 
|  | 3836 | xhci_writel(xhci, temp, pm_addr); | 
|  | 3837 | } else { | 
|  | 3838 | temp &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK); | 
|  | 3839 | xhci_writel(xhci, temp, pm_addr); | 
|  | 3840 | } | 
|  | 3841 |  | 
|  | 3842 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 3843 | return 0; | 
|  | 3844 | } | 
|  | 3845 |  | 
| Sarah Sharp | b01bcbf | 2012-05-21 07:54:42 -0700 | [diff] [blame] | 3846 | int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 3847 | { | 
|  | 3848 | struct xhci_hcd	*xhci = hcd_to_xhci(hcd); | 
|  | 3849 | int		ret; | 
|  | 3850 |  | 
|  | 3851 | ret = xhci_usb2_software_lpm_test(hcd, udev); | 
|  | 3852 | if (!ret) { | 
|  | 3853 | xhci_dbg(xhci, "software LPM test succeed\n"); | 
|  | 3854 | if (xhci->hw_lpm_support == 1) { | 
|  | 3855 | udev->usb2_hw_lpm_capable = 1; | 
|  | 3856 | ret = xhci_set_usb2_hardware_lpm(hcd, udev, 1); | 
|  | 3857 | if (!ret) | 
|  | 3858 | udev->usb2_hw_lpm_enabled = 1; | 
|  | 3859 | } | 
|  | 3860 | } | 
|  | 3861 |  | 
|  | 3862 | return 0; | 
|  | 3863 | } | 
|  | 3864 |  | 
|  | 3865 | #else | 
|  | 3866 |  | 
|  | 3867 | int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd, | 
|  | 3868 | struct usb_device *udev, int enable) | 
|  | 3869 | { | 
|  | 3870 | return 0; | 
|  | 3871 | } | 
|  | 3872 |  | 
|  | 3873 | int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev) | 
|  | 3874 | { | 
|  | 3875 | return 0; | 
|  | 3876 | } | 
|  | 3877 |  | 
|  | 3878 | #endif /* CONFIG_USB_SUSPEND */ | 
|  | 3879 |  | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 3880 | /*---------------------- USB 3.0 Link PM functions ------------------------*/ | 
|  | 3881 |  | 
| Sarah Sharp | b01bcbf | 2012-05-21 07:54:42 -0700 | [diff] [blame] | 3882 | #ifdef CONFIG_PM | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 3883 | /* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */ | 
|  | 3884 | static unsigned long long xhci_service_interval_to_ns( | 
|  | 3885 | struct usb_endpoint_descriptor *desc) | 
|  | 3886 | { | 
|  | 3887 | return (1 << (desc->bInterval - 1)) * 125 * 1000; | 
|  | 3888 | } | 
|  | 3889 |  | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 3890 | static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev, | 
|  | 3891 | enum usb3_link_state state) | 
|  | 3892 | { | 
|  | 3893 | unsigned long long sel; | 
|  | 3894 | unsigned long long pel; | 
|  | 3895 | unsigned int max_sel_pel; | 
|  | 3896 | char *state_name; | 
|  | 3897 |  | 
|  | 3898 | switch (state) { | 
|  | 3899 | case USB3_LPM_U1: | 
|  | 3900 | /* Convert SEL and PEL stored in nanoseconds to microseconds */ | 
|  | 3901 | sel = DIV_ROUND_UP(udev->u1_params.sel, 1000); | 
|  | 3902 | pel = DIV_ROUND_UP(udev->u1_params.pel, 1000); | 
|  | 3903 | max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL; | 
|  | 3904 | state_name = "U1"; | 
|  | 3905 | break; | 
|  | 3906 | case USB3_LPM_U2: | 
|  | 3907 | sel = DIV_ROUND_UP(udev->u2_params.sel, 1000); | 
|  | 3908 | pel = DIV_ROUND_UP(udev->u2_params.pel, 1000); | 
|  | 3909 | max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL; | 
|  | 3910 | state_name = "U2"; | 
|  | 3911 | break; | 
|  | 3912 | default: | 
|  | 3913 | dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n", | 
|  | 3914 | __func__); | 
| Sarah Sharp | e25e62a | 2012-06-07 11:10:32 -0700 | [diff] [blame] | 3915 | return USB3_LPM_DISABLED; | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 3916 | } | 
|  | 3917 |  | 
|  | 3918 | if (sel <= max_sel_pel && pel <= max_sel_pel) | 
|  | 3919 | return USB3_LPM_DEVICE_INITIATED; | 
|  | 3920 |  | 
|  | 3921 | if (sel > max_sel_pel) | 
|  | 3922 | dev_dbg(&udev->dev, "Device-initiated %s disabled " | 
|  | 3923 | "due to long SEL %llu ms\n", | 
|  | 3924 | state_name, sel); | 
|  | 3925 | else | 
|  | 3926 | dev_dbg(&udev->dev, "Device-initiated %s disabled " | 
|  | 3927 | "due to long PEL %llu\n ms", | 
|  | 3928 | state_name, pel); | 
|  | 3929 | return USB3_LPM_DISABLED; | 
|  | 3930 | } | 
|  | 3931 |  | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 3932 | /* Returns the hub-encoded U1 timeout value. | 
|  | 3933 | * The U1 timeout should be the maximum of the following values: | 
|  | 3934 | *  - For control endpoints, U1 system exit latency (SEL) * 3 | 
|  | 3935 | *  - For bulk endpoints, U1 SEL * 5 | 
|  | 3936 | *  - For interrupt endpoints: | 
|  | 3937 | *    - Notification EPs, U1 SEL * 3 | 
|  | 3938 | *    - Periodic EPs, max(105% of bInterval, U1 SEL * 2) | 
|  | 3939 | *  - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2) | 
|  | 3940 | */ | 
|  | 3941 | static u16 xhci_calculate_intel_u1_timeout(struct usb_device *udev, | 
|  | 3942 | struct usb_endpoint_descriptor *desc) | 
|  | 3943 | { | 
|  | 3944 | unsigned long long timeout_ns; | 
|  | 3945 | int ep_type; | 
|  | 3946 | int intr_type; | 
|  | 3947 |  | 
|  | 3948 | ep_type = usb_endpoint_type(desc); | 
|  | 3949 | switch (ep_type) { | 
|  | 3950 | case USB_ENDPOINT_XFER_CONTROL: | 
|  | 3951 | timeout_ns = udev->u1_params.sel * 3; | 
|  | 3952 | break; | 
|  | 3953 | case USB_ENDPOINT_XFER_BULK: | 
|  | 3954 | timeout_ns = udev->u1_params.sel * 5; | 
|  | 3955 | break; | 
|  | 3956 | case USB_ENDPOINT_XFER_INT: | 
|  | 3957 | intr_type = usb_endpoint_interrupt_type(desc); | 
|  | 3958 | if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) { | 
|  | 3959 | timeout_ns = udev->u1_params.sel * 3; | 
|  | 3960 | break; | 
|  | 3961 | } | 
|  | 3962 | /* Otherwise the calculation is the same as isoc eps */ | 
|  | 3963 | case USB_ENDPOINT_XFER_ISOC: | 
|  | 3964 | timeout_ns = xhci_service_interval_to_ns(desc); | 
| Sarah Sharp | c88db16 | 2012-05-21 08:44:33 -0700 | [diff] [blame] | 3965 | timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100); | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 3966 | if (timeout_ns < udev->u1_params.sel * 2) | 
|  | 3967 | timeout_ns = udev->u1_params.sel * 2; | 
|  | 3968 | break; | 
|  | 3969 | default: | 
|  | 3970 | return 0; | 
|  | 3971 | } | 
|  | 3972 |  | 
|  | 3973 | /* The U1 timeout is encoded in 1us intervals. */ | 
| Sarah Sharp | c88db16 | 2012-05-21 08:44:33 -0700 | [diff] [blame] | 3974 | timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000); | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 3975 | /* Don't return a timeout of zero, because that's USB3_LPM_DISABLED. */ | 
|  | 3976 | if (timeout_ns == USB3_LPM_DISABLED) | 
|  | 3977 | timeout_ns++; | 
|  | 3978 |  | 
|  | 3979 | /* If the necessary timeout value is bigger than what we can set in the | 
|  | 3980 | * USB 3.0 hub, we have to disable hub-initiated U1. | 
|  | 3981 | */ | 
|  | 3982 | if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT) | 
|  | 3983 | return timeout_ns; | 
|  | 3984 | dev_dbg(&udev->dev, "Hub-initiated U1 disabled " | 
|  | 3985 | "due to long timeout %llu ms\n", timeout_ns); | 
|  | 3986 | return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1); | 
|  | 3987 | } | 
|  | 3988 |  | 
|  | 3989 | /* Returns the hub-encoded U2 timeout value. | 
|  | 3990 | * The U2 timeout should be the maximum of: | 
|  | 3991 | *  - 10 ms (to avoid the bandwidth impact on the scheduler) | 
|  | 3992 | *  - largest bInterval of any active periodic endpoint (to avoid going | 
|  | 3993 | *    into lower power link states between intervals). | 
|  | 3994 | *  - the U2 Exit Latency of the device | 
|  | 3995 | */ | 
|  | 3996 | static u16 xhci_calculate_intel_u2_timeout(struct usb_device *udev, | 
|  | 3997 | struct usb_endpoint_descriptor *desc) | 
|  | 3998 | { | 
|  | 3999 | unsigned long long timeout_ns; | 
|  | 4000 | unsigned long long u2_del_ns; | 
|  | 4001 |  | 
|  | 4002 | timeout_ns = 10 * 1000 * 1000; | 
|  | 4003 |  | 
|  | 4004 | if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) && | 
|  | 4005 | (xhci_service_interval_to_ns(desc) > timeout_ns)) | 
|  | 4006 | timeout_ns = xhci_service_interval_to_ns(desc); | 
|  | 4007 |  | 
|  | 4008 | u2_del_ns = udev->bos->ss_cap->bU2DevExitLat * 1000; | 
|  | 4009 | if (u2_del_ns > timeout_ns) | 
|  | 4010 | timeout_ns = u2_del_ns; | 
|  | 4011 |  | 
|  | 4012 | /* The U2 timeout is encoded in 256us intervals */ | 
| Sarah Sharp | c88db16 | 2012-05-21 08:44:33 -0700 | [diff] [blame] | 4013 | timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000); | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 4014 | /* If the necessary timeout value is bigger than what we can set in the | 
|  | 4015 | * USB 3.0 hub, we have to disable hub-initiated U2. | 
|  | 4016 | */ | 
|  | 4017 | if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT) | 
|  | 4018 | return timeout_ns; | 
|  | 4019 | dev_dbg(&udev->dev, "Hub-initiated U2 disabled " | 
|  | 4020 | "due to long timeout %llu ms\n", timeout_ns); | 
|  | 4021 | return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2); | 
|  | 4022 | } | 
|  | 4023 |  | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 4024 | static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci, | 
|  | 4025 | struct usb_device *udev, | 
|  | 4026 | struct usb_endpoint_descriptor *desc, | 
|  | 4027 | enum usb3_link_state state, | 
|  | 4028 | u16 *timeout) | 
|  | 4029 | { | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 4030 | if (state == USB3_LPM_U1) { | 
|  | 4031 | if (xhci->quirks & XHCI_INTEL_HOST) | 
|  | 4032 | return xhci_calculate_intel_u1_timeout(udev, desc); | 
|  | 4033 | } else { | 
|  | 4034 | if (xhci->quirks & XHCI_INTEL_HOST) | 
|  | 4035 | return xhci_calculate_intel_u2_timeout(udev, desc); | 
|  | 4036 | } | 
|  | 4037 |  | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 4038 | return USB3_LPM_DISABLED; | 
|  | 4039 | } | 
|  | 4040 |  | 
|  | 4041 | static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci, | 
|  | 4042 | struct usb_device *udev, | 
|  | 4043 | struct usb_endpoint_descriptor *desc, | 
|  | 4044 | enum usb3_link_state state, | 
|  | 4045 | u16 *timeout) | 
|  | 4046 | { | 
|  | 4047 | u16 alt_timeout; | 
|  | 4048 |  | 
|  | 4049 | alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev, | 
|  | 4050 | desc, state, timeout); | 
|  | 4051 |  | 
|  | 4052 | /* If we found we can't enable hub-initiated LPM, or | 
|  | 4053 | * the U1 or U2 exit latency was too high to allow | 
|  | 4054 | * device-initiated LPM as well, just stop searching. | 
|  | 4055 | */ | 
|  | 4056 | if (alt_timeout == USB3_LPM_DISABLED || | 
|  | 4057 | alt_timeout == USB3_LPM_DEVICE_INITIATED) { | 
|  | 4058 | *timeout = alt_timeout; | 
|  | 4059 | return -E2BIG; | 
|  | 4060 | } | 
|  | 4061 | if (alt_timeout > *timeout) | 
|  | 4062 | *timeout = alt_timeout; | 
|  | 4063 | return 0; | 
|  | 4064 | } | 
|  | 4065 |  | 
|  | 4066 | static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci, | 
|  | 4067 | struct usb_device *udev, | 
|  | 4068 | struct usb_host_interface *alt, | 
|  | 4069 | enum usb3_link_state state, | 
|  | 4070 | u16 *timeout) | 
|  | 4071 | { | 
|  | 4072 | int j; | 
|  | 4073 |  | 
|  | 4074 | for (j = 0; j < alt->desc.bNumEndpoints; j++) { | 
|  | 4075 | if (xhci_update_timeout_for_endpoint(xhci, udev, | 
|  | 4076 | &alt->endpoint[j].desc, state, timeout)) | 
|  | 4077 | return -E2BIG; | 
|  | 4078 | continue; | 
|  | 4079 | } | 
|  | 4080 | return 0; | 
|  | 4081 | } | 
|  | 4082 |  | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 4083 | static int xhci_check_intel_tier_policy(struct usb_device *udev, | 
|  | 4084 | enum usb3_link_state state) | 
|  | 4085 | { | 
|  | 4086 | struct usb_device *parent; | 
|  | 4087 | unsigned int num_hubs; | 
|  | 4088 |  | 
|  | 4089 | if (state == USB3_LPM_U2) | 
|  | 4090 | return 0; | 
|  | 4091 |  | 
|  | 4092 | /* Don't enable U1 if the device is on a 2nd tier hub or lower. */ | 
|  | 4093 | for (parent = udev->parent, num_hubs = 0; parent->parent; | 
|  | 4094 | parent = parent->parent) | 
|  | 4095 | num_hubs++; | 
|  | 4096 |  | 
|  | 4097 | if (num_hubs < 2) | 
|  | 4098 | return 0; | 
|  | 4099 |  | 
|  | 4100 | dev_dbg(&udev->dev, "Disabling U1 link state for device" | 
|  | 4101 | " below second-tier hub.\n"); | 
|  | 4102 | dev_dbg(&udev->dev, "Plug device into first-tier hub " | 
|  | 4103 | "to decrease power consumption.\n"); | 
|  | 4104 | return -E2BIG; | 
|  | 4105 | } | 
|  | 4106 |  | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 4107 | static int xhci_check_tier_policy(struct xhci_hcd *xhci, | 
|  | 4108 | struct usb_device *udev, | 
|  | 4109 | enum usb3_link_state state) | 
|  | 4110 | { | 
| Sarah Sharp | e3567d2 | 2012-05-16 13:36:24 -0700 | [diff] [blame] | 4111 | if (xhci->quirks & XHCI_INTEL_HOST) | 
|  | 4112 | return xhci_check_intel_tier_policy(udev, state); | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 4113 | return -EINVAL; | 
|  | 4114 | } | 
|  | 4115 |  | 
|  | 4116 | /* Returns the U1 or U2 timeout that should be enabled. | 
|  | 4117 | * If the tier check or timeout setting functions return with a non-zero exit | 
|  | 4118 | * code, that means the timeout value has been finalized and we shouldn't look | 
|  | 4119 | * at any more endpoints. | 
|  | 4120 | */ | 
|  | 4121 | static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd, | 
|  | 4122 | struct usb_device *udev, enum usb3_link_state state) | 
|  | 4123 | { | 
|  | 4124 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 4125 | struct usb_host_config *config; | 
|  | 4126 | char *state_name; | 
|  | 4127 | int i; | 
|  | 4128 | u16 timeout = USB3_LPM_DISABLED; | 
|  | 4129 |  | 
|  | 4130 | if (state == USB3_LPM_U1) | 
|  | 4131 | state_name = "U1"; | 
|  | 4132 | else if (state == USB3_LPM_U2) | 
|  | 4133 | state_name = "U2"; | 
|  | 4134 | else { | 
|  | 4135 | dev_warn(&udev->dev, "Can't enable unknown link state %i\n", | 
|  | 4136 | state); | 
|  | 4137 | return timeout; | 
|  | 4138 | } | 
|  | 4139 |  | 
|  | 4140 | if (xhci_check_tier_policy(xhci, udev, state) < 0) | 
|  | 4141 | return timeout; | 
|  | 4142 |  | 
|  | 4143 | /* Gather some information about the currently installed configuration | 
|  | 4144 | * and alternate interface settings. | 
|  | 4145 | */ | 
|  | 4146 | if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc, | 
|  | 4147 | state, &timeout)) | 
|  | 4148 | return timeout; | 
|  | 4149 |  | 
|  | 4150 | config = udev->actconfig; | 
|  | 4151 | if (!config) | 
|  | 4152 | return timeout; | 
|  | 4153 |  | 
|  | 4154 | for (i = 0; i < USB_MAXINTERFACES; i++) { | 
|  | 4155 | struct usb_driver *driver; | 
|  | 4156 | struct usb_interface *intf = config->interface[i]; | 
|  | 4157 |  | 
|  | 4158 | if (!intf) | 
|  | 4159 | continue; | 
|  | 4160 |  | 
|  | 4161 | /* Check if any currently bound drivers want hub-initiated LPM | 
|  | 4162 | * disabled. | 
|  | 4163 | */ | 
|  | 4164 | if (intf->dev.driver) { | 
|  | 4165 | driver = to_usb_driver(intf->dev.driver); | 
|  | 4166 | if (driver && driver->disable_hub_initiated_lpm) { | 
|  | 4167 | dev_dbg(&udev->dev, "Hub-initiated %s disabled " | 
|  | 4168 | "at request of driver %s\n", | 
|  | 4169 | state_name, driver->name); | 
|  | 4170 | return xhci_get_timeout_no_hub_lpm(udev, state); | 
|  | 4171 | } | 
|  | 4172 | } | 
|  | 4173 |  | 
|  | 4174 | /* Not sure how this could happen... */ | 
|  | 4175 | if (!intf->cur_altsetting) | 
|  | 4176 | continue; | 
|  | 4177 |  | 
|  | 4178 | if (xhci_update_timeout_for_interface(xhci, udev, | 
|  | 4179 | intf->cur_altsetting, | 
|  | 4180 | state, &timeout)) | 
|  | 4181 | return timeout; | 
|  | 4182 | } | 
|  | 4183 | return timeout; | 
|  | 4184 | } | 
|  | 4185 |  | 
|  | 4186 | /* | 
|  | 4187 | * Issue an Evaluate Context command to change the Maximum Exit Latency in the | 
|  | 4188 | * slot context.  If that succeeds, store the new MEL in the xhci_virt_device. | 
|  | 4189 | */ | 
|  | 4190 | static int xhci_change_max_exit_latency(struct xhci_hcd *xhci, | 
|  | 4191 | struct usb_device *udev, u16 max_exit_latency) | 
|  | 4192 | { | 
|  | 4193 | struct xhci_virt_device *virt_dev; | 
|  | 4194 | struct xhci_command *command; | 
|  | 4195 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 4196 | struct xhci_slot_ctx *slot_ctx; | 
|  | 4197 | unsigned long flags; | 
|  | 4198 | int ret; | 
|  | 4199 |  | 
|  | 4200 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 4201 | if (max_exit_latency == xhci->devs[udev->slot_id]->current_mel) { | 
|  | 4202 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 4203 | return 0; | 
|  | 4204 | } | 
|  | 4205 |  | 
|  | 4206 | /* Attempt to issue an Evaluate Context command to change the MEL. */ | 
|  | 4207 | virt_dev = xhci->devs[udev->slot_id]; | 
|  | 4208 | command = xhci->lpm_command; | 
|  | 4209 | xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx); | 
|  | 4210 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 4211 |  | 
|  | 4212 | ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx); | 
|  | 4213 | ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG); | 
|  | 4214 | slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx); | 
|  | 4215 | slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT)); | 
|  | 4216 | slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency); | 
|  | 4217 |  | 
|  | 4218 | xhci_dbg(xhci, "Set up evaluate context for LPM MEL change.\n"); | 
|  | 4219 | xhci_dbg(xhci, "Slot %u Input Context:\n", udev->slot_id); | 
|  | 4220 | xhci_dbg_ctx(xhci, command->in_ctx, 0); | 
|  | 4221 |  | 
|  | 4222 | /* Issue and wait for the evaluate context command. */ | 
|  | 4223 | ret = xhci_configure_endpoint(xhci, udev, command, | 
|  | 4224 | true, true); | 
|  | 4225 | xhci_dbg(xhci, "Slot %u Output Context:\n", udev->slot_id); | 
|  | 4226 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 0); | 
|  | 4227 |  | 
|  | 4228 | if (!ret) { | 
|  | 4229 | spin_lock_irqsave(&xhci->lock, flags); | 
|  | 4230 | virt_dev->current_mel = max_exit_latency; | 
|  | 4231 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 4232 | } | 
|  | 4233 | return ret; | 
|  | 4234 | } | 
|  | 4235 |  | 
|  | 4236 | static int calculate_max_exit_latency(struct usb_device *udev, | 
|  | 4237 | enum usb3_link_state state_changed, | 
|  | 4238 | u16 hub_encoded_timeout) | 
|  | 4239 | { | 
|  | 4240 | unsigned long long u1_mel_us = 0; | 
|  | 4241 | unsigned long long u2_mel_us = 0; | 
|  | 4242 | unsigned long long mel_us = 0; | 
|  | 4243 | bool disabling_u1; | 
|  | 4244 | bool disabling_u2; | 
|  | 4245 | bool enabling_u1; | 
|  | 4246 | bool enabling_u2; | 
|  | 4247 |  | 
|  | 4248 | disabling_u1 = (state_changed == USB3_LPM_U1 && | 
|  | 4249 | hub_encoded_timeout == USB3_LPM_DISABLED); | 
|  | 4250 | disabling_u2 = (state_changed == USB3_LPM_U2 && | 
|  | 4251 | hub_encoded_timeout == USB3_LPM_DISABLED); | 
|  | 4252 |  | 
|  | 4253 | enabling_u1 = (state_changed == USB3_LPM_U1 && | 
|  | 4254 | hub_encoded_timeout != USB3_LPM_DISABLED); | 
|  | 4255 | enabling_u2 = (state_changed == USB3_LPM_U2 && | 
|  | 4256 | hub_encoded_timeout != USB3_LPM_DISABLED); | 
|  | 4257 |  | 
|  | 4258 | /* If U1 was already enabled and we're not disabling it, | 
|  | 4259 | * or we're going to enable U1, account for the U1 max exit latency. | 
|  | 4260 | */ | 
|  | 4261 | if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) || | 
|  | 4262 | enabling_u1) | 
|  | 4263 | u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000); | 
|  | 4264 | if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) || | 
|  | 4265 | enabling_u2) | 
|  | 4266 | u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000); | 
|  | 4267 |  | 
|  | 4268 | if (u1_mel_us > u2_mel_us) | 
|  | 4269 | mel_us = u1_mel_us; | 
|  | 4270 | else | 
|  | 4271 | mel_us = u2_mel_us; | 
|  | 4272 | /* xHCI host controller max exit latency field is only 16 bits wide. */ | 
|  | 4273 | if (mel_us > MAX_EXIT) { | 
|  | 4274 | dev_warn(&udev->dev, "Link PM max exit latency of %lluus " | 
|  | 4275 | "is too big.\n", mel_us); | 
|  | 4276 | return -E2BIG; | 
|  | 4277 | } | 
|  | 4278 | return mel_us; | 
|  | 4279 | } | 
|  | 4280 |  | 
|  | 4281 | /* Returns the USB3 hub-encoded value for the U1/U2 timeout. */ | 
|  | 4282 | int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd, | 
|  | 4283 | struct usb_device *udev, enum usb3_link_state state) | 
|  | 4284 | { | 
|  | 4285 | struct xhci_hcd	*xhci; | 
|  | 4286 | u16 hub_encoded_timeout; | 
|  | 4287 | int mel; | 
|  | 4288 | int ret; | 
|  | 4289 |  | 
|  | 4290 | xhci = hcd_to_xhci(hcd); | 
|  | 4291 | /* The LPM timeout values are pretty host-controller specific, so don't | 
|  | 4292 | * enable hub-initiated timeouts unless the vendor has provided | 
|  | 4293 | * information about their timeout algorithm. | 
|  | 4294 | */ | 
|  | 4295 | if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) || | 
|  | 4296 | !xhci->devs[udev->slot_id]) | 
|  | 4297 | return USB3_LPM_DISABLED; | 
|  | 4298 |  | 
|  | 4299 | hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state); | 
|  | 4300 | mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout); | 
|  | 4301 | if (mel < 0) { | 
|  | 4302 | /* Max Exit Latency is too big, disable LPM. */ | 
|  | 4303 | hub_encoded_timeout = USB3_LPM_DISABLED; | 
|  | 4304 | mel = 0; | 
|  | 4305 | } | 
|  | 4306 |  | 
|  | 4307 | ret = xhci_change_max_exit_latency(xhci, udev, mel); | 
|  | 4308 | if (ret) | 
|  | 4309 | return ret; | 
|  | 4310 | return hub_encoded_timeout; | 
|  | 4311 | } | 
|  | 4312 |  | 
|  | 4313 | int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd, | 
|  | 4314 | struct usb_device *udev, enum usb3_link_state state) | 
|  | 4315 | { | 
|  | 4316 | struct xhci_hcd	*xhci; | 
|  | 4317 | u16 mel; | 
|  | 4318 | int ret; | 
|  | 4319 |  | 
|  | 4320 | xhci = hcd_to_xhci(hcd); | 
|  | 4321 | if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) || | 
|  | 4322 | !xhci->devs[udev->slot_id]) | 
|  | 4323 | return 0; | 
|  | 4324 |  | 
|  | 4325 | mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED); | 
|  | 4326 | ret = xhci_change_max_exit_latency(xhci, udev, mel); | 
|  | 4327 | if (ret) | 
|  | 4328 | return ret; | 
|  | 4329 | return 0; | 
|  | 4330 | } | 
| Sarah Sharp | b01bcbf | 2012-05-21 07:54:42 -0700 | [diff] [blame] | 4331 | #else /* CONFIG_PM */ | 
|  | 4332 |  | 
|  | 4333 | int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd, | 
|  | 4334 | struct usb_device *udev, enum usb3_link_state state) | 
|  | 4335 | { | 
|  | 4336 | return USB3_LPM_DISABLED; | 
|  | 4337 | } | 
|  | 4338 |  | 
|  | 4339 | int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd, | 
|  | 4340 | struct usb_device *udev, enum usb3_link_state state) | 
|  | 4341 | { | 
|  | 4342 | return 0; | 
|  | 4343 | } | 
|  | 4344 | #endif	/* CONFIG_PM */ | 
|  | 4345 |  | 
| Sarah Sharp | 3b3db02 | 2012-05-09 10:55:03 -0700 | [diff] [blame] | 4346 | /*-------------------------------------------------------------------------*/ | 
|  | 4347 |  | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4348 | /* Once a hub descriptor is fetched for a device, we need to update the xHC's | 
|  | 4349 | * internal data structures for the device. | 
|  | 4350 | */ | 
|  | 4351 | int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev, | 
|  | 4352 | struct usb_tt *tt, gfp_t mem_flags) | 
|  | 4353 | { | 
|  | 4354 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 4355 | struct xhci_virt_device *vdev; | 
|  | 4356 | struct xhci_command *config_cmd; | 
|  | 4357 | struct xhci_input_control_ctx *ctrl_ctx; | 
|  | 4358 | struct xhci_slot_ctx *slot_ctx; | 
|  | 4359 | unsigned long flags; | 
|  | 4360 | unsigned think_time; | 
|  | 4361 | int ret; | 
|  | 4362 |  | 
|  | 4363 | /* Ignore root hubs */ | 
|  | 4364 | if (!hdev->parent) | 
|  | 4365 | return 0; | 
|  | 4366 |  | 
|  | 4367 | vdev = xhci->devs[hdev->slot_id]; | 
|  | 4368 | if (!vdev) { | 
|  | 4369 | xhci_warn(xhci, "Cannot update hub desc for unknown device.\n"); | 
|  | 4370 | return -EINVAL; | 
|  | 4371 | } | 
| Sarah Sharp | a1d78c1 | 2009-12-09 15:59:03 -0800 | [diff] [blame] | 4372 | config_cmd = xhci_alloc_command(xhci, true, true, mem_flags); | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4373 | if (!config_cmd) { | 
|  | 4374 | xhci_dbg(xhci, "Could not allocate xHCI command structure.\n"); | 
|  | 4375 | return -ENOMEM; | 
|  | 4376 | } | 
|  | 4377 |  | 
|  | 4378 | spin_lock_irqsave(&xhci->lock, flags); | 
| Sarah Sharp | 839c817 | 2011-09-02 11:05:47 -0700 | [diff] [blame] | 4379 | if (hdev->speed == USB_SPEED_HIGH && | 
|  | 4380 | xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) { | 
|  | 4381 | xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n"); | 
|  | 4382 | xhci_free_command(xhci, config_cmd); | 
|  | 4383 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 4384 | return -ENOMEM; | 
|  | 4385 | } | 
|  | 4386 |  | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4387 | xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx); | 
|  | 4388 | ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 4389 | ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG); | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4390 | slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 4391 | slot_ctx->dev_info |= cpu_to_le32(DEV_HUB); | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4392 | if (tt->multi) | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 4393 | slot_ctx->dev_info |= cpu_to_le32(DEV_MTT); | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4394 | if (xhci->hci_version > 0x95) { | 
|  | 4395 | xhci_dbg(xhci, "xHCI version %x needs hub " | 
|  | 4396 | "TT think time and number of ports\n", | 
|  | 4397 | (unsigned int) xhci->hci_version); | 
| Matt Evans | 28ccd29 | 2011-03-29 13:40:46 +1100 | [diff] [blame] | 4398 | slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild)); | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4399 | /* Set TT think time - convert from ns to FS bit times. | 
|  | 4400 | * 0 = 8 FS bit times, 1 = 16 FS bit times, | 
|  | 4401 | * 2 = 24 FS bit times, 3 = 32 FS bit times. | 
| Andiry Xu | 700b417 | 2011-05-05 18:14:05 +0800 | [diff] [blame] | 4402 | * | 
|  | 4403 | * xHCI 1.0: this field shall be 0 if the device is not a | 
|  | 4404 | * High-spped hub. | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4405 | */ | 
|  | 4406 | think_time = tt->think_time; | 
|  | 4407 | if (think_time != 0) | 
|  | 4408 | think_time = (think_time / 666) - 1; | 
| Andiry Xu | 700b417 | 2011-05-05 18:14:05 +0800 | [diff] [blame] | 4409 | if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH) | 
|  | 4410 | slot_ctx->tt_info |= | 
|  | 4411 | cpu_to_le32(TT_THINK_TIME(think_time)); | 
| Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 4412 | } else { | 
|  | 4413 | xhci_dbg(xhci, "xHCI version %x doesn't need hub " | 
|  | 4414 | "TT think time or number of ports\n", | 
|  | 4415 | (unsigned int) xhci->hci_version); | 
|  | 4416 | } | 
|  | 4417 | slot_ctx->dev_state = 0; | 
|  | 4418 | spin_unlock_irqrestore(&xhci->lock, flags); | 
|  | 4419 |  | 
|  | 4420 | xhci_dbg(xhci, "Set up %s for hub device.\n", | 
|  | 4421 | (xhci->hci_version > 0x95) ? | 
|  | 4422 | "configure endpoint" : "evaluate context"); | 
|  | 4423 | xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id); | 
|  | 4424 | xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0); | 
|  | 4425 |  | 
|  | 4426 | /* Issue and wait for the configure endpoint or | 
|  | 4427 | * evaluate context command. | 
|  | 4428 | */ | 
|  | 4429 | if (xhci->hci_version > 0x95) | 
|  | 4430 | ret = xhci_configure_endpoint(xhci, hdev, config_cmd, | 
|  | 4431 | false, false); | 
|  | 4432 | else | 
|  | 4433 | ret = xhci_configure_endpoint(xhci, hdev, config_cmd, | 
|  | 4434 | true, false); | 
|  | 4435 |  | 
|  | 4436 | xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id); | 
|  | 4437 | xhci_dbg_ctx(xhci, vdev->out_ctx, 0); | 
|  | 4438 |  | 
|  | 4439 | xhci_free_command(xhci, config_cmd); | 
|  | 4440 | return ret; | 
|  | 4441 | } | 
|  | 4442 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4443 | int xhci_get_frame(struct usb_hcd *hcd) | 
|  | 4444 | { | 
|  | 4445 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); | 
|  | 4446 | /* EHCI mods by the periodic size.  Why? */ | 
|  | 4447 | return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3; | 
|  | 4448 | } | 
|  | 4449 |  | 
| Sebastian Andrzej Siewior | 552e0c4 | 2011-09-23 14:20:01 -0700 | [diff] [blame] | 4450 | int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks) | 
|  | 4451 | { | 
|  | 4452 | struct xhci_hcd		*xhci; | 
|  | 4453 | struct device		*dev = hcd->self.controller; | 
|  | 4454 | int			retval; | 
|  | 4455 | u32			temp; | 
|  | 4456 |  | 
| Andiry Xu | fdaf8b3 | 2012-03-05 17:49:38 +0800 | [diff] [blame] | 4457 | /* Accept arbitrarily long scatter-gather lists */ | 
|  | 4458 | hcd->self.sg_tablesize = ~0; | 
| Hans de Goede | 19181bc | 2012-07-04 09:18:02 +0200 | [diff] [blame] | 4459 | /* XHCI controllers don't stop the ep queue on short packets :| */ | 
|  | 4460 | hcd->self.no_stop_on_short = 1; | 
| Sebastian Andrzej Siewior | 552e0c4 | 2011-09-23 14:20:01 -0700 | [diff] [blame] | 4461 |  | 
|  | 4462 | if (usb_hcd_is_primary_hcd(hcd)) { | 
|  | 4463 | xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL); | 
|  | 4464 | if (!xhci) | 
|  | 4465 | return -ENOMEM; | 
|  | 4466 | *((struct xhci_hcd **) hcd->hcd_priv) = xhci; | 
|  | 4467 | xhci->main_hcd = hcd; | 
|  | 4468 | /* Mark the first roothub as being USB 2.0. | 
|  | 4469 | * The xHCI driver will register the USB 3.0 roothub. | 
|  | 4470 | */ | 
|  | 4471 | hcd->speed = HCD_USB2; | 
|  | 4472 | hcd->self.root_hub->speed = USB_SPEED_HIGH; | 
|  | 4473 | /* | 
|  | 4474 | * USB 2.0 roothub under xHCI has an integrated TT, | 
|  | 4475 | * (rate matching hub) as opposed to having an OHCI/UHCI | 
|  | 4476 | * companion controller. | 
|  | 4477 | */ | 
|  | 4478 | hcd->has_tt = 1; | 
|  | 4479 | } else { | 
|  | 4480 | /* xHCI private pointer was set in xhci_pci_probe for the second | 
|  | 4481 | * registered roothub. | 
|  | 4482 | */ | 
|  | 4483 | xhci = hcd_to_xhci(hcd); | 
|  | 4484 | temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params); | 
|  | 4485 | if (HCC_64BIT_ADDR(temp)) { | 
|  | 4486 | xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n"); | 
|  | 4487 | dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64)); | 
|  | 4488 | } else { | 
|  | 4489 | dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32)); | 
|  | 4490 | } | 
|  | 4491 | return 0; | 
|  | 4492 | } | 
|  | 4493 |  | 
|  | 4494 | xhci->cap_regs = hcd->regs; | 
|  | 4495 | xhci->op_regs = hcd->regs + | 
|  | 4496 | HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase)); | 
|  | 4497 | xhci->run_regs = hcd->regs + | 
|  | 4498 | (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK); | 
|  | 4499 | /* Cache read-only capability registers */ | 
|  | 4500 | xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1); | 
|  | 4501 | xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2); | 
|  | 4502 | xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3); | 
|  | 4503 | xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase); | 
|  | 4504 | xhci->hci_version = HC_VERSION(xhci->hcc_params); | 
|  | 4505 | xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params); | 
|  | 4506 | xhci_print_registers(xhci); | 
|  | 4507 |  | 
|  | 4508 | get_quirks(dev, xhci); | 
|  | 4509 |  | 
|  | 4510 | /* Make sure the HC is halted. */ | 
|  | 4511 | retval = xhci_halt(xhci); | 
|  | 4512 | if (retval) | 
|  | 4513 | goto error; | 
|  | 4514 |  | 
|  | 4515 | xhci_dbg(xhci, "Resetting HCD\n"); | 
|  | 4516 | /* Reset the internal HC memory state and registers. */ | 
|  | 4517 | retval = xhci_reset(xhci); | 
|  | 4518 | if (retval) | 
|  | 4519 | goto error; | 
|  | 4520 | xhci_dbg(xhci, "Reset complete\n"); | 
|  | 4521 |  | 
|  | 4522 | temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params); | 
|  | 4523 | if (HCC_64BIT_ADDR(temp)) { | 
|  | 4524 | xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n"); | 
|  | 4525 | dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64)); | 
|  | 4526 | } else { | 
|  | 4527 | dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32)); | 
|  | 4528 | } | 
|  | 4529 |  | 
|  | 4530 | xhci_dbg(xhci, "Calling HCD init\n"); | 
|  | 4531 | /* Initialize HCD and host controller data structures. */ | 
|  | 4532 | retval = xhci_init(hcd); | 
|  | 4533 | if (retval) | 
|  | 4534 | goto error; | 
|  | 4535 | xhci_dbg(xhci, "Called HCD init\n"); | 
|  | 4536 | return 0; | 
|  | 4537 | error: | 
|  | 4538 | kfree(xhci); | 
|  | 4539 | return retval; | 
|  | 4540 | } | 
|  | 4541 |  | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4542 | MODULE_DESCRIPTION(DRIVER_DESC); | 
|  | 4543 | MODULE_AUTHOR(DRIVER_AUTHOR); | 
|  | 4544 | MODULE_LICENSE("GPL"); | 
|  | 4545 |  | 
|  | 4546 | static int __init xhci_hcd_init(void) | 
|  | 4547 | { | 
| Sebastian Andrzej Siewior | 0cc47d5 | 2011-09-23 14:20:02 -0700 | [diff] [blame] | 4548 | int retval; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4549 |  | 
|  | 4550 | retval = xhci_register_pci(); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4551 | if (retval < 0) { | 
|  | 4552 | printk(KERN_DEBUG "Problem registering PCI driver."); | 
|  | 4553 | return retval; | 
|  | 4554 | } | 
| Sebastian Andrzej Siewior | 3429e91 | 2012-03-13 16:57:41 +0200 | [diff] [blame] | 4555 | retval = xhci_register_plat(); | 
|  | 4556 | if (retval < 0) { | 
|  | 4557 | printk(KERN_DEBUG "Problem registering platform driver."); | 
|  | 4558 | goto unreg_pci; | 
|  | 4559 | } | 
| Sarah Sharp | 9844197 | 2009-05-14 11:44:18 -0700 | [diff] [blame] | 4560 | /* | 
|  | 4561 | * Check the compiler generated sizes of structures that must be laid | 
|  | 4562 | * out in specific ways for hardware access. | 
|  | 4563 | */ | 
|  | 4564 | BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8); | 
|  | 4565 | BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8); | 
|  | 4566 | BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8); | 
|  | 4567 | /* xhci_device_control has eight fields, and also | 
|  | 4568 | * embeds one xhci_slot_ctx and 31 xhci_ep_ctx | 
|  | 4569 | */ | 
| Sarah Sharp | 9844197 | 2009-05-14 11:44:18 -0700 | [diff] [blame] | 4570 | BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8); | 
|  | 4571 | BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8); | 
|  | 4572 | BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8); | 
|  | 4573 | BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8); | 
|  | 4574 | BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8); | 
|  | 4575 | /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */ | 
|  | 4576 | BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4577 | return 0; | 
| Sebastian Andrzej Siewior | 3429e91 | 2012-03-13 16:57:41 +0200 | [diff] [blame] | 4578 | unreg_pci: | 
|  | 4579 | xhci_unregister_pci(); | 
|  | 4580 | return retval; | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4581 | } | 
|  | 4582 | module_init(xhci_hcd_init); | 
|  | 4583 |  | 
|  | 4584 | static void __exit xhci_hcd_cleanup(void) | 
|  | 4585 | { | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4586 | xhci_unregister_pci(); | 
| Sebastian Andrzej Siewior | 3429e91 | 2012-03-13 16:57:41 +0200 | [diff] [blame] | 4587 | xhci_unregister_plat(); | 
| Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 4588 | } | 
|  | 4589 | module_exit(xhci_hcd_cleanup); |