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