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 | |
| 23 | #include <linux/irq.h> |
| 24 | #include <linux/module.h> |
Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 25 | #include <linux/moduleparam.h> |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 26 | |
| 27 | #include "xhci.h" |
| 28 | |
| 29 | #define DRIVER_AUTHOR "Sarah Sharp" |
| 30 | #define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver" |
| 31 | |
Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 32 | /* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */ |
| 33 | static int link_quirk; |
| 34 | module_param(link_quirk, int, S_IRUGO | S_IWUSR); |
| 35 | MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB"); |
| 36 | |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 37 | /* TODO: copied from ehci-hcd.c - can this be refactored? */ |
| 38 | /* |
| 39 | * handshake - spin reading hc until handshake completes or fails |
| 40 | * @ptr: address of hc register to be read |
| 41 | * @mask: bits to look at in result of read |
| 42 | * @done: value of those bits when handshake succeeds |
| 43 | * @usec: timeout in microseconds |
| 44 | * |
| 45 | * Returns negative errno, or zero on success |
| 46 | * |
| 47 | * Success happens when the "mask" bits have the specified value (hardware |
| 48 | * handshake done). There are two failure modes: "usec" have passed (major |
| 49 | * hardware flakeout), or the register reads as all-ones (hardware removed). |
| 50 | */ |
| 51 | static int handshake(struct xhci_hcd *xhci, void __iomem *ptr, |
| 52 | u32 mask, u32 done, int usec) |
| 53 | { |
| 54 | u32 result; |
| 55 | |
| 56 | do { |
| 57 | result = xhci_readl(xhci, ptr); |
| 58 | if (result == ~(u32)0) /* card removed */ |
| 59 | return -ENODEV; |
| 60 | result &= mask; |
| 61 | if (result == done) |
| 62 | return 0; |
| 63 | udelay(1); |
| 64 | usec--; |
| 65 | } while (usec > 0); |
| 66 | return -ETIMEDOUT; |
| 67 | } |
| 68 | |
| 69 | /* |
Sarah Sharp | 4f0f0ba | 2009-10-27 10:56:33 -0700 | [diff] [blame] | 70 | * Disable interrupts and begin the xHCI halting process. |
| 71 | */ |
| 72 | void xhci_quiesce(struct xhci_hcd *xhci) |
| 73 | { |
| 74 | u32 halted; |
| 75 | u32 cmd; |
| 76 | u32 mask; |
| 77 | |
| 78 | mask = ~(XHCI_IRQS); |
| 79 | halted = xhci_readl(xhci, &xhci->op_regs->status) & STS_HALT; |
| 80 | if (!halted) |
| 81 | mask &= ~CMD_RUN; |
| 82 | |
| 83 | cmd = xhci_readl(xhci, &xhci->op_regs->command); |
| 84 | cmd &= mask; |
| 85 | xhci_writel(xhci, cmd, &xhci->op_regs->command); |
| 86 | } |
| 87 | |
| 88 | /* |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 89 | * Force HC into halt state. |
| 90 | * |
| 91 | * Disable any IRQs and clear the run/stop bit. |
| 92 | * HC will complete any current and actively pipelined transactions, and |
| 93 | * should halt within 16 microframes of the run/stop bit being cleared. |
| 94 | * Read HC Halted bit in the status register to see when the HC is finished. |
| 95 | * XXX: shouldn't we set HC_STATE_HALT here somewhere? |
| 96 | */ |
| 97 | int xhci_halt(struct xhci_hcd *xhci) |
| 98 | { |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 99 | xhci_dbg(xhci, "// Halt the HC\n"); |
Sarah Sharp | 4f0f0ba | 2009-10-27 10:56:33 -0700 | [diff] [blame] | 100 | xhci_quiesce(xhci); |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 101 | |
| 102 | return handshake(xhci, &xhci->op_regs->status, |
| 103 | STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC); |
| 104 | } |
| 105 | |
| 106 | /* |
| 107 | * Reset a halted HC, and set the internal HC state to HC_STATE_HALT. |
| 108 | * |
| 109 | * This resets pipelines, timers, counters, state machines, etc. |
| 110 | * Transactions will be terminated immediately, and operational registers |
| 111 | * will be set to their defaults. |
| 112 | */ |
| 113 | int xhci_reset(struct xhci_hcd *xhci) |
| 114 | { |
| 115 | u32 command; |
| 116 | u32 state; |
| 117 | |
| 118 | state = xhci_readl(xhci, &xhci->op_regs->status); |
Sarah Sharp | d3512f6 | 2009-07-27 12:03:50 -0700 | [diff] [blame] | 119 | if ((state & STS_HALT) == 0) { |
| 120 | xhci_warn(xhci, "Host controller not halted, aborting reset.\n"); |
| 121 | return 0; |
| 122 | } |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 123 | |
| 124 | xhci_dbg(xhci, "// Reset the HC\n"); |
| 125 | command = xhci_readl(xhci, &xhci->op_regs->command); |
| 126 | command |= CMD_RESET; |
| 127 | xhci_writel(xhci, command, &xhci->op_regs->command); |
| 128 | /* XXX: Why does EHCI set this here? Shouldn't other code do this? */ |
| 129 | xhci_to_hcd(xhci)->state = HC_STATE_HALT; |
| 130 | |
| 131 | return handshake(xhci, &xhci->op_regs->command, CMD_RESET, 0, 250 * 1000); |
| 132 | } |
| 133 | |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 134 | |
| 135 | #if 0 |
| 136 | /* Set up MSI-X table for entry 0 (may claim other entries later) */ |
| 137 | static int xhci_setup_msix(struct xhci_hcd *xhci) |
| 138 | { |
| 139 | int ret; |
| 140 | struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller); |
| 141 | |
| 142 | xhci->msix_count = 0; |
| 143 | /* XXX: did I do this right? ixgbe does kcalloc for more than one */ |
| 144 | xhci->msix_entries = kmalloc(sizeof(struct msix_entry), GFP_KERNEL); |
| 145 | if (!xhci->msix_entries) { |
| 146 | xhci_err(xhci, "Failed to allocate MSI-X entries\n"); |
| 147 | return -ENOMEM; |
| 148 | } |
| 149 | xhci->msix_entries[0].entry = 0; |
| 150 | |
| 151 | ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count); |
| 152 | if (ret) { |
| 153 | xhci_err(xhci, "Failed to enable MSI-X\n"); |
| 154 | goto free_entries; |
| 155 | } |
| 156 | |
| 157 | /* |
| 158 | * Pass the xhci pointer value as the request_irq "cookie". |
| 159 | * If more irqs are added, this will need to be unique for each one. |
| 160 | */ |
| 161 | ret = request_irq(xhci->msix_entries[0].vector, &xhci_irq, 0, |
| 162 | "xHCI", xhci_to_hcd(xhci)); |
| 163 | if (ret) { |
| 164 | xhci_err(xhci, "Failed to allocate MSI-X interrupt\n"); |
| 165 | goto disable_msix; |
| 166 | } |
| 167 | xhci_dbg(xhci, "Finished setting up MSI-X\n"); |
| 168 | return 0; |
| 169 | |
| 170 | disable_msix: |
| 171 | pci_disable_msix(pdev); |
| 172 | free_entries: |
| 173 | kfree(xhci->msix_entries); |
| 174 | xhci->msix_entries = NULL; |
| 175 | return ret; |
| 176 | } |
| 177 | |
| 178 | /* XXX: code duplication; can xhci_setup_msix call this? */ |
| 179 | /* Free any IRQs and disable MSI-X */ |
| 180 | static void xhci_cleanup_msix(struct xhci_hcd *xhci) |
| 181 | { |
| 182 | struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller); |
| 183 | if (!xhci->msix_entries) |
| 184 | return; |
| 185 | |
| 186 | free_irq(xhci->msix_entries[0].vector, xhci); |
| 187 | pci_disable_msix(pdev); |
| 188 | kfree(xhci->msix_entries); |
| 189 | xhci->msix_entries = NULL; |
| 190 | xhci_dbg(xhci, "Finished cleaning up MSI-X\n"); |
| 191 | } |
| 192 | #endif |
| 193 | |
| 194 | /* |
| 195 | * Initialize memory for HCD and xHC (one-time init). |
| 196 | * |
| 197 | * Program the PAGESIZE register, initialize the device context array, create |
| 198 | * device contexts (?), set up a command ring segment (or two?), create event |
| 199 | * ring (one for now). |
| 200 | */ |
| 201 | int xhci_init(struct usb_hcd *hcd) |
| 202 | { |
| 203 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 204 | int retval = 0; |
| 205 | |
| 206 | xhci_dbg(xhci, "xhci_init\n"); |
| 207 | spin_lock_init(&xhci->lock); |
Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 208 | if (link_quirk) { |
| 209 | xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n"); |
| 210 | xhci->quirks |= XHCI_LINK_TRB_QUIRK; |
| 211 | } else { |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 212 | xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n"); |
Sarah Sharp | b0567b3 | 2009-08-07 14:04:36 -0700 | [diff] [blame] | 213 | } |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 214 | retval = xhci_mem_init(xhci, GFP_KERNEL); |
| 215 | xhci_dbg(xhci, "Finished xhci_init\n"); |
| 216 | |
| 217 | return retval; |
| 218 | } |
| 219 | |
| 220 | /* |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 221 | * Called in interrupt context when there might be work |
| 222 | * queued on the event ring |
| 223 | * |
| 224 | * xhci->lock must be held by caller. |
| 225 | */ |
| 226 | static void xhci_work(struct xhci_hcd *xhci) |
| 227 | { |
| 228 | u32 temp; |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 229 | u64 temp_64; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 230 | |
| 231 | /* |
| 232 | * Clear the op reg interrupt status first, |
| 233 | * so we can receive interrupts from other MSI-X interrupters. |
| 234 | * Write 1 to clear the interrupt status. |
| 235 | */ |
| 236 | temp = xhci_readl(xhci, &xhci->op_regs->status); |
| 237 | temp |= STS_EINT; |
| 238 | xhci_writel(xhci, temp, &xhci->op_regs->status); |
| 239 | /* FIXME when MSI-X is supported and there are multiple vectors */ |
| 240 | /* Clear the MSI-X event interrupt status */ |
| 241 | |
| 242 | /* Acknowledge the interrupt */ |
| 243 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); |
| 244 | temp |= 0x3; |
| 245 | xhci_writel(xhci, temp, &xhci->ir_set->irq_pending); |
| 246 | /* Flush posted writes */ |
| 247 | xhci_readl(xhci, &xhci->ir_set->irq_pending); |
| 248 | |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 249 | if (xhci->xhc_state & XHCI_STATE_DYING) |
| 250 | xhci_dbg(xhci, "xHCI dying, ignoring interrupt. " |
| 251 | "Shouldn't IRQs be disabled?\n"); |
| 252 | else |
| 253 | /* FIXME this should be a delayed service routine |
| 254 | * that clears the EHB. |
| 255 | */ |
| 256 | xhci_handle_event(xhci); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 257 | |
Sarah Sharp | 2d83109 | 2009-07-27 12:03:40 -0700 | [diff] [blame] | 258 | /* Clear the event handler busy flag (RW1C); the event ring should be empty. */ |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 259 | temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); |
Sarah Sharp | 2d83109 | 2009-07-27 12:03:40 -0700 | [diff] [blame] | 260 | xhci_write_64(xhci, temp_64 | ERST_EHB, &xhci->ir_set->erst_dequeue); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 261 | /* Flush posted writes -- FIXME is this necessary? */ |
| 262 | xhci_readl(xhci, &xhci->ir_set->irq_pending); |
| 263 | } |
| 264 | |
| 265 | /*-------------------------------------------------------------------------*/ |
| 266 | |
| 267 | /* |
| 268 | * xHCI spec says we can get an interrupt, and if the HC has an error condition, |
| 269 | * we might get bad data out of the event ring. Section 4.10.2.7 has a list of |
| 270 | * indicators of an event TRB error, but we check the status *first* to be safe. |
| 271 | */ |
| 272 | irqreturn_t xhci_irq(struct usb_hcd *hcd) |
| 273 | { |
| 274 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 275 | u32 temp, temp2; |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 276 | union xhci_trb *trb; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 277 | |
| 278 | spin_lock(&xhci->lock); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 279 | trb = xhci->event_ring->dequeue; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 280 | /* Check if the xHC generated the interrupt, or the irq is shared */ |
| 281 | temp = xhci_readl(xhci, &xhci->op_regs->status); |
| 282 | temp2 = xhci_readl(xhci, &xhci->ir_set->irq_pending); |
Sarah Sharp | fcf8f57 | 2009-07-27 12:04:01 -0700 | [diff] [blame] | 283 | if (temp == 0xffffffff && temp2 == 0xffffffff) |
| 284 | goto hw_died; |
| 285 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 286 | if (!(temp & STS_EINT) && !ER_IRQ_PENDING(temp2)) { |
| 287 | spin_unlock(&xhci->lock); |
| 288 | return IRQ_NONE; |
| 289 | } |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 290 | xhci_dbg(xhci, "op reg status = %08x\n", temp); |
| 291 | xhci_dbg(xhci, "ir set irq_pending = %08x\n", temp2); |
| 292 | xhci_dbg(xhci, "Event ring dequeue ptr:\n"); |
| 293 | xhci_dbg(xhci, "@%llx %08x %08x %08x %08x\n", |
| 294 | (unsigned long long)xhci_trb_virt_to_dma(xhci->event_ring->deq_seg, trb), |
| 295 | lower_32_bits(trb->link.segment_ptr), |
| 296 | upper_32_bits(trb->link.segment_ptr), |
| 297 | (unsigned int) trb->link.intr_target, |
| 298 | (unsigned int) trb->link.control); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 299 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 300 | if (temp & STS_FATAL) { |
| 301 | xhci_warn(xhci, "WARNING: Host System Error\n"); |
| 302 | xhci_halt(xhci); |
Sarah Sharp | fcf8f57 | 2009-07-27 12:04:01 -0700 | [diff] [blame] | 303 | hw_died: |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 304 | xhci_to_hcd(xhci)->state = HC_STATE_HALT; |
Sarah Sharp | c96a2b8 | 2009-04-29 19:05:40 -0700 | [diff] [blame] | 305 | spin_unlock(&xhci->lock); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 306 | return -ESHUTDOWN; |
| 307 | } |
| 308 | |
| 309 | xhci_work(xhci); |
| 310 | spin_unlock(&xhci->lock); |
| 311 | |
| 312 | return IRQ_HANDLED; |
| 313 | } |
| 314 | |
| 315 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 316 | void xhci_event_ring_work(unsigned long arg) |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 317 | { |
| 318 | unsigned long flags; |
| 319 | int temp; |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 320 | u64 temp_64; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 321 | struct xhci_hcd *xhci = (struct xhci_hcd *) arg; |
| 322 | int i, j; |
| 323 | |
| 324 | xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies); |
| 325 | |
| 326 | spin_lock_irqsave(&xhci->lock, flags); |
| 327 | temp = xhci_readl(xhci, &xhci->op_regs->status); |
| 328 | xhci_dbg(xhci, "op reg status = 0x%x\n", temp); |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 329 | if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING)) { |
Sarah Sharp | e4ab05d | 2009-09-16 16:42:30 -0700 | [diff] [blame] | 330 | xhci_dbg(xhci, "HW died, polling stopped.\n"); |
| 331 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 332 | return; |
| 333 | } |
| 334 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 335 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); |
| 336 | xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp); |
| 337 | xhci_dbg(xhci, "No-op commands handled = %d\n", xhci->noops_handled); |
| 338 | xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask); |
| 339 | xhci->error_bitmask = 0; |
| 340 | xhci_dbg(xhci, "Event ring:\n"); |
| 341 | xhci_debug_segment(xhci, xhci->event_ring->deq_seg); |
| 342 | xhci_dbg_ring_ptrs(xhci, xhci->event_ring); |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 343 | temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); |
| 344 | temp_64 &= ~ERST_PTR_MASK; |
| 345 | 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] | 346 | xhci_dbg(xhci, "Command ring:\n"); |
| 347 | xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg); |
| 348 | xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring); |
| 349 | xhci_dbg_cmd_ptrs(xhci); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 350 | for (i = 0; i < MAX_HC_SLOTS; ++i) { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 351 | if (!xhci->devs[i]) |
| 352 | continue; |
| 353 | for (j = 0; j < 31; ++j) { |
| 354 | struct xhci_ring *ring = xhci->devs[i]->eps[j].ring; |
| 355 | if (!ring) |
| 356 | continue; |
| 357 | xhci_dbg(xhci, "Dev %d endpoint ring %d:\n", i, j); |
| 358 | xhci_debug_segment(xhci, ring->deq_seg); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 359 | } |
| 360 | } |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 361 | |
| 362 | if (xhci->noops_submitted != NUM_TEST_NOOPS) |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 363 | if (xhci_setup_one_noop(xhci)) |
| 364 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 365 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 366 | |
| 367 | if (!xhci->zombie) |
| 368 | mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ); |
| 369 | else |
| 370 | xhci_dbg(xhci, "Quit polling the event ring.\n"); |
| 371 | } |
| 372 | #endif |
| 373 | |
| 374 | /* |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 375 | * Start the HC after it was halted. |
| 376 | * |
| 377 | * This function is called by the USB core when the HC driver is added. |
| 378 | * Its opposite is xhci_stop(). |
| 379 | * |
| 380 | * xhci_init() must be called once before this function can be called. |
| 381 | * Reset the HC, enable device slot contexts, program DCBAAP, and |
| 382 | * set command ring pointer and event ring pointer. |
| 383 | * |
| 384 | * Setup MSI-X vectors and enable interrupts. |
| 385 | */ |
| 386 | int xhci_run(struct usb_hcd *hcd) |
| 387 | { |
| 388 | u32 temp; |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 389 | u64 temp_64; |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 390 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 391 | void (*doorbell)(struct xhci_hcd *) = NULL; |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 392 | |
Sarah Sharp | 0f2a793 | 2009-04-27 19:57:12 -0700 | [diff] [blame] | 393 | hcd->uses_new_polling = 1; |
| 394 | hcd->poll_rh = 0; |
| 395 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 396 | xhci_dbg(xhci, "xhci_run\n"); |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 397 | #if 0 /* FIXME: MSI not setup yet */ |
| 398 | /* Do this at the very last minute */ |
| 399 | ret = xhci_setup_msix(xhci); |
| 400 | if (!ret) |
| 401 | return ret; |
| 402 | |
| 403 | return -ENOSYS; |
| 404 | #endif |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 405 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING |
| 406 | init_timer(&xhci->event_ring_timer); |
| 407 | xhci->event_ring_timer.data = (unsigned long) xhci; |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 408 | xhci->event_ring_timer.function = xhci_event_ring_work; |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 409 | /* Poll the event ring */ |
| 410 | xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ; |
| 411 | xhci->zombie = 0; |
| 412 | xhci_dbg(xhci, "Setting event ring polling timer\n"); |
| 413 | add_timer(&xhci->event_ring_timer); |
| 414 | #endif |
| 415 | |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 416 | xhci_dbg(xhci, "Command ring memory map follows:\n"); |
| 417 | xhci_debug_ring(xhci, xhci->cmd_ring); |
| 418 | xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring); |
| 419 | xhci_dbg_cmd_ptrs(xhci); |
| 420 | |
| 421 | xhci_dbg(xhci, "ERST memory map follows:\n"); |
| 422 | xhci_dbg_erst(xhci, &xhci->erst); |
| 423 | xhci_dbg(xhci, "Event ring:\n"); |
| 424 | xhci_debug_ring(xhci, xhci->event_ring); |
| 425 | xhci_dbg_ring_ptrs(xhci, xhci->event_ring); |
| 426 | temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); |
| 427 | temp_64 &= ~ERST_PTR_MASK; |
| 428 | xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64); |
| 429 | |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 430 | xhci_dbg(xhci, "// Set the interrupt modulation register\n"); |
| 431 | temp = xhci_readl(xhci, &xhci->ir_set->irq_control); |
Sarah Sharp | a4d8830 | 2009-05-14 11:44:26 -0700 | [diff] [blame] | 432 | temp &= ~ER_IRQ_INTERVAL_MASK; |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 433 | temp |= (u32) 160; |
| 434 | xhci_writel(xhci, temp, &xhci->ir_set->irq_control); |
| 435 | |
| 436 | /* Set the HCD state before we enable the irqs */ |
| 437 | hcd->state = HC_STATE_RUNNING; |
| 438 | temp = xhci_readl(xhci, &xhci->op_regs->command); |
| 439 | temp |= (CMD_EIE); |
| 440 | xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n", |
| 441 | temp); |
| 442 | xhci_writel(xhci, temp, &xhci->op_regs->command); |
| 443 | |
| 444 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 445 | xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n", |
| 446 | xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp)); |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 447 | xhci_writel(xhci, ER_IRQ_ENABLE(temp), |
| 448 | &xhci->ir_set->irq_pending); |
| 449 | xhci_print_ir_set(xhci, xhci->ir_set, 0); |
| 450 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 451 | if (NUM_TEST_NOOPS > 0) |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 452 | doorbell = xhci_setup_one_noop(xhci); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 453 | |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 454 | temp = xhci_readl(xhci, &xhci->op_regs->command); |
| 455 | temp |= (CMD_RUN); |
| 456 | xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n", |
| 457 | temp); |
| 458 | xhci_writel(xhci, temp, &xhci->op_regs->command); |
| 459 | /* Flush PCI posted writes */ |
| 460 | temp = xhci_readl(xhci, &xhci->op_regs->command); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 461 | xhci_dbg(xhci, "// @%p = 0x%x\n", &xhci->op_regs->command, temp); |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 462 | if (doorbell) |
| 463 | (*doorbell)(xhci); |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 464 | |
| 465 | xhci_dbg(xhci, "Finished xhci_run\n"); |
| 466 | return 0; |
| 467 | } |
| 468 | |
| 469 | /* |
| 470 | * Stop xHCI driver. |
| 471 | * |
| 472 | * This function is called by the USB core when the HC driver is removed. |
| 473 | * Its opposite is xhci_run(). |
| 474 | * |
| 475 | * Disable device contexts, disable IRQs, and quiesce the HC. |
| 476 | * Reset the HC, finish any completed transactions, and cleanup memory. |
| 477 | */ |
| 478 | void xhci_stop(struct usb_hcd *hcd) |
| 479 | { |
| 480 | u32 temp; |
| 481 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 482 | |
| 483 | spin_lock_irq(&xhci->lock); |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 484 | xhci_halt(xhci); |
| 485 | xhci_reset(xhci); |
| 486 | spin_unlock_irq(&xhci->lock); |
| 487 | |
| 488 | #if 0 /* No MSI yet */ |
| 489 | xhci_cleanup_msix(xhci); |
| 490 | #endif |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 491 | #ifdef CONFIG_USB_XHCI_HCD_DEBUGGING |
| 492 | /* Tell the event ring poll function not to reschedule */ |
| 493 | xhci->zombie = 1; |
| 494 | del_timer_sync(&xhci->event_ring_timer); |
| 495 | #endif |
| 496 | |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 497 | xhci_dbg(xhci, "// Disabling event ring interrupts\n"); |
| 498 | temp = xhci_readl(xhci, &xhci->op_regs->status); |
| 499 | xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status); |
| 500 | temp = xhci_readl(xhci, &xhci->ir_set->irq_pending); |
| 501 | xhci_writel(xhci, ER_IRQ_DISABLE(temp), |
| 502 | &xhci->ir_set->irq_pending); |
| 503 | xhci_print_ir_set(xhci, xhci->ir_set, 0); |
| 504 | |
| 505 | xhci_dbg(xhci, "cleaning up memory\n"); |
| 506 | xhci_mem_cleanup(xhci); |
| 507 | xhci_dbg(xhci, "xhci_stop completed - status = %x\n", |
| 508 | xhci_readl(xhci, &xhci->op_regs->status)); |
| 509 | } |
| 510 | |
| 511 | /* |
| 512 | * Shutdown HC (not bus-specific) |
| 513 | * |
| 514 | * This is called when the machine is rebooting or halting. We assume that the |
| 515 | * machine will be powered off, and the HC's internal state will be reset. |
| 516 | * Don't bother to free memory. |
| 517 | */ |
| 518 | void xhci_shutdown(struct usb_hcd *hcd) |
| 519 | { |
| 520 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 521 | |
| 522 | spin_lock_irq(&xhci->lock); |
| 523 | xhci_halt(xhci); |
| 524 | spin_unlock_irq(&xhci->lock); |
| 525 | |
| 526 | #if 0 |
| 527 | xhci_cleanup_msix(xhci); |
| 528 | #endif |
| 529 | |
| 530 | xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n", |
| 531 | xhci_readl(xhci, &xhci->op_regs->status)); |
| 532 | } |
| 533 | |
Sarah Sharp | 7f84eef | 2009-04-27 19:53:56 -0700 | [diff] [blame] | 534 | /*-------------------------------------------------------------------------*/ |
| 535 | |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 536 | /** |
| 537 | * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and |
| 538 | * HCDs. Find the index for an endpoint given its descriptor. Use the return |
| 539 | * value to right shift 1 for the bitmask. |
| 540 | * |
| 541 | * Index = (epnum * 2) + direction - 1, |
| 542 | * where direction = 0 for OUT, 1 for IN. |
| 543 | * For control endpoints, the IN index is used (OUT index is unused), so |
| 544 | * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2) |
| 545 | */ |
| 546 | unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc) |
| 547 | { |
| 548 | unsigned int index; |
| 549 | if (usb_endpoint_xfer_control(desc)) |
| 550 | index = (unsigned int) (usb_endpoint_num(desc)*2); |
| 551 | else |
| 552 | index = (unsigned int) (usb_endpoint_num(desc)*2) + |
| 553 | (usb_endpoint_dir_in(desc) ? 1 : 0) - 1; |
| 554 | return index; |
| 555 | } |
| 556 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 557 | /* Find the flag for this endpoint (for use in the control context). Use the |
| 558 | * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is |
| 559 | * bit 1, etc. |
| 560 | */ |
| 561 | unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc) |
| 562 | { |
| 563 | return 1 << (xhci_get_endpoint_index(desc) + 1); |
| 564 | } |
| 565 | |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 566 | /* Find the flag for this endpoint (for use in the control context). Use the |
| 567 | * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is |
| 568 | * bit 1, etc. |
| 569 | */ |
| 570 | unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index) |
| 571 | { |
| 572 | return 1 << (ep_index + 1); |
| 573 | } |
| 574 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 575 | /* Compute the last valid endpoint context index. Basically, this is the |
| 576 | * endpoint index plus one. For slot contexts with more than valid endpoint, |
| 577 | * we find the most significant bit set in the added contexts flags. |
| 578 | * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000 |
| 579 | * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one. |
| 580 | */ |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 581 | unsigned int xhci_last_valid_endpoint(u32 added_ctxs) |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 582 | { |
| 583 | return fls(added_ctxs) - 1; |
| 584 | } |
| 585 | |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 586 | /* Returns 1 if the arguments are OK; |
| 587 | * returns 0 this is a root hub; returns -EINVAL for NULL pointers. |
| 588 | */ |
| 589 | int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev, |
| 590 | struct usb_host_endpoint *ep, int check_ep, const char *func) { |
| 591 | if (!hcd || (check_ep && !ep) || !udev) { |
| 592 | printk(KERN_DEBUG "xHCI %s called with invalid args\n", |
| 593 | func); |
| 594 | return -EINVAL; |
| 595 | } |
| 596 | if (!udev->parent) { |
| 597 | printk(KERN_DEBUG "xHCI %s called for root hub\n", |
| 598 | func); |
| 599 | return 0; |
| 600 | } |
| 601 | if (!udev->slot_id) { |
| 602 | printk(KERN_DEBUG "xHCI %s called with unaddressed device\n", |
| 603 | func); |
| 604 | return -EINVAL; |
| 605 | } |
| 606 | return 1; |
| 607 | } |
| 608 | |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 609 | static int xhci_configure_endpoint(struct xhci_hcd *xhci, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 610 | struct usb_device *udev, struct xhci_command *command, |
| 611 | bool ctx_change, bool must_succeed); |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 612 | |
| 613 | /* |
| 614 | * Full speed devices may have a max packet size greater than 8 bytes, but the |
| 615 | * USB core doesn't know that until it reads the first 8 bytes of the |
| 616 | * descriptor. If the usb_device's max packet size changes after that point, |
| 617 | * we need to issue an evaluate context command and wait on it. |
| 618 | */ |
| 619 | static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id, |
| 620 | unsigned int ep_index, struct urb *urb) |
| 621 | { |
| 622 | struct xhci_container_ctx *in_ctx; |
| 623 | struct xhci_container_ctx *out_ctx; |
| 624 | struct xhci_input_control_ctx *ctrl_ctx; |
| 625 | struct xhci_ep_ctx *ep_ctx; |
| 626 | int max_packet_size; |
| 627 | int hw_max_packet_size; |
| 628 | int ret = 0; |
| 629 | |
| 630 | out_ctx = xhci->devs[slot_id]->out_ctx; |
| 631 | ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index); |
| 632 | hw_max_packet_size = MAX_PACKET_DECODED(ep_ctx->ep_info2); |
| 633 | max_packet_size = urb->dev->ep0.desc.wMaxPacketSize; |
| 634 | if (hw_max_packet_size != max_packet_size) { |
| 635 | xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n"); |
| 636 | xhci_dbg(xhci, "Max packet size in usb_device = %d\n", |
| 637 | max_packet_size); |
| 638 | xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n", |
| 639 | hw_max_packet_size); |
| 640 | xhci_dbg(xhci, "Issuing evaluate context command.\n"); |
| 641 | |
| 642 | /* Set up the modified control endpoint 0 */ |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 643 | xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx, |
| 644 | xhci->devs[slot_id]->out_ctx, ep_index); |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 645 | in_ctx = xhci->devs[slot_id]->in_ctx; |
| 646 | ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index); |
| 647 | ep_ctx->ep_info2 &= ~MAX_PACKET_MASK; |
| 648 | ep_ctx->ep_info2 |= MAX_PACKET(max_packet_size); |
| 649 | |
| 650 | /* Set up the input context flags for the command */ |
| 651 | /* FIXME: This won't work if a non-default control endpoint |
| 652 | * changes max packet sizes. |
| 653 | */ |
| 654 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); |
| 655 | ctrl_ctx->add_flags = EP0_FLAG; |
| 656 | ctrl_ctx->drop_flags = 0; |
| 657 | |
| 658 | xhci_dbg(xhci, "Slot %d input context\n", slot_id); |
| 659 | xhci_dbg_ctx(xhci, in_ctx, ep_index); |
| 660 | xhci_dbg(xhci, "Slot %d output context\n", slot_id); |
| 661 | xhci_dbg_ctx(xhci, out_ctx, ep_index); |
| 662 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 663 | ret = xhci_configure_endpoint(xhci, urb->dev, NULL, |
| 664 | true, false); |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 665 | |
| 666 | /* Clean up the input context for later use by bandwidth |
| 667 | * functions. |
| 668 | */ |
| 669 | ctrl_ctx->add_flags = SLOT_FLAG; |
| 670 | } |
| 671 | return ret; |
| 672 | } |
| 673 | |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 674 | /* |
| 675 | * non-error returns are a promise to giveback() the urb later |
| 676 | * we drop ownership so next owner (or urb unlink) can get it |
| 677 | */ |
| 678 | int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags) |
| 679 | { |
| 680 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 681 | unsigned long flags; |
| 682 | int ret = 0; |
| 683 | unsigned int slot_id, ep_index; |
| 684 | |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 685 | |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 686 | if (!urb || xhci_check_args(hcd, urb->dev, urb->ep, true, __func__) <= 0) |
| 687 | return -EINVAL; |
| 688 | |
| 689 | slot_id = urb->dev->slot_id; |
| 690 | ep_index = xhci_get_endpoint_index(&urb->ep->desc); |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 691 | |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 692 | if (!xhci->devs || !xhci->devs[slot_id]) { |
| 693 | if (!in_interrupt()) |
| 694 | dev_warn(&urb->dev->dev, "WARN: urb submitted for dev with no Slot ID\n"); |
Sarah Sharp | c7959fb | 2009-04-29 19:06:36 -0700 | [diff] [blame] | 695 | ret = -EINVAL; |
| 696 | goto exit; |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 697 | } |
| 698 | if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) { |
| 699 | if (!in_interrupt()) |
| 700 | xhci_dbg(xhci, "urb submitted during PCI suspend\n"); |
| 701 | ret = -ESHUTDOWN; |
| 702 | goto exit; |
| 703 | } |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 704 | if (usb_endpoint_xfer_control(&urb->ep->desc)) { |
| 705 | /* Check to see if the max packet size for the default control |
| 706 | * endpoint changed during FS device enumeration |
| 707 | */ |
| 708 | if (urb->dev->speed == USB_SPEED_FULL) { |
| 709 | ret = xhci_check_maxpacket(xhci, slot_id, |
| 710 | ep_index, urb); |
| 711 | if (ret < 0) |
| 712 | return ret; |
| 713 | } |
| 714 | |
Sarah Sharp | b11069f | 2009-07-27 12:03:23 -0700 | [diff] [blame] | 715 | /* We have a spinlock and interrupts disabled, so we must pass |
| 716 | * atomic context to this function, which may allocate memory. |
| 717 | */ |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 718 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 719 | if (xhci->xhc_state & XHCI_STATE_DYING) |
| 720 | goto dying; |
Sarah Sharp | b11069f | 2009-07-27 12:03:23 -0700 | [diff] [blame] | 721 | ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb, |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 722 | slot_id, ep_index); |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 723 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 724 | } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) { |
| 725 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 726 | if (xhci->xhc_state & XHCI_STATE_DYING) |
| 727 | goto dying; |
Sarah Sharp | b11069f | 2009-07-27 12:03:23 -0700 | [diff] [blame] | 728 | ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb, |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 729 | slot_id, ep_index); |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 730 | spin_unlock_irqrestore(&xhci->lock, flags); |
Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 731 | } else if (usb_endpoint_xfer_int(&urb->ep->desc)) { |
| 732 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 733 | if (xhci->xhc_state & XHCI_STATE_DYING) |
| 734 | goto dying; |
Sarah Sharp | 624defa | 2009-09-02 12:14:28 -0700 | [diff] [blame] | 735 | ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb, |
| 736 | slot_id, ep_index); |
| 737 | spin_unlock_irqrestore(&xhci->lock, flags); |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 738 | } else { |
Sarah Sharp | b10de14 | 2009-04-27 19:58:50 -0700 | [diff] [blame] | 739 | ret = -EINVAL; |
Sarah Sharp | 2d3f1fa | 2009-08-07 14:04:49 -0700 | [diff] [blame] | 740 | } |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 741 | exit: |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 742 | return ret; |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 743 | dying: |
| 744 | xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for " |
| 745 | "non-responsive xHCI host.\n", |
| 746 | urb->ep->desc.bEndpointAddress, urb); |
| 747 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 748 | return -ESHUTDOWN; |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 749 | } |
| 750 | |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 751 | /* |
| 752 | * Remove the URB's TD from the endpoint ring. This may cause the HC to stop |
| 753 | * USB transfers, potentially stopping in the middle of a TRB buffer. The HC |
| 754 | * should pick up where it left off in the TD, unless a Set Transfer Ring |
| 755 | * Dequeue Pointer is issued. |
| 756 | * |
| 757 | * The TRBs that make up the buffers for the canceled URB will be "removed" from |
| 758 | * the ring. Since the ring is a contiguous structure, they can't be physically |
| 759 | * removed. Instead, there are two options: |
| 760 | * |
| 761 | * 1) If the HC is in the middle of processing the URB to be canceled, we |
| 762 | * simply move the ring's dequeue pointer past those TRBs using the Set |
| 763 | * Transfer Ring Dequeue Pointer command. This will be the common case, |
| 764 | * when drivers timeout on the last submitted URB and attempt to cancel. |
| 765 | * |
| 766 | * 2) If the HC is in the middle of a different TD, we turn the TRBs into a |
| 767 | * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The |
| 768 | * HC will need to invalidate the any TRBs it has cached after the stop |
| 769 | * endpoint command, as noted in the xHCI 0.95 errata. |
| 770 | * |
| 771 | * 3) The TD may have completed by the time the Stop Endpoint Command |
| 772 | * completes, so software needs to handle that case too. |
| 773 | * |
| 774 | * This function should protect against the TD enqueueing code ringing the |
| 775 | * doorbell while this code is waiting for a Stop Endpoint command to complete. |
| 776 | * It also needs to account for multiple cancellations on happening at the same |
| 777 | * time for the same endpoint. |
| 778 | * |
| 779 | * Note that this function can be called in any context, or so says |
| 780 | * usb_hcd_unlink_urb() |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 781 | */ |
| 782 | int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) |
| 783 | { |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 784 | unsigned long flags; |
| 785 | int ret; |
Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 786 | u32 temp; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 787 | struct xhci_hcd *xhci; |
| 788 | struct xhci_td *td; |
| 789 | unsigned int ep_index; |
| 790 | struct xhci_ring *ep_ring; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 791 | struct xhci_virt_ep *ep; |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 792 | |
| 793 | xhci = hcd_to_xhci(hcd); |
| 794 | spin_lock_irqsave(&xhci->lock, flags); |
| 795 | /* Make sure the URB hasn't completed or been unlinked already */ |
| 796 | ret = usb_hcd_check_unlink_urb(hcd, urb, status); |
| 797 | if (ret || !urb->hcpriv) |
| 798 | goto done; |
Sarah Sharp | e34b2fb | 2009-09-28 17:21:37 -0700 | [diff] [blame] | 799 | temp = xhci_readl(xhci, &xhci->op_regs->status); |
| 800 | if (temp == 0xffffffff) { |
| 801 | xhci_dbg(xhci, "HW died, freeing TD.\n"); |
| 802 | td = (struct xhci_td *) urb->hcpriv; |
| 803 | |
| 804 | usb_hcd_unlink_urb_from_ep(hcd, urb); |
| 805 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 806 | usb_hcd_giveback_urb(xhci_to_hcd(xhci), urb, -ESHUTDOWN); |
| 807 | kfree(td); |
| 808 | return ret; |
| 809 | } |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 810 | if (xhci->xhc_state & XHCI_STATE_DYING) { |
| 811 | xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on " |
| 812 | "non-responsive xHCI host.\n", |
| 813 | urb->ep->desc.bEndpointAddress, urb); |
| 814 | /* Let the stop endpoint command watchdog timer (which set this |
| 815 | * state) finish cleaning up the endpoint TD lists. We must |
| 816 | * have caught it in the middle of dropping a lock and giving |
| 817 | * back an URB. |
| 818 | */ |
| 819 | goto done; |
| 820 | } |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 821 | |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 822 | xhci_dbg(xhci, "Cancel URB %p\n", urb); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 823 | xhci_dbg(xhci, "Event ring:\n"); |
| 824 | xhci_debug_ring(xhci, xhci->event_ring); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 825 | ep_index = xhci_get_endpoint_index(&urb->ep->desc); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 826 | ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index]; |
| 827 | ep_ring = ep->ring; |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 828 | xhci_dbg(xhci, "Endpoint ring:\n"); |
| 829 | xhci_debug_ring(xhci, ep_ring); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 830 | td = (struct xhci_td *) urb->hcpriv; |
| 831 | |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 832 | list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 833 | /* Queue a stop endpoint command, but only if this is |
| 834 | * the first cancellation to be handled. |
| 835 | */ |
Sarah Sharp | 678539c | 2009-10-27 10:55:52 -0700 | [diff] [blame] | 836 | if (!(ep->ep_state & EP_HALT_PENDING)) { |
| 837 | ep->ep_state |= EP_HALT_PENDING; |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 838 | ep->stop_cmds_pending++; |
| 839 | ep->stop_cmd_timer.expires = jiffies + |
| 840 | XHCI_STOP_EP_CMD_TIMEOUT * HZ; |
| 841 | add_timer(&ep->stop_cmd_timer); |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 842 | xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index); |
| 843 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | ae63674 | 2009-04-29 19:02:31 -0700 | [diff] [blame] | 844 | } |
| 845 | done: |
| 846 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 847 | return ret; |
Sarah Sharp | d0e96f5a | 2009-04-27 19:58:01 -0700 | [diff] [blame] | 848 | } |
| 849 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 850 | /* Drop an endpoint from a new bandwidth configuration for this device. |
| 851 | * Only one call to this function is allowed per endpoint before |
| 852 | * check_bandwidth() or reset_bandwidth() must be called. |
| 853 | * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will |
| 854 | * add the endpoint to the schedule with possibly new parameters denoted by a |
| 855 | * different endpoint descriptor in usb_host_endpoint. |
| 856 | * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is |
| 857 | * not allowed. |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 858 | * |
| 859 | * The USB core will not allow URBs to be queued to an endpoint that is being |
| 860 | * disabled, so there's no need for mutual exclusion to protect |
| 861 | * the xhci->devs[slot_id] structure. |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 862 | */ |
| 863 | int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev, |
| 864 | struct usb_host_endpoint *ep) |
| 865 | { |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 866 | struct xhci_hcd *xhci; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 867 | struct xhci_container_ctx *in_ctx, *out_ctx; |
| 868 | struct xhci_input_control_ctx *ctrl_ctx; |
| 869 | struct xhci_slot_ctx *slot_ctx; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 870 | unsigned int last_ctx; |
| 871 | unsigned int ep_index; |
| 872 | struct xhci_ep_ctx *ep_ctx; |
| 873 | u32 drop_flag; |
| 874 | u32 new_add_flags, new_drop_flags, new_slot_info; |
| 875 | int ret; |
| 876 | |
| 877 | ret = xhci_check_args(hcd, udev, ep, 1, __func__); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 878 | if (ret <= 0) |
| 879 | return ret; |
| 880 | xhci = hcd_to_xhci(hcd); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 881 | xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 882 | |
| 883 | drop_flag = xhci_get_endpoint_flag(&ep->desc); |
| 884 | if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) { |
| 885 | xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n", |
| 886 | __func__, drop_flag); |
| 887 | return 0; |
| 888 | } |
| 889 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 890 | if (!xhci->devs || !xhci->devs[udev->slot_id]) { |
| 891 | xhci_warn(xhci, "xHCI %s called with unaddressed device\n", |
| 892 | __func__); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 893 | return -EINVAL; |
| 894 | } |
| 895 | |
| 896 | in_ctx = xhci->devs[udev->slot_id]->in_ctx; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 897 | out_ctx = xhci->devs[udev->slot_id]->out_ctx; |
| 898 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 899 | ep_index = xhci_get_endpoint_index(&ep->desc); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 900 | ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 901 | /* If the HC already knows the endpoint is disabled, |
| 902 | * or the HCD has noted it is disabled, ignore this request |
| 903 | */ |
| 904 | if ((ep_ctx->ep_info & EP_STATE_MASK) == EP_STATE_DISABLED || |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 905 | ctrl_ctx->drop_flags & xhci_get_endpoint_flag(&ep->desc)) { |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 906 | xhci_warn(xhci, "xHCI %s called with disabled ep %p\n", |
| 907 | __func__, ep); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 908 | return 0; |
| 909 | } |
| 910 | |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 911 | ctrl_ctx->drop_flags |= drop_flag; |
| 912 | new_drop_flags = ctrl_ctx->drop_flags; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 913 | |
Sarah Sharp | 0a023c6 | 2009-09-18 08:55:12 -0700 | [diff] [blame] | 914 | ctrl_ctx->add_flags &= ~drop_flag; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 915 | new_add_flags = ctrl_ctx->add_flags; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 916 | |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 917 | last_ctx = xhci_last_valid_endpoint(ctrl_ctx->add_flags); |
| 918 | slot_ctx = xhci_get_slot_ctx(xhci, in_ctx); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 919 | /* Update the last valid endpoint context, if we deleted the last one */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 920 | if ((slot_ctx->dev_info & LAST_CTX_MASK) > LAST_CTX(last_ctx)) { |
| 921 | slot_ctx->dev_info &= ~LAST_CTX_MASK; |
| 922 | slot_ctx->dev_info |= LAST_CTX(last_ctx); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 923 | } |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 924 | new_slot_info = slot_ctx->dev_info; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 925 | |
| 926 | xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep); |
| 927 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 928 | xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n", |
| 929 | (unsigned int) ep->desc.bEndpointAddress, |
| 930 | udev->slot_id, |
| 931 | (unsigned int) new_drop_flags, |
| 932 | (unsigned int) new_add_flags, |
| 933 | (unsigned int) new_slot_info); |
| 934 | return 0; |
| 935 | } |
| 936 | |
| 937 | /* Add an endpoint to a new possible bandwidth configuration for this device. |
| 938 | * Only one call to this function is allowed per endpoint before |
| 939 | * check_bandwidth() or reset_bandwidth() must be called. |
| 940 | * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will |
| 941 | * add the endpoint to the schedule with possibly new parameters denoted by a |
| 942 | * different endpoint descriptor in usb_host_endpoint. |
| 943 | * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is |
| 944 | * not allowed. |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 945 | * |
| 946 | * The USB core will not allow URBs to be queued to an endpoint until the |
| 947 | * configuration or alt setting is installed in the device, so there's no need |
| 948 | * for mutual exclusion to protect the xhci->devs[slot_id] structure. |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 949 | */ |
| 950 | int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev, |
| 951 | struct usb_host_endpoint *ep) |
| 952 | { |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 953 | struct xhci_hcd *xhci; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 954 | struct xhci_container_ctx *in_ctx, *out_ctx; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 955 | unsigned int ep_index; |
| 956 | struct xhci_ep_ctx *ep_ctx; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 957 | struct xhci_slot_ctx *slot_ctx; |
| 958 | struct xhci_input_control_ctx *ctrl_ctx; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 959 | u32 added_ctxs; |
| 960 | unsigned int last_ctx; |
| 961 | u32 new_add_flags, new_drop_flags, new_slot_info; |
| 962 | int ret = 0; |
| 963 | |
| 964 | ret = xhci_check_args(hcd, udev, ep, 1, __func__); |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 965 | if (ret <= 0) { |
| 966 | /* So we won't queue a reset ep command for a root hub */ |
| 967 | ep->hcpriv = NULL; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 968 | return ret; |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 969 | } |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 970 | xhci = hcd_to_xhci(hcd); |
| 971 | |
| 972 | added_ctxs = xhci_get_endpoint_flag(&ep->desc); |
| 973 | last_ctx = xhci_last_valid_endpoint(added_ctxs); |
| 974 | if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) { |
| 975 | /* FIXME when we have to issue an evaluate endpoint command to |
| 976 | * deal with ep0 max packet size changing once we get the |
| 977 | * descriptors |
| 978 | */ |
| 979 | xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n", |
| 980 | __func__, added_ctxs); |
| 981 | return 0; |
| 982 | } |
| 983 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 984 | if (!xhci->devs || !xhci->devs[udev->slot_id]) { |
| 985 | xhci_warn(xhci, "xHCI %s called with unaddressed device\n", |
| 986 | __func__); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 987 | return -EINVAL; |
| 988 | } |
| 989 | |
| 990 | in_ctx = xhci->devs[udev->slot_id]->in_ctx; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 991 | out_ctx = xhci->devs[udev->slot_id]->out_ctx; |
| 992 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 993 | ep_index = xhci_get_endpoint_index(&ep->desc); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 994 | ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 995 | /* If the HCD has already noted the endpoint is enabled, |
| 996 | * ignore this request. |
| 997 | */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 998 | if (ctrl_ctx->add_flags & xhci_get_endpoint_flag(&ep->desc)) { |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 999 | xhci_warn(xhci, "xHCI %s called with enabled ep %p\n", |
| 1000 | __func__, ep); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1001 | return 0; |
| 1002 | } |
| 1003 | |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1004 | /* |
| 1005 | * Configuration and alternate setting changes must be done in |
| 1006 | * process context, not interrupt context (or so documenation |
| 1007 | * for usb_set_interface() and usb_set_configuration() claim). |
| 1008 | */ |
| 1009 | if (xhci_endpoint_init(xhci, xhci->devs[udev->slot_id], |
| 1010 | udev, ep, GFP_KERNEL) < 0) { |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1011 | dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n", |
| 1012 | __func__, ep->desc.bEndpointAddress); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1013 | return -ENOMEM; |
| 1014 | } |
| 1015 | |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1016 | ctrl_ctx->add_flags |= added_ctxs; |
| 1017 | new_add_flags = ctrl_ctx->add_flags; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1018 | |
| 1019 | /* If xhci_endpoint_disable() was called for this endpoint, but the |
| 1020 | * xHC hasn't been notified yet through the check_bandwidth() call, |
| 1021 | * this re-adds a new state for the endpoint from the new endpoint |
| 1022 | * descriptors. We must drop and re-add this endpoint, so we leave the |
| 1023 | * drop flags alone. |
| 1024 | */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1025 | new_drop_flags = ctrl_ctx->drop_flags; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1026 | |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1027 | slot_ctx = xhci_get_slot_ctx(xhci, in_ctx); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1028 | /* Update the last valid endpoint context, if we just added one past */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1029 | if ((slot_ctx->dev_info & LAST_CTX_MASK) < LAST_CTX(last_ctx)) { |
| 1030 | slot_ctx->dev_info &= ~LAST_CTX_MASK; |
| 1031 | slot_ctx->dev_info |= LAST_CTX(last_ctx); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1032 | } |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1033 | new_slot_info = slot_ctx->dev_info; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1034 | |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1035 | /* Store the usb_device pointer for later use */ |
| 1036 | ep->hcpriv = udev; |
| 1037 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1038 | xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n", |
| 1039 | (unsigned int) ep->desc.bEndpointAddress, |
| 1040 | udev->slot_id, |
| 1041 | (unsigned int) new_drop_flags, |
| 1042 | (unsigned int) new_add_flags, |
| 1043 | (unsigned int) new_slot_info); |
| 1044 | return 0; |
| 1045 | } |
| 1046 | |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1047 | 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] | 1048 | { |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1049 | struct xhci_input_control_ctx *ctrl_ctx; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1050 | struct xhci_ep_ctx *ep_ctx; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1051 | struct xhci_slot_ctx *slot_ctx; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1052 | int i; |
| 1053 | |
| 1054 | /* When a device's add flag and drop flag are zero, any subsequent |
| 1055 | * configure endpoint command will leave that endpoint's state |
| 1056 | * untouched. Make sure we don't leave any old state in the input |
| 1057 | * endpoint contexts. |
| 1058 | */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1059 | ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx); |
| 1060 | ctrl_ctx->drop_flags = 0; |
| 1061 | ctrl_ctx->add_flags = 0; |
| 1062 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); |
| 1063 | slot_ctx->dev_info &= ~LAST_CTX_MASK; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1064 | /* Endpoint 0 is always valid */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1065 | slot_ctx->dev_info |= LAST_CTX(1); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1066 | for (i = 1; i < 31; ++i) { |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1067 | ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1068 | ep_ctx->ep_info = 0; |
| 1069 | ep_ctx->ep_info2 = 0; |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1070 | ep_ctx->deq = 0; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1071 | ep_ctx->tx_info = 0; |
| 1072 | } |
| 1073 | } |
| 1074 | |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1075 | static int xhci_configure_endpoint_result(struct xhci_hcd *xhci, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1076 | struct usb_device *udev, int *cmd_status) |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1077 | { |
| 1078 | int ret; |
| 1079 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1080 | switch (*cmd_status) { |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1081 | case COMP_ENOMEM: |
| 1082 | dev_warn(&udev->dev, "Not enough host controller resources " |
| 1083 | "for new device state.\n"); |
| 1084 | ret = -ENOMEM; |
| 1085 | /* FIXME: can we allocate more resources for the HC? */ |
| 1086 | break; |
| 1087 | case COMP_BW_ERR: |
| 1088 | dev_warn(&udev->dev, "Not enough bandwidth " |
| 1089 | "for new device state.\n"); |
| 1090 | ret = -ENOSPC; |
| 1091 | /* FIXME: can we go back to the old state? */ |
| 1092 | break; |
| 1093 | case COMP_TRB_ERR: |
| 1094 | /* the HCD set up something wrong */ |
| 1095 | dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, " |
| 1096 | "add flag = 1, " |
| 1097 | "and endpoint is not disabled.\n"); |
| 1098 | ret = -EINVAL; |
| 1099 | break; |
| 1100 | case COMP_SUCCESS: |
| 1101 | dev_dbg(&udev->dev, "Successful Endpoint Configure command\n"); |
| 1102 | ret = 0; |
| 1103 | break; |
| 1104 | default: |
| 1105 | xhci_err(xhci, "ERROR: unexpected command completion " |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1106 | "code 0x%x.\n", *cmd_status); |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1107 | ret = -EINVAL; |
| 1108 | break; |
| 1109 | } |
| 1110 | return ret; |
| 1111 | } |
| 1112 | |
| 1113 | static int xhci_evaluate_context_result(struct xhci_hcd *xhci, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1114 | struct usb_device *udev, int *cmd_status) |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1115 | { |
| 1116 | int ret; |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1117 | struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id]; |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1118 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1119 | switch (*cmd_status) { |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1120 | case COMP_EINVAL: |
| 1121 | dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate " |
| 1122 | "context command.\n"); |
| 1123 | ret = -EINVAL; |
| 1124 | break; |
| 1125 | case COMP_EBADSLT: |
| 1126 | dev_warn(&udev->dev, "WARN: slot not enabled for" |
| 1127 | "evaluate context command.\n"); |
| 1128 | case COMP_CTX_STATE: |
| 1129 | dev_warn(&udev->dev, "WARN: invalid context state for " |
| 1130 | "evaluate context command.\n"); |
| 1131 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1); |
| 1132 | ret = -EINVAL; |
| 1133 | break; |
| 1134 | case COMP_SUCCESS: |
| 1135 | dev_dbg(&udev->dev, "Successful evaluate context command\n"); |
| 1136 | ret = 0; |
| 1137 | break; |
| 1138 | default: |
| 1139 | xhci_err(xhci, "ERROR: unexpected command completion " |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1140 | "code 0x%x.\n", *cmd_status); |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1141 | ret = -EINVAL; |
| 1142 | break; |
| 1143 | } |
| 1144 | return ret; |
| 1145 | } |
| 1146 | |
| 1147 | /* Issue a configure endpoint command or evaluate context command |
| 1148 | * and wait for it to finish. |
| 1149 | */ |
| 1150 | static int xhci_configure_endpoint(struct xhci_hcd *xhci, |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1151 | struct usb_device *udev, |
| 1152 | struct xhci_command *command, |
| 1153 | bool ctx_change, bool must_succeed) |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1154 | { |
| 1155 | int ret; |
| 1156 | int timeleft; |
| 1157 | unsigned long flags; |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1158 | struct xhci_container_ctx *in_ctx; |
| 1159 | struct completion *cmd_completion; |
| 1160 | int *cmd_status; |
| 1161 | struct xhci_virt_device *virt_dev; |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1162 | |
| 1163 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1164 | virt_dev = xhci->devs[udev->slot_id]; |
| 1165 | if (command) { |
| 1166 | in_ctx = command->in_ctx; |
| 1167 | cmd_completion = command->completion; |
| 1168 | cmd_status = &command->status; |
| 1169 | command->command_trb = xhci->cmd_ring->enqueue; |
| 1170 | list_add_tail(&command->cmd_list, &virt_dev->cmd_list); |
| 1171 | } else { |
| 1172 | in_ctx = virt_dev->in_ctx; |
| 1173 | cmd_completion = &virt_dev->cmd_completion; |
| 1174 | cmd_status = &virt_dev->cmd_status; |
| 1175 | } |
| 1176 | |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1177 | if (!ctx_change) |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1178 | ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma, |
| 1179 | udev->slot_id, must_succeed); |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1180 | else |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1181 | ret = xhci_queue_evaluate_context(xhci, in_ctx->dma, |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1182 | udev->slot_id); |
| 1183 | if (ret < 0) { |
Sarah Sharp | c01591b | 2009-12-09 15:58:58 -0800 | [diff] [blame] | 1184 | if (command) |
| 1185 | list_del(&command->cmd_list); |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1186 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1187 | xhci_dbg(xhci, "FIXME allocate a new ring segment\n"); |
| 1188 | return -ENOMEM; |
| 1189 | } |
| 1190 | xhci_ring_cmd_db(xhci); |
| 1191 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1192 | |
| 1193 | /* Wait for the configure endpoint command to complete */ |
| 1194 | timeleft = wait_for_completion_interruptible_timeout( |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1195 | cmd_completion, |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1196 | USB_CTRL_SET_TIMEOUT); |
| 1197 | if (timeleft <= 0) { |
| 1198 | xhci_warn(xhci, "%s while waiting for %s command\n", |
| 1199 | timeleft == 0 ? "Timeout" : "Signal", |
| 1200 | ctx_change == 0 ? |
| 1201 | "configure endpoint" : |
| 1202 | "evaluate context"); |
| 1203 | /* FIXME cancel the configure endpoint command */ |
| 1204 | return -ETIME; |
| 1205 | } |
| 1206 | |
| 1207 | if (!ctx_change) |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1208 | return xhci_configure_endpoint_result(xhci, udev, cmd_status); |
| 1209 | return xhci_evaluate_context_result(xhci, udev, cmd_status); |
Sarah Sharp | f2217e8 | 2009-08-07 14:04:43 -0700 | [diff] [blame] | 1210 | } |
| 1211 | |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1212 | /* Called after one or more calls to xhci_add_endpoint() or |
| 1213 | * xhci_drop_endpoint(). If this call fails, the USB core is expected |
| 1214 | * to call xhci_reset_bandwidth(). |
| 1215 | * |
| 1216 | * Since we are in the middle of changing either configuration or |
| 1217 | * installing a new alt setting, the USB core won't allow URBs to be |
| 1218 | * enqueued for any endpoint on the old config or interface. Nothing |
| 1219 | * else should be touching the xhci->devs[slot_id] structure, so we |
| 1220 | * don't need to take the xhci->lock for manipulating that. |
| 1221 | */ |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1222 | int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev) |
| 1223 | { |
| 1224 | int i; |
| 1225 | int ret = 0; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1226 | struct xhci_hcd *xhci; |
| 1227 | struct xhci_virt_device *virt_dev; |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1228 | struct xhci_input_control_ctx *ctrl_ctx; |
| 1229 | struct xhci_slot_ctx *slot_ctx; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1230 | |
| 1231 | ret = xhci_check_args(hcd, udev, NULL, 0, __func__); |
| 1232 | if (ret <= 0) |
| 1233 | return ret; |
| 1234 | xhci = hcd_to_xhci(hcd); |
| 1235 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1236 | if (!udev->slot_id || !xhci->devs || !xhci->devs[udev->slot_id]) { |
| 1237 | xhci_warn(xhci, "xHCI %s called with unaddressed device\n", |
| 1238 | __func__); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1239 | return -EINVAL; |
| 1240 | } |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1241 | xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1242 | virt_dev = xhci->devs[udev->slot_id]; |
| 1243 | |
| 1244 | /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1245 | ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx); |
| 1246 | ctrl_ctx->add_flags |= SLOT_FLAG; |
| 1247 | ctrl_ctx->add_flags &= ~EP0_FLAG; |
| 1248 | ctrl_ctx->drop_flags &= ~SLOT_FLAG; |
| 1249 | ctrl_ctx->drop_flags &= ~EP0_FLAG; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1250 | xhci_dbg(xhci, "New Input Control Context:\n"); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1251 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); |
| 1252 | xhci_dbg_ctx(xhci, virt_dev->in_ctx, |
| 1253 | LAST_CTX_TO_EP_NUM(slot_ctx->dev_info)); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1254 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1255 | ret = xhci_configure_endpoint(xhci, udev, NULL, |
| 1256 | false, false); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1257 | if (ret) { |
| 1258 | /* Callee should call reset_bandwidth() */ |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1259 | return ret; |
| 1260 | } |
| 1261 | |
| 1262 | xhci_dbg(xhci, "Output context after successful config ep cmd:\n"); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1263 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, |
| 1264 | LAST_CTX_TO_EP_NUM(slot_ctx->dev_info)); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1265 | |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1266 | xhci_zero_in_ctx(xhci, virt_dev); |
Sarah Sharp | 74f9fe2 | 2009-12-03 09:44:29 -0800 | [diff] [blame] | 1267 | /* Install new rings and free or cache any old rings */ |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1268 | for (i = 1; i < 31; ++i) { |
Sarah Sharp | 74f9fe2 | 2009-12-03 09:44:29 -0800 | [diff] [blame] | 1269 | if (!virt_dev->eps[i].new_ring) |
| 1270 | continue; |
| 1271 | /* Only cache or free the old ring if it exists. |
| 1272 | * It may not if this is the first add of an endpoint. |
| 1273 | */ |
| 1274 | if (virt_dev->eps[i].ring) { |
Sarah Sharp | 412566b | 2009-12-09 15:59:01 -0800 | [diff] [blame^] | 1275 | xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1276 | } |
Sarah Sharp | 74f9fe2 | 2009-12-03 09:44:29 -0800 | [diff] [blame] | 1277 | virt_dev->eps[i].ring = virt_dev->eps[i].new_ring; |
| 1278 | virt_dev->eps[i].new_ring = NULL; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1279 | } |
| 1280 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1281 | return ret; |
| 1282 | } |
| 1283 | |
| 1284 | void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev) |
| 1285 | { |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1286 | struct xhci_hcd *xhci; |
| 1287 | struct xhci_virt_device *virt_dev; |
| 1288 | int i, ret; |
| 1289 | |
| 1290 | ret = xhci_check_args(hcd, udev, NULL, 0, __func__); |
| 1291 | if (ret <= 0) |
| 1292 | return; |
| 1293 | xhci = hcd_to_xhci(hcd); |
| 1294 | |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1295 | if (!xhci->devs || !xhci->devs[udev->slot_id]) { |
| 1296 | xhci_warn(xhci, "xHCI %s called with unaddressed device\n", |
| 1297 | __func__); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1298 | return; |
| 1299 | } |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1300 | xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1301 | virt_dev = xhci->devs[udev->slot_id]; |
| 1302 | /* Free any rings allocated for added endpoints */ |
| 1303 | for (i = 0; i < 31; ++i) { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1304 | if (virt_dev->eps[i].new_ring) { |
| 1305 | xhci_ring_free(xhci, virt_dev->eps[i].new_ring); |
| 1306 | virt_dev->eps[i].new_ring = NULL; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1307 | } |
| 1308 | } |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1309 | xhci_zero_in_ctx(xhci, virt_dev); |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1310 | } |
| 1311 | |
Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 1312 | 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] | 1313 | struct xhci_container_ctx *in_ctx, |
| 1314 | struct xhci_container_ctx *out_ctx, |
| 1315 | u32 add_flags, u32 drop_flags) |
Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 1316 | { |
| 1317 | struct xhci_input_control_ctx *ctrl_ctx; |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1318 | ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx); |
Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 1319 | ctrl_ctx->add_flags = add_flags; |
| 1320 | ctrl_ctx->drop_flags = drop_flags; |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1321 | xhci_slot_copy(xhci, in_ctx, out_ctx); |
Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 1322 | ctrl_ctx->add_flags |= SLOT_FLAG; |
| 1323 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1324 | xhci_dbg(xhci, "Input Context:\n"); |
| 1325 | xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags)); |
Sarah Sharp | 5270b95 | 2009-09-04 10:53:11 -0700 | [diff] [blame] | 1326 | } |
| 1327 | |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1328 | void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci, |
| 1329 | unsigned int slot_id, unsigned int ep_index, |
| 1330 | struct xhci_dequeue_state *deq_state) |
| 1331 | { |
| 1332 | struct xhci_container_ctx *in_ctx; |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1333 | struct xhci_ep_ctx *ep_ctx; |
| 1334 | u32 added_ctxs; |
| 1335 | dma_addr_t addr; |
| 1336 | |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1337 | xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx, |
| 1338 | xhci->devs[slot_id]->out_ctx, ep_index); |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1339 | in_ctx = xhci->devs[slot_id]->in_ctx; |
| 1340 | ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index); |
| 1341 | addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg, |
| 1342 | deq_state->new_deq_ptr); |
| 1343 | if (addr == 0) { |
| 1344 | xhci_warn(xhci, "WARN Cannot submit config ep after " |
| 1345 | "reset ep command\n"); |
| 1346 | xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n", |
| 1347 | deq_state->new_deq_seg, |
| 1348 | deq_state->new_deq_ptr); |
| 1349 | return; |
| 1350 | } |
| 1351 | ep_ctx->deq = addr | deq_state->new_cycle_state; |
| 1352 | |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1353 | added_ctxs = xhci_get_endpoint_flag_from_index(ep_index); |
Sarah Sharp | 913a8a3 | 2009-09-04 10:53:13 -0700 | [diff] [blame] | 1354 | xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx, |
| 1355 | xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs); |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1356 | } |
| 1357 | |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1358 | void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci, |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1359 | struct usb_device *udev, unsigned int ep_index) |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1360 | { |
| 1361 | struct xhci_dequeue_state deq_state; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1362 | struct xhci_virt_ep *ep; |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1363 | |
| 1364 | xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n"); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1365 | ep = &xhci->devs[udev->slot_id]->eps[ep_index]; |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1366 | /* We need to move the HW's dequeue pointer past this TD, |
| 1367 | * or it will attempt to resend it on the next doorbell ring. |
| 1368 | */ |
| 1369 | xhci_find_new_dequeue_state(xhci, udev->slot_id, |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1370 | ep_index, ep->stopped_td, |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1371 | &deq_state); |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1372 | |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1373 | /* HW with the reset endpoint quirk will use the saved dequeue state to |
| 1374 | * issue a configure endpoint command later. |
| 1375 | */ |
| 1376 | if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) { |
| 1377 | xhci_dbg(xhci, "Queueing new dequeue state\n"); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1378 | xhci_queue_new_dequeue_state(xhci, udev->slot_id, |
Sarah Sharp | ac9d8fe | 2009-08-07 14:04:55 -0700 | [diff] [blame] | 1379 | ep_index, &deq_state); |
| 1380 | } else { |
| 1381 | /* Better hope no one uses the input context between now and the |
| 1382 | * reset endpoint completion! |
| 1383 | */ |
| 1384 | xhci_dbg(xhci, "Setting up input context for " |
| 1385 | "configure endpoint command\n"); |
| 1386 | xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id, |
| 1387 | ep_index, &deq_state); |
| 1388 | } |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1391 | /* Deal with stalled endpoints. The core should have sent the control message |
| 1392 | * to clear the halt condition. However, we need to make the xHCI hardware |
| 1393 | * reset its sequence number, since a device will expect a sequence number of |
| 1394 | * zero after the halt condition is cleared. |
| 1395 | * Context: in_interrupt |
| 1396 | */ |
| 1397 | void xhci_endpoint_reset(struct usb_hcd *hcd, |
| 1398 | struct usb_host_endpoint *ep) |
| 1399 | { |
| 1400 | struct xhci_hcd *xhci; |
| 1401 | struct usb_device *udev; |
| 1402 | unsigned int ep_index; |
| 1403 | unsigned long flags; |
| 1404 | int ret; |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1405 | struct xhci_virt_ep *virt_ep; |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1406 | |
| 1407 | xhci = hcd_to_xhci(hcd); |
| 1408 | udev = (struct usb_device *) ep->hcpriv; |
| 1409 | /* Called with a root hub endpoint (or an endpoint that wasn't added |
| 1410 | * with xhci_add_endpoint() |
| 1411 | */ |
| 1412 | if (!ep->hcpriv) |
| 1413 | return; |
| 1414 | ep_index = xhci_get_endpoint_index(&ep->desc); |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1415 | virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index]; |
| 1416 | if (!virt_ep->stopped_td) { |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1417 | xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n", |
| 1418 | ep->desc.bEndpointAddress); |
| 1419 | return; |
| 1420 | } |
Sarah Sharp | 82d1009 | 2009-08-07 14:04:52 -0700 | [diff] [blame] | 1421 | if (usb_endpoint_xfer_control(&ep->desc)) { |
| 1422 | xhci_dbg(xhci, "Control endpoint stall already handled.\n"); |
| 1423 | return; |
| 1424 | } |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1425 | |
| 1426 | xhci_dbg(xhci, "Queueing reset endpoint command\n"); |
| 1427 | spin_lock_irqsave(&xhci->lock, flags); |
| 1428 | ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index); |
Sarah Sharp | c92bcfa | 2009-07-27 12:05:21 -0700 | [diff] [blame] | 1429 | /* |
| 1430 | * Can't change the ring dequeue pointer until it's transitioned to the |
| 1431 | * stopped state, which is only upon a successful reset endpoint |
| 1432 | * command. Better hope that last command worked! |
| 1433 | */ |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1434 | if (!ret) { |
Sarah Sharp | 63a0d9a | 2009-09-04 10:53:09 -0700 | [diff] [blame] | 1435 | xhci_cleanup_stalled_ring(xhci, udev, ep_index); |
| 1436 | kfree(virt_ep->stopped_td); |
Sarah Sharp | a1587d9 | 2009-07-27 12:03:15 -0700 | [diff] [blame] | 1437 | xhci_ring_cmd_db(xhci); |
| 1438 | } |
| 1439 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1440 | |
| 1441 | if (ret) |
| 1442 | xhci_warn(xhci, "FIXME allocate a new ring segment\n"); |
| 1443 | } |
| 1444 | |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1445 | /* |
| 1446 | * At this point, the struct usb_device is about to go away, the device has |
| 1447 | * disconnected, and all traffic has been stopped and the endpoints have been |
| 1448 | * disabled. Free any HC data structures associated with that device. |
| 1449 | */ |
| 1450 | void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev) |
| 1451 | { |
| 1452 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1453 | struct xhci_virt_device *virt_dev; |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1454 | unsigned long flags; |
Sarah Sharp | c526d0d | 2009-09-16 16:42:39 -0700 | [diff] [blame] | 1455 | u32 state; |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1456 | int i; |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1457 | |
| 1458 | if (udev->slot_id == 0) |
| 1459 | return; |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1460 | virt_dev = xhci->devs[udev->slot_id]; |
| 1461 | if (!virt_dev) |
| 1462 | return; |
| 1463 | |
| 1464 | /* Stop any wayward timer functions (which may grab the lock) */ |
| 1465 | for (i = 0; i < 31; ++i) { |
| 1466 | virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING; |
| 1467 | del_timer_sync(&virt_dev->eps[i].stop_cmd_timer); |
| 1468 | } |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1469 | |
| 1470 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | c526d0d | 2009-09-16 16:42:39 -0700 | [diff] [blame] | 1471 | /* Don't disable the slot if the host controller is dead. */ |
| 1472 | state = xhci_readl(xhci, &xhci->op_regs->status); |
Sarah Sharp | 6f5165c | 2009-10-27 10:57:01 -0700 | [diff] [blame] | 1473 | if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING)) { |
Sarah Sharp | c526d0d | 2009-09-16 16:42:39 -0700 | [diff] [blame] | 1474 | xhci_free_virt_device(xhci, udev->slot_id); |
| 1475 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1476 | return; |
| 1477 | } |
| 1478 | |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1479 | if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) { |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1480 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1481 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); |
| 1482 | return; |
| 1483 | } |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1484 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1485 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1486 | /* |
| 1487 | * Event command completion handler will free any data structures |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1488 | * associated with the slot. XXX Can free sleep? |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1489 | */ |
| 1490 | } |
| 1491 | |
| 1492 | /* |
| 1493 | * Returns 0 if the xHC ran out of device slots, the Enable Slot command |
| 1494 | * timed out, or allocating memory failed. Returns 1 on success. |
| 1495 | */ |
| 1496 | int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev) |
| 1497 | { |
| 1498 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 1499 | unsigned long flags; |
| 1500 | int timeleft; |
| 1501 | int ret; |
| 1502 | |
| 1503 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1504 | ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1505 | if (ret) { |
| 1506 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1507 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); |
| 1508 | return 0; |
| 1509 | } |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1510 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1511 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1512 | |
| 1513 | /* XXX: how much time for xHC slot assignment? */ |
| 1514 | timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev, |
| 1515 | USB_CTRL_SET_TIMEOUT); |
| 1516 | if (timeleft <= 0) { |
| 1517 | xhci_warn(xhci, "%s while waiting for a slot\n", |
| 1518 | timeleft == 0 ? "Timeout" : "Signal"); |
| 1519 | /* FIXME cancel the enable slot request */ |
| 1520 | return 0; |
| 1521 | } |
| 1522 | |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1523 | if (!xhci->slot_id) { |
| 1524 | xhci_err(xhci, "Error while assigning device slot ID\n"); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1525 | return 0; |
| 1526 | } |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1527 | /* xhci_alloc_virt_device() does not touch rings; no need to lock */ |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1528 | if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_KERNEL)) { |
| 1529 | /* Disable slot, if we can do it without mem alloc */ |
| 1530 | xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n"); |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1531 | spin_lock_irqsave(&xhci->lock, flags); |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1532 | if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) |
| 1533 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1534 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1535 | return 0; |
| 1536 | } |
| 1537 | udev->slot_id = xhci->slot_id; |
| 1538 | /* Is this a LS or FS device under a HS hub? */ |
| 1539 | /* Hub or peripherial? */ |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1540 | return 1; |
| 1541 | } |
| 1542 | |
| 1543 | /* |
| 1544 | * Issue an Address Device command (which will issue a SetAddress request to |
| 1545 | * the device). |
| 1546 | * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so |
| 1547 | * we should only issue and wait on one address command at the same time. |
| 1548 | * |
| 1549 | * We add one to the device address issued by the hardware because the USB core |
| 1550 | * uses address 1 for the root hubs (even though they're not really devices). |
| 1551 | */ |
| 1552 | int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev) |
| 1553 | { |
| 1554 | unsigned long flags; |
| 1555 | int timeleft; |
| 1556 | struct xhci_virt_device *virt_dev; |
| 1557 | int ret = 0; |
| 1558 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1559 | struct xhci_slot_ctx *slot_ctx; |
| 1560 | struct xhci_input_control_ctx *ctrl_ctx; |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1561 | u64 temp_64; |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1562 | |
| 1563 | if (!udev->slot_id) { |
| 1564 | xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id); |
| 1565 | return -EINVAL; |
| 1566 | } |
| 1567 | |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1568 | virt_dev = xhci->devs[udev->slot_id]; |
| 1569 | |
| 1570 | /* If this is a Set Address to an unconfigured device, setup ep 0 */ |
| 1571 | if (!udev->config) |
| 1572 | xhci_setup_addressable_virt_dev(xhci, udev); |
| 1573 | /* Otherwise, assume the core has the device configured how it wants */ |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1574 | xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1575 | xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1576 | |
Sarah Sharp | f88ba78 | 2009-05-14 11:44:22 -0700 | [diff] [blame] | 1577 | spin_lock_irqsave(&xhci->lock, flags); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1578 | ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma, |
| 1579 | udev->slot_id); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1580 | if (ret) { |
| 1581 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1582 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); |
| 1583 | return ret; |
| 1584 | } |
Sarah Sharp | 23e3be1 | 2009-04-29 19:05:20 -0700 | [diff] [blame] | 1585 | xhci_ring_cmd_db(xhci); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1586 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1587 | |
| 1588 | /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */ |
| 1589 | timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev, |
| 1590 | USB_CTRL_SET_TIMEOUT); |
| 1591 | /* FIXME: From section 4.3.4: "Software shall be responsible for timing |
| 1592 | * the SetAddress() "recovery interval" required by USB and aborting the |
| 1593 | * command on a timeout. |
| 1594 | */ |
| 1595 | if (timeleft <= 0) { |
| 1596 | xhci_warn(xhci, "%s while waiting for a slot\n", |
| 1597 | timeleft == 0 ? "Timeout" : "Signal"); |
| 1598 | /* FIXME cancel the address device command */ |
| 1599 | return -ETIME; |
| 1600 | } |
| 1601 | |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1602 | switch (virt_dev->cmd_status) { |
| 1603 | case COMP_CTX_STATE: |
| 1604 | case COMP_EBADSLT: |
| 1605 | xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n", |
| 1606 | udev->slot_id); |
| 1607 | ret = -EINVAL; |
| 1608 | break; |
| 1609 | case COMP_TX_ERR: |
| 1610 | dev_warn(&udev->dev, "Device not responding to set address.\n"); |
| 1611 | ret = -EPROTO; |
| 1612 | break; |
| 1613 | case COMP_SUCCESS: |
| 1614 | xhci_dbg(xhci, "Successful Address Device command\n"); |
| 1615 | break; |
| 1616 | default: |
| 1617 | xhci_err(xhci, "ERROR: unexpected command completion " |
| 1618 | "code 0x%x.\n", virt_dev->cmd_status); |
Sarah Sharp | 66e49d8 | 2009-07-27 12:03:46 -0700 | [diff] [blame] | 1619 | xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1620 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1621 | ret = -EINVAL; |
| 1622 | break; |
| 1623 | } |
| 1624 | if (ret) { |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1625 | return ret; |
| 1626 | } |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1627 | temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); |
| 1628 | xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64); |
| 1629 | xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n", |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1630 | udev->slot_id, |
Sarah Sharp | 8e595a5 | 2009-07-27 12:03:31 -0700 | [diff] [blame] | 1631 | &xhci->dcbaa->dev_context_ptrs[udev->slot_id], |
| 1632 | (unsigned long long) |
| 1633 | xhci->dcbaa->dev_context_ptrs[udev->slot_id]); |
Greg Kroah-Hartman | 700e205 | 2009-04-29 19:14:08 -0700 | [diff] [blame] | 1634 | xhci_dbg(xhci, "Output Context DMA address = %#08llx\n", |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1635 | (unsigned long long)virt_dev->out_ctx->dma); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1636 | xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1637 | xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1638 | xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id); |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1639 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2); |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1640 | /* |
| 1641 | * USB core uses address 1 for the roothubs, so we add one to the |
| 1642 | * address given back to us by the HC. |
| 1643 | */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1644 | slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx); |
| 1645 | udev->devnum = (slot_ctx->dev_state & DEV_ADDR_MASK) + 1; |
Sarah Sharp | f94e0186 | 2009-04-27 19:58:38 -0700 | [diff] [blame] | 1646 | /* Zero the input context control for later use */ |
John Youn | d115b04 | 2009-07-27 12:05:15 -0700 | [diff] [blame] | 1647 | ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx); |
| 1648 | ctrl_ctx->add_flags = 0; |
| 1649 | ctrl_ctx->drop_flags = 0; |
Sarah Sharp | 3ffbba9 | 2009-04-27 19:57:38 -0700 | [diff] [blame] | 1650 | |
| 1651 | xhci_dbg(xhci, "Device address = %d\n", udev->devnum); |
| 1652 | /* XXX Meh, not sure if anyone else but choose_address uses this. */ |
| 1653 | set_bit(udev->devnum, udev->bus->devmap.devicemap); |
| 1654 | |
| 1655 | return 0; |
| 1656 | } |
| 1657 | |
Sarah Sharp | ac1c1b7 | 2009-09-04 10:53:20 -0700 | [diff] [blame] | 1658 | /* Once a hub descriptor is fetched for a device, we need to update the xHC's |
| 1659 | * internal data structures for the device. |
| 1660 | */ |
| 1661 | int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev, |
| 1662 | struct usb_tt *tt, gfp_t mem_flags) |
| 1663 | { |
| 1664 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 1665 | struct xhci_virt_device *vdev; |
| 1666 | struct xhci_command *config_cmd; |
| 1667 | struct xhci_input_control_ctx *ctrl_ctx; |
| 1668 | struct xhci_slot_ctx *slot_ctx; |
| 1669 | unsigned long flags; |
| 1670 | unsigned think_time; |
| 1671 | int ret; |
| 1672 | |
| 1673 | /* Ignore root hubs */ |
| 1674 | if (!hdev->parent) |
| 1675 | return 0; |
| 1676 | |
| 1677 | vdev = xhci->devs[hdev->slot_id]; |
| 1678 | if (!vdev) { |
| 1679 | xhci_warn(xhci, "Cannot update hub desc for unknown device.\n"); |
| 1680 | return -EINVAL; |
| 1681 | } |
| 1682 | config_cmd = xhci_alloc_command(xhci, true, mem_flags); |
| 1683 | if (!config_cmd) { |
| 1684 | xhci_dbg(xhci, "Could not allocate xHCI command structure.\n"); |
| 1685 | return -ENOMEM; |
| 1686 | } |
| 1687 | |
| 1688 | spin_lock_irqsave(&xhci->lock, flags); |
| 1689 | xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx); |
| 1690 | ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx); |
| 1691 | ctrl_ctx->add_flags |= SLOT_FLAG; |
| 1692 | slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx); |
| 1693 | slot_ctx->dev_info |= DEV_HUB; |
| 1694 | if (tt->multi) |
| 1695 | slot_ctx->dev_info |= DEV_MTT; |
| 1696 | if (xhci->hci_version > 0x95) { |
| 1697 | xhci_dbg(xhci, "xHCI version %x needs hub " |
| 1698 | "TT think time and number of ports\n", |
| 1699 | (unsigned int) xhci->hci_version); |
| 1700 | slot_ctx->dev_info2 |= XHCI_MAX_PORTS(hdev->maxchild); |
| 1701 | /* Set TT think time - convert from ns to FS bit times. |
| 1702 | * 0 = 8 FS bit times, 1 = 16 FS bit times, |
| 1703 | * 2 = 24 FS bit times, 3 = 32 FS bit times. |
| 1704 | */ |
| 1705 | think_time = tt->think_time; |
| 1706 | if (think_time != 0) |
| 1707 | think_time = (think_time / 666) - 1; |
| 1708 | slot_ctx->tt_info |= TT_THINK_TIME(think_time); |
| 1709 | } else { |
| 1710 | xhci_dbg(xhci, "xHCI version %x doesn't need hub " |
| 1711 | "TT think time or number of ports\n", |
| 1712 | (unsigned int) xhci->hci_version); |
| 1713 | } |
| 1714 | slot_ctx->dev_state = 0; |
| 1715 | spin_unlock_irqrestore(&xhci->lock, flags); |
| 1716 | |
| 1717 | xhci_dbg(xhci, "Set up %s for hub device.\n", |
| 1718 | (xhci->hci_version > 0x95) ? |
| 1719 | "configure endpoint" : "evaluate context"); |
| 1720 | xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id); |
| 1721 | xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0); |
| 1722 | |
| 1723 | /* Issue and wait for the configure endpoint or |
| 1724 | * evaluate context command. |
| 1725 | */ |
| 1726 | if (xhci->hci_version > 0x95) |
| 1727 | ret = xhci_configure_endpoint(xhci, hdev, config_cmd, |
| 1728 | false, false); |
| 1729 | else |
| 1730 | ret = xhci_configure_endpoint(xhci, hdev, config_cmd, |
| 1731 | true, false); |
| 1732 | |
| 1733 | xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id); |
| 1734 | xhci_dbg_ctx(xhci, vdev->out_ctx, 0); |
| 1735 | |
| 1736 | xhci_free_command(xhci, config_cmd); |
| 1737 | return ret; |
| 1738 | } |
| 1739 | |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 1740 | int xhci_get_frame(struct usb_hcd *hcd) |
| 1741 | { |
| 1742 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 1743 | /* EHCI mods by the periodic size. Why? */ |
| 1744 | return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3; |
| 1745 | } |
| 1746 | |
| 1747 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1748 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1749 | MODULE_LICENSE("GPL"); |
| 1750 | |
| 1751 | static int __init xhci_hcd_init(void) |
| 1752 | { |
| 1753 | #ifdef CONFIG_PCI |
| 1754 | int retval = 0; |
| 1755 | |
| 1756 | retval = xhci_register_pci(); |
| 1757 | |
| 1758 | if (retval < 0) { |
| 1759 | printk(KERN_DEBUG "Problem registering PCI driver."); |
| 1760 | return retval; |
| 1761 | } |
| 1762 | #endif |
Sarah Sharp | 9844197 | 2009-05-14 11:44:18 -0700 | [diff] [blame] | 1763 | /* |
| 1764 | * Check the compiler generated sizes of structures that must be laid |
| 1765 | * out in specific ways for hardware access. |
| 1766 | */ |
| 1767 | BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8); |
| 1768 | BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8); |
| 1769 | BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8); |
| 1770 | /* xhci_device_control has eight fields, and also |
| 1771 | * embeds one xhci_slot_ctx and 31 xhci_ep_ctx |
| 1772 | */ |
Sarah Sharp | 9844197 | 2009-05-14 11:44:18 -0700 | [diff] [blame] | 1773 | BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8); |
| 1774 | BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8); |
| 1775 | BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8); |
| 1776 | BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8); |
| 1777 | BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8); |
| 1778 | /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */ |
| 1779 | BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8); |
| 1780 | BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8); |
Sarah Sharp | 66d4ead | 2009-04-27 19:52:28 -0700 | [diff] [blame] | 1781 | return 0; |
| 1782 | } |
| 1783 | module_init(xhci_hcd_init); |
| 1784 | |
| 1785 | static void __exit xhci_hcd_cleanup(void) |
| 1786 | { |
| 1787 | #ifdef CONFIG_PCI |
| 1788 | xhci_unregister_pci(); |
| 1789 | #endif |
| 1790 | } |
| 1791 | module_exit(xhci_hcd_cleanup); |