Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2000-2004 by David Brownell |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the |
| 6 | * Free Software Foundation; either version 2 of the License, or (at your |
| 7 | * option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | * for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software Foundation, |
| 16 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 17 | */ |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
| 20 | #include <linux/pci.h> |
| 21 | #include <linux/dmapool.h> |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/ioport.h> |
| 25 | #include <linux/sched.h> |
| 26 | #include <linux/slab.h> |
Ming Lei | 3c04e20 | 2008-09-18 23:06:21 +0800 | [diff] [blame] | 27 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/errno.h> |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/timer.h> |
| 31 | #include <linux/list.h> |
| 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/reboot.h> |
| 34 | #include <linux/usb.h> |
| 35 | #include <linux/moduleparam.h> |
| 36 | #include <linux/dma-mapping.h> |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 37 | #include <linux/debugfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include "../core/hcd.h" |
| 40 | |
| 41 | #include <asm/byteorder.h> |
| 42 | #include <asm/io.h> |
| 43 | #include <asm/irq.h> |
| 44 | #include <asm/system.h> |
| 45 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | /*-------------------------------------------------------------------------*/ |
| 48 | |
| 49 | /* |
| 50 | * EHCI hc_driver implementation ... experimental, incomplete. |
| 51 | * Based on the final 1.0 register interface specification. |
| 52 | * |
| 53 | * USB 2.0 shows up in upcoming www.pcmcia.org technology. |
| 54 | * First was PCMCIA, like ISA; then CardBus, which is PCI. |
| 55 | * Next comes "CardBay", using USB 2.0 signals. |
| 56 | * |
| 57 | * Contains additional contributions by Brad Hards, Rory Bolt, and others. |
| 58 | * Special thanks to Intel and VIA for providing host controllers to |
| 59 | * test this driver on, and Cypress (including In-System Design) for |
| 60 | * providing early devices for those host controllers to talk to! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | */ |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define DRIVER_AUTHOR "David Brownell" |
| 64 | #define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver" |
| 65 | |
| 66 | static const char hcd_name [] = "ehci_hcd"; |
| 67 | |
| 68 | |
David Brownell | 9776afc | 2008-02-01 11:42:05 -0800 | [diff] [blame] | 69 | #undef VERBOSE_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #undef EHCI_URB_TRACE |
| 71 | |
| 72 | #ifdef DEBUG |
| 73 | #define EHCI_STATS |
| 74 | #endif |
| 75 | |
| 76 | /* magic numbers that can affect system performance */ |
| 77 | #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */ |
| 78 | #define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */ |
| 79 | #define EHCI_TUNE_RL_TT 0 |
| 80 | #define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */ |
| 81 | #define EHCI_TUNE_MULT_TT 1 |
| 82 | #define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */ |
| 83 | |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 84 | #define EHCI_IAA_MSECS 10 /* arbitrary */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | #define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */ |
| 86 | #define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */ |
David Brownell | b963801 | 2008-06-03 22:21:55 -0700 | [diff] [blame] | 87 | #define EHCI_SHRINK_FRAMES 5 /* async qh unlink delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | /* Initial IRQ latency: faster than hw default */ |
| 90 | static int log2_irq_thresh = 0; // 0 to 6 |
| 91 | module_param (log2_irq_thresh, int, S_IRUGO); |
| 92 | MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); |
| 93 | |
| 94 | /* initial park setting: slower than hw default */ |
| 95 | static unsigned park = 0; |
| 96 | module_param (park, uint, S_IRUGO); |
| 97 | MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets"); |
| 98 | |
David Brownell | 93f1a47 | 2006-11-16 23:34:58 -0800 | [diff] [blame] | 99 | /* for flakey hardware, ignore overcurrent indicators */ |
| 100 | static int ignore_oc = 0; |
| 101 | module_param (ignore_oc, bool, S_IRUGO); |
| 102 | MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications"); |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #define INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT) |
| 105 | |
| 106 | /*-------------------------------------------------------------------------*/ |
| 107 | |
| 108 | #include "ehci.h" |
| 109 | #include "ehci-dbg.c" |
| 110 | |
| 111 | /*-------------------------------------------------------------------------*/ |
| 112 | |
| 113 | /* |
| 114 | * handshake - spin reading hc until handshake completes or fails |
| 115 | * @ptr: address of hc register to be read |
| 116 | * @mask: bits to look at in result of read |
| 117 | * @done: value of those bits when handshake succeeds |
| 118 | * @usec: timeout in microseconds |
| 119 | * |
| 120 | * Returns negative errno, or zero on success |
| 121 | * |
| 122 | * Success happens when the "mask" bits have the specified value (hardware |
| 123 | * handshake done). There are two failure modes: "usec" have passed (major |
| 124 | * hardware flakeout), or the register reads as all-ones (hardware removed). |
| 125 | * |
| 126 | * That last failure should_only happen in cases like physical cardbus eject |
| 127 | * before driver shutdown. But it also seems to be caused by bugs in cardbus |
| 128 | * bridge shutdown: shutting down the bridge before the devices using it. |
| 129 | */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 130 | static int handshake (struct ehci_hcd *ehci, void __iomem *ptr, |
| 131 | u32 mask, u32 done, int usec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
| 133 | u32 result; |
| 134 | |
| 135 | do { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 136 | result = ehci_readl(ehci, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | if (result == ~(u32)0) /* card removed */ |
| 138 | return -ENODEV; |
| 139 | result &= mask; |
| 140 | if (result == done) |
| 141 | return 0; |
| 142 | udelay (1); |
| 143 | usec--; |
| 144 | } while (usec > 0); |
| 145 | return -ETIMEDOUT; |
| 146 | } |
| 147 | |
| 148 | /* force HC to halt state from unknown (EHCI spec section 2.3) */ |
| 149 | static int ehci_halt (struct ehci_hcd *ehci) |
| 150 | { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 151 | u32 temp = ehci_readl(ehci, &ehci->regs->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
David Brownell | 72f30b6 | 2005-09-27 10:19:39 -0700 | [diff] [blame] | 153 | /* disable any irqs left enabled by previous code */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 154 | ehci_writel(ehci, 0, &ehci->regs->intr_enable); |
David Brownell | 72f30b6 | 2005-09-27 10:19:39 -0700 | [diff] [blame] | 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | if ((temp & STS_HALT) != 0) |
| 157 | return 0; |
| 158 | |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 159 | temp = ehci_readl(ehci, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | temp &= ~CMD_RUN; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 161 | ehci_writel(ehci, temp, &ehci->regs->command); |
| 162 | return handshake (ehci, &ehci->regs->status, |
| 163 | STS_HALT, STS_HALT, 16 * 125); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } |
| 165 | |
David Brownell | 0bcfeb3 | 2008-08-26 14:43:46 -0700 | [diff] [blame] | 166 | static int handshake_on_error_set_halt(struct ehci_hcd *ehci, void __iomem *ptr, |
| 167 | u32 mask, u32 done, int usec) |
| 168 | { |
| 169 | int error; |
| 170 | |
| 171 | error = handshake(ehci, ptr, mask, done, usec); |
| 172 | if (error) { |
| 173 | ehci_halt(ehci); |
| 174 | ehci_to_hcd(ehci)->state = HC_STATE_HALT; |
| 175 | ehci_err(ehci, "force halt; handhake %p %08x %08x -> %d\n", |
| 176 | ptr, mask, done, error); |
| 177 | } |
| 178 | |
| 179 | return error; |
| 180 | } |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /* put TDI/ARC silicon into EHCI mode */ |
| 183 | static void tdi_reset (struct ehci_hcd *ehci) |
| 184 | { |
| 185 | u32 __iomem *reg_ptr; |
| 186 | u32 tmp; |
| 187 | |
Vladimir Barinov | d23a137 | 2007-05-23 20:07:48 +0400 | [diff] [blame] | 188 | reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 189 | tmp = ehci_readl(ehci, reg_ptr); |
Vladimir Barinov | d23a137 | 2007-05-23 20:07:48 +0400 | [diff] [blame] | 190 | tmp |= USBMODE_CM_HC; |
| 191 | /* The default byte access to MMR space is LE after |
| 192 | * controller reset. Set the required endian mode |
| 193 | * for transfer buffers to match the host microprocessor |
| 194 | */ |
| 195 | if (ehci_big_endian_mmio(ehci)) |
| 196 | tmp |= USBMODE_BE; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 197 | ehci_writel(ehci, tmp, reg_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /* reset a non-running (STS_HALT == 1) controller */ |
| 201 | static int ehci_reset (struct ehci_hcd *ehci) |
| 202 | { |
| 203 | int retval; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 204 | u32 command = ehci_readl(ehci, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | command |= CMD_RESET; |
| 207 | dbg_cmd (ehci, "reset", command); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 208 | ehci_writel(ehci, command, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | ehci_to_hcd(ehci)->state = HC_STATE_HALT; |
| 210 | ehci->next_statechange = jiffies; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 211 | retval = handshake (ehci, &ehci->regs->command, |
| 212 | CMD_RESET, 0, 250 * 1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | if (retval) |
| 215 | return retval; |
| 216 | |
| 217 | if (ehci_is_TDI(ehci)) |
| 218 | tdi_reset (ehci); |
| 219 | |
| 220 | return retval; |
| 221 | } |
| 222 | |
| 223 | /* idle the controller (from running) */ |
| 224 | static void ehci_quiesce (struct ehci_hcd *ehci) |
| 225 | { |
| 226 | u32 temp; |
| 227 | |
| 228 | #ifdef DEBUG |
| 229 | if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state)) |
| 230 | BUG (); |
| 231 | #endif |
| 232 | |
| 233 | /* wait for any schedule enables/disables to take effect */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 234 | temp = ehci_readl(ehci, &ehci->regs->command) << 10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | temp &= STS_ASS | STS_PSS; |
Karsten Wiese | c765d4c | 2008-02-16 13:44:42 -0800 | [diff] [blame] | 236 | if (handshake_on_error_set_halt(ehci, &ehci->regs->status, |
| 237 | STS_ASS | STS_PSS, temp, 16 * 125)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
| 240 | /* then disable anything that's still active */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 241 | temp = ehci_readl(ehci, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 243 | ehci_writel(ehci, temp, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | /* hardware can take 16 microframes to turn off ... */ |
Karsten Wiese | c765d4c | 2008-02-16 13:44:42 -0800 | [diff] [blame] | 246 | handshake_on_error_set_halt(ehci, &ehci->regs->status, |
| 247 | STS_ASS | STS_PSS, 0, 16 * 125); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | /*-------------------------------------------------------------------------*/ |
| 251 | |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 252 | static void end_unlink_async(struct ehci_hcd *ehci); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 253 | static void ehci_work(struct ehci_hcd *ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | #include "ehci-hub.c" |
| 256 | #include "ehci-mem.c" |
| 257 | #include "ehci-q.c" |
| 258 | #include "ehci-sched.c" |
| 259 | |
| 260 | /*-------------------------------------------------------------------------*/ |
| 261 | |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 262 | static void ehci_iaa_watchdog(unsigned long param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { |
| 264 | struct ehci_hcd *ehci = (struct ehci_hcd *) param; |
| 265 | unsigned long flags; |
| 266 | |
| 267 | spin_lock_irqsave (&ehci->lock, flags); |
| 268 | |
David Brownell | e82cc12 | 2008-03-07 13:49:42 -0800 | [diff] [blame] | 269 | /* Lost IAA irqs wedge things badly; seen first with a vt8235. |
| 270 | * So we need this watchdog, but must protect it against both |
| 271 | * (a) SMP races against real IAA firing and retriggering, and |
| 272 | * (b) clean HC shutdown, when IAA watchdog was pending. |
| 273 | */ |
| 274 | if (ehci->reclaim |
| 275 | && !timer_pending(&ehci->iaa_watchdog) |
| 276 | && HC_IS_RUNNING(ehci_to_hcd(ehci)->state)) { |
| 277 | u32 cmd, status; |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 278 | |
David Brownell | e82cc12 | 2008-03-07 13:49:42 -0800 | [diff] [blame] | 279 | /* If we get here, IAA is *REALLY* late. It's barely |
| 280 | * conceivable that the system is so busy that CMD_IAAD |
| 281 | * is still legitimately set, so let's be sure it's |
| 282 | * clear before we read STS_IAA. (The HC should clear |
| 283 | * CMD_IAAD when it sets STS_IAA.) |
| 284 | */ |
| 285 | cmd = ehci_readl(ehci, &ehci->regs->command); |
| 286 | if (cmd & CMD_IAAD) |
| 287 | ehci_writel(ehci, cmd & ~CMD_IAAD, |
| 288 | &ehci->regs->command); |
| 289 | |
| 290 | /* If IAA is set here it either legitimately triggered |
| 291 | * before we cleared IAAD above (but _way_ late, so we'll |
| 292 | * still count it as lost) ... or a silicon erratum: |
| 293 | * - VIA seems to set IAA without triggering the IRQ; |
| 294 | * - IAAD potentially cleared without setting IAA. |
| 295 | */ |
| 296 | status = ehci_readl(ehci, &ehci->regs->status); |
| 297 | if ((status & STS_IAA) || !(cmd & CMD_IAAD)) { |
Greg Kroah-Hartman | 64f8979 | 2006-10-17 13:57:18 -0700 | [diff] [blame] | 298 | COUNT (ehci->stats.lost_iaa); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 299 | ehci_writel(ehci, STS_IAA, &ehci->regs->status); |
Greg Kroah-Hartman | 64f8979 | 2006-10-17 13:57:18 -0700 | [diff] [blame] | 300 | } |
David Brownell | e82cc12 | 2008-03-07 13:49:42 -0800 | [diff] [blame] | 301 | |
| 302 | ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n", |
| 303 | status, cmd); |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 304 | end_unlink_async(ehci); |
Greg Kroah-Hartman | 64f8979 | 2006-10-17 13:57:18 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 307 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 308 | } |
| 309 | |
| 310 | static void ehci_watchdog(unsigned long param) |
| 311 | { |
| 312 | struct ehci_hcd *ehci = (struct ehci_hcd *) param; |
| 313 | unsigned long flags; |
| 314 | |
| 315 | spin_lock_irqsave(&ehci->lock, flags); |
| 316 | |
| 317 | /* stop async processing after it's idled a bit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | if (test_bit (TIMER_ASYNC_OFF, &ehci->actions)) |
David Brownell | 26f953f | 2006-09-18 17:03:16 -0700 | [diff] [blame] | 319 | start_unlink_async (ehci, ehci->async); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | /* ehci could run by timer, without IRQs ... */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 322 | ehci_work (ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
| 324 | spin_unlock_irqrestore (&ehci->lock, flags); |
| 325 | } |
| 326 | |
Alan Stern | 8903795 | 2007-02-13 14:55:27 -0500 | [diff] [blame] | 327 | /* On some systems, leaving remote wakeup enabled prevents system shutdown. |
| 328 | * The firmware seems to think that powering off is a wakeup event! |
| 329 | * This routine turns off remote wakeup and everything else, on all ports. |
| 330 | */ |
| 331 | static void ehci_turn_off_all_ports(struct ehci_hcd *ehci) |
| 332 | { |
| 333 | int port = HCS_N_PORTS(ehci->hcs_params); |
| 334 | |
| 335 | while (port--) |
| 336 | ehci_writel(ehci, PORT_RWC_BITS, |
| 337 | &ehci->regs->port_status[port]); |
| 338 | } |
| 339 | |
Sarah Sharp | 21da84a | 2008-04-08 14:30:18 -0700 | [diff] [blame] | 340 | /* |
| 341 | * Halt HC, turn off all ports, and let the BIOS use the companion controllers. |
| 342 | * Should be called with ehci->lock held. |
David Brownell | 72f30b6 | 2005-09-27 10:19:39 -0700 | [diff] [blame] | 343 | */ |
Sarah Sharp | 21da84a | 2008-04-08 14:30:18 -0700 | [diff] [blame] | 344 | static void ehci_silence_controller(struct ehci_hcd *ehci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Sarah Sharp | 21da84a | 2008-04-08 14:30:18 -0700 | [diff] [blame] | 346 | ehci_halt(ehci); |
Alan Stern | 8903795 | 2007-02-13 14:55:27 -0500 | [diff] [blame] | 347 | ehci_turn_off_all_ports(ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | /* make BIOS/etc use companion controller during reboot */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 350 | ehci_writel(ehci, 0, &ehci->regs->configured_flag); |
Alan Stern | 8903795 | 2007-02-13 14:55:27 -0500 | [diff] [blame] | 351 | |
| 352 | /* unblock posted writes */ |
| 353 | ehci_readl(ehci, &ehci->regs->configured_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Sarah Sharp | 21da84a | 2008-04-08 14:30:18 -0700 | [diff] [blame] | 356 | /* ehci_shutdown kick in for silicon on any bus (not just pci, etc). |
| 357 | * This forcibly disables dma and IRQs, helping kexec and other cases |
| 358 | * where the next system software may expect clean state. |
| 359 | */ |
| 360 | static void ehci_shutdown(struct usb_hcd *hcd) |
| 361 | { |
| 362 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 363 | |
| 364 | del_timer_sync(&ehci->watchdog); |
| 365 | del_timer_sync(&ehci->iaa_watchdog); |
| 366 | |
| 367 | spin_lock_irq(&ehci->lock); |
| 368 | ehci_silence_controller(ehci); |
| 369 | spin_unlock_irq(&ehci->lock); |
| 370 | } |
| 371 | |
David Brownell | 56c1e26 | 2005-04-09 09:00:29 -0700 | [diff] [blame] | 372 | static void ehci_port_power (struct ehci_hcd *ehci, int is_on) |
| 373 | { |
| 374 | unsigned port; |
| 375 | |
| 376 | if (!HCS_PPC (ehci->hcs_params)) |
| 377 | return; |
| 378 | |
| 379 | ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down"); |
| 380 | for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; ) |
| 381 | (void) ehci_hub_control(ehci_to_hcd(ehci), |
| 382 | is_on ? SetPortFeature : ClearPortFeature, |
| 383 | USB_PORT_FEAT_POWER, |
| 384 | port--, NULL, 0); |
Alan Stern | 383975d | 2007-05-04 11:52:40 -0400 | [diff] [blame] | 385 | /* Flush those writes */ |
| 386 | ehci_readl(ehci, &ehci->regs->command); |
David Brownell | 56c1e26 | 2005-04-09 09:00:29 -0700 | [diff] [blame] | 387 | msleep(20); |
| 388 | } |
| 389 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 390 | /*-------------------------------------------------------------------------*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 392 | /* |
| 393 | * ehci_work is called from some interrupts, timers, and so on. |
| 394 | * it calls driver completion functions, after dropping ehci->lock. |
| 395 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 396 | static void ehci_work (struct ehci_hcd *ehci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 398 | timer_action_done (ehci, TIMER_IO_WATCHDOG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 400 | /* another CPU may drop ehci->lock during a schedule scan while |
| 401 | * it reports urb completions. this flag guards against bogus |
| 402 | * attempts at re-entrant schedule scanning. |
| 403 | */ |
| 404 | if (ehci->scanning) |
| 405 | return; |
| 406 | ehci->scanning = 1; |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 407 | scan_async (ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 408 | if (ehci->next_uframe != -1) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 409 | scan_periodic (ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 410 | ehci->scanning = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 412 | /* the IO watchdog guards against hardware or driver bugs that |
| 413 | * misplace IRQs, and should let us run completely without IRQs. |
| 414 | * such lossage has been observed on both VT6202 and VT8235. |
| 415 | */ |
| 416 | if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state) && |
| 417 | (ehci->async->qh_next.ptr != NULL || |
| 418 | ehci->periodic_sched != 0)) |
| 419 | timer_action (ehci, TIMER_IO_WATCHDOG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | |
Sarah Sharp | 21da84a | 2008-04-08 14:30:18 -0700 | [diff] [blame] | 422 | /* |
| 423 | * Called when the ehci_hcd module is removed. |
| 424 | */ |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 425 | static void ehci_stop (struct usb_hcd *hcd) |
| 426 | { |
| 427 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 428 | |
| 429 | ehci_dbg (ehci, "stop\n"); |
| 430 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 431 | /* no more interrupts ... */ |
| 432 | del_timer_sync (&ehci->watchdog); |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 433 | del_timer_sync(&ehci->iaa_watchdog); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 434 | |
| 435 | spin_lock_irq(&ehci->lock); |
| 436 | if (HC_IS_RUNNING (hcd->state)) |
| 437 | ehci_quiesce (ehci); |
| 438 | |
Sarah Sharp | 21da84a | 2008-04-08 14:30:18 -0700 | [diff] [blame] | 439 | ehci_silence_controller(ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 440 | ehci_reset (ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 441 | spin_unlock_irq(&ehci->lock); |
| 442 | |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 443 | remove_companion_file(ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 444 | remove_debug_files (ehci); |
| 445 | |
| 446 | /* root hub is shut down separately (first, when possible) */ |
| 447 | spin_lock_irq (&ehci->lock); |
| 448 | if (ehci->async) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 449 | ehci_work (ehci); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 450 | spin_unlock_irq (&ehci->lock); |
| 451 | ehci_mem_cleanup (ehci); |
| 452 | |
| 453 | #ifdef EHCI_STATS |
| 454 | ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n", |
| 455 | ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim, |
| 456 | ehci->stats.lost_iaa); |
| 457 | ehci_dbg (ehci, "complete %ld unlink %ld\n", |
| 458 | ehci->stats.complete, ehci->stats.unlink); |
| 459 | #endif |
| 460 | |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 461 | dbg_status (ehci, "ehci_stop completed", |
| 462 | ehci_readl(ehci, &ehci->regs->status)); |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 463 | } |
| 464 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 465 | /* one-time init, only for memory state */ |
| 466 | static int ehci_init(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | { |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 468 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | u32 temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | int retval; |
| 471 | u32 hcc_params; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 473 | spin_lock_init(&ehci->lock); |
| 474 | |
| 475 | init_timer(&ehci->watchdog); |
| 476 | ehci->watchdog.function = ehci_watchdog; |
| 477 | ehci->watchdog.data = (unsigned long) ehci; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 479 | init_timer(&ehci->iaa_watchdog); |
| 480 | ehci->iaa_watchdog.function = ehci_iaa_watchdog; |
| 481 | ehci->iaa_watchdog.data = (unsigned long) ehci; |
| 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | /* |
| 484 | * hw default: 1K periodic list heads, one per frame. |
| 485 | * periodic_size can shrink by USBCMD update if hcc_params allows. |
| 486 | */ |
| 487 | ehci->periodic_size = DEFAULT_I_TDPS; |
Karsten Wiese | 9aa09d2 | 2009-02-08 16:07:58 -0800 | [diff] [blame^] | 488 | INIT_LIST_HEAD(&ehci->cached_itd_list); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 489 | if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | return retval; |
| 491 | |
| 492 | /* controllers may cache some of the periodic schedule ... */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 493 | hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params); |
David Brownell | 53bd6a6 | 2006-08-30 14:50:06 -0700 | [diff] [blame] | 494 | if (HCC_ISOC_CACHE(hcc_params)) // full frame cache |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | ehci->i_thresh = 8; |
| 496 | else // N microframes cached |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 497 | ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | ehci->reclaim = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | ehci->next_uframe = -1; |
Karsten Wiese | 9aa09d2 | 2009-02-08 16:07:58 -0800 | [diff] [blame^] | 501 | ehci->clock_frame = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | /* |
| 504 | * dedicate a qh for the async ring head, since we couldn't unlink |
| 505 | * a 'real' qh without stopping the async schedule [4.8]. use it |
| 506 | * as the 'reclamation list head' too. |
| 507 | * its dummy is used in hw_alt_next of many tds, to prevent the qh |
| 508 | * from automatically advancing to the next td after short reads. |
| 509 | */ |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 510 | ehci->async->qh_next.qh = NULL; |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 511 | ehci->async->hw_next = QH_NEXT(ehci, ehci->async->qh_dma); |
| 512 | ehci->async->hw_info1 = cpu_to_hc32(ehci, QH_HEAD); |
| 513 | ehci->async->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT); |
| 514 | ehci->async->hw_qtd_next = EHCI_LIST_END(ehci); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 515 | ehci->async->qh_state = QH_STATE_LINKED; |
Stefan Roese | 6dbd682 | 2007-05-01 09:29:37 -0700 | [diff] [blame] | 516 | ehci->async->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | /* clear interrupt enables, set irq latency */ |
| 519 | if (log2_irq_thresh < 0 || log2_irq_thresh > 6) |
| 520 | log2_irq_thresh = 0; |
| 521 | temp = 1 << (16 + log2_irq_thresh); |
| 522 | if (HCC_CANPARK(hcc_params)) { |
| 523 | /* HW default park == 3, on hardware that supports it (like |
| 524 | * NVidia and ALI silicon), maximizes throughput on the async |
| 525 | * schedule by avoiding QH fetches between transfers. |
| 526 | * |
| 527 | * With fast usb storage devices and NForce2, "park" seems to |
| 528 | * make problems: throughput reduction (!), data errors... |
| 529 | */ |
| 530 | if (park) { |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 531 | park = min(park, (unsigned) 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | temp |= CMD_PARK; |
| 533 | temp |= park << 8; |
| 534 | } |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 535 | ehci_dbg(ehci, "park %d\n", park); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 537 | if (HCC_PGM_FRAMELISTLEN(hcc_params)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | /* periodic schedule size can be smaller than default */ |
| 539 | temp &= ~(3 << 2); |
| 540 | temp |= (EHCI_TUNE_FLS << 2); |
| 541 | switch (EHCI_TUNE_FLS) { |
| 542 | case 0: ehci->periodic_size = 1024; break; |
| 543 | case 1: ehci->periodic_size = 512; break; |
| 544 | case 2: ehci->periodic_size = 256; break; |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 545 | default: BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
| 547 | } |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 548 | ehci->command = temp; |
| 549 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 550 | return 0; |
| 551 | } |
| 552 | |
| 553 | /* start HC running; it's halted, ehci_init() has been run (once) */ |
| 554 | static int ehci_run (struct usb_hcd *hcd) |
| 555 | { |
| 556 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 557 | int retval; |
| 558 | u32 temp; |
| 559 | u32 hcc_params; |
| 560 | |
Marcelo Tosatti | 1d619f1 | 2007-01-21 19:45:59 -0200 | [diff] [blame] | 561 | hcd->uses_new_polling = 1; |
| 562 | hcd->poll_rh = 0; |
| 563 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 564 | /* EHCI spec section 4.1 */ |
| 565 | if ((retval = ehci_reset(ehci)) != 0) { |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 566 | ehci_mem_cleanup(ehci); |
| 567 | return retval; |
| 568 | } |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 569 | ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list); |
| 570 | ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 571 | |
| 572 | /* |
| 573 | * hcc_params controls whether ehci->regs->segment must (!!!) |
| 574 | * be used; it constrains QH/ITD/SITD and QTD locations. |
| 575 | * pci_pool consistent memory always uses segment zero. |
| 576 | * streaming mappings for I/O buffers, like pci_map_single(), |
| 577 | * can return segments above 4GB, if the device allows. |
| 578 | * |
| 579 | * NOTE: the dma mask is visible through dma_supported(), so |
| 580 | * drivers can pass this info along ... like NETIF_F_HIGHDMA, |
| 581 | * Scsi_Host.highmem_io, and so forth. It's readonly to all |
| 582 | * host side drivers though. |
| 583 | */ |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 584 | hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 585 | if (HCC_64BIT_ADDR(hcc_params)) { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 586 | ehci_writel(ehci, 0, &ehci->regs->segment); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 587 | #if 0 |
| 588 | // this is deeply broken on almost all architectures |
| 589 | if (!dma_set_mask(hcd->self.controller, DMA_64BIT_MASK)) |
| 590 | ehci_info(ehci, "enabled 64bit DMA\n"); |
| 591 | #endif |
| 592 | } |
| 593 | |
| 594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | // Philips, Intel, and maybe others need CMD_RUN before the |
| 596 | // root hub will detect new devices (why?); NEC doesn't |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 597 | ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET); |
| 598 | ehci->command |= CMD_RUN; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 599 | ehci_writel(ehci, ehci->command, &ehci->regs->command); |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 600 | dbg_cmd (ehci, "init", ehci->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | /* |
| 603 | * Start, enabling full USB 2.0 functionality ... usb 1.1 devices |
| 604 | * are explicitly handed to companion controller(s), so no TT is |
| 605 | * involved with the root hub. (Except where one is integrated, |
| 606 | * and there's no companion controller unless maybe for USB OTG.) |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 607 | * |
| 608 | * Turning on the CF flag will transfer ownership of all ports |
| 609 | * from the companions to the EHCI controller. If any of the |
| 610 | * companions are in the middle of a port reset at the time, it |
| 611 | * could cause trouble. Write-locking ehci_cf_port_reset_rwsem |
David Brownell | 1cb5265 | 2007-11-13 16:22:30 -0800 | [diff] [blame] | 612 | * guarantees that no resets are in progress. After we set CF, |
| 613 | * a short delay lets the hardware catch up; new resets shouldn't |
| 614 | * be started before the port switching actions could complete. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | */ |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 616 | down_write(&ehci_cf_port_reset_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | hcd->state = HC_STATE_RUNNING; |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 618 | ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag); |
| 619 | ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */ |
David Brownell | 1cb5265 | 2007-11-13 16:22:30 -0800 | [diff] [blame] | 620 | msleep(5); |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 621 | up_write(&ehci_cf_port_reset_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 623 | temp = HC_VERSION(ehci_readl(ehci, &ehci->caps->hc_capbase)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | ehci_info (ehci, |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 625 | "USB %x.%x started, EHCI %x.%02x%s\n", |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 626 | ((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f), |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 627 | temp >> 8, temp & 0xff, |
David Brownell | 93f1a47 | 2006-11-16 23:34:58 -0800 | [diff] [blame] | 628 | ignore_oc ? ", overcurrent ignored" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 630 | ehci_writel(ehci, INTR_MASK, |
| 631 | &ehci->regs->intr_enable); /* Turn On Interrupts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
David Brownell | 1880752 | 2005-11-23 15:45:37 -0800 | [diff] [blame] | 633 | /* GRR this is run-once init(), being done every time the HC starts. |
| 634 | * So long as they're part of class devices, we can't do it init() |
| 635 | * since the class device isn't created that early. |
| 636 | */ |
| 637 | create_debug_files(ehci); |
Alan Stern | 57e06c1 | 2007-01-16 11:59:45 -0500 | [diff] [blame] | 638 | create_companion_file(ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
| 640 | return 0; |
| 641 | } |
| 642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | /*-------------------------------------------------------------------------*/ |
| 644 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 645 | static irqreturn_t ehci_irq (struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | { |
| 647 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
Alan Stern | 67b2e02 | 2008-11-12 17:04:53 -0500 | [diff] [blame] | 648 | u32 status, masked_status, pcd_status = 0, cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | int bh; |
| 650 | |
| 651 | spin_lock (&ehci->lock); |
| 652 | |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 653 | status = ehci_readl(ehci, &ehci->regs->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | /* e.g. cardbus physical eject */ |
| 656 | if (status == ~(u32) 0) { |
| 657 | ehci_dbg (ehci, "device removed\n"); |
| 658 | goto dead; |
| 659 | } |
| 660 | |
Alan Stern | 67b2e02 | 2008-11-12 17:04:53 -0500 | [diff] [blame] | 661 | masked_status = status & INTR_MASK; |
| 662 | if (!masked_status) { /* irq sharing? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | spin_unlock(&ehci->lock); |
| 664 | return IRQ_NONE; |
| 665 | } |
| 666 | |
| 667 | /* clear (just) interrupts */ |
Alan Stern | 67b2e02 | 2008-11-12 17:04:53 -0500 | [diff] [blame] | 668 | ehci_writel(ehci, masked_status, &ehci->regs->status); |
David Brownell | e82cc12 | 2008-03-07 13:49:42 -0800 | [diff] [blame] | 669 | cmd = ehci_readl(ehci, &ehci->regs->command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | bh = 0; |
| 671 | |
David Brownell | 9776afc | 2008-02-01 11:42:05 -0800 | [diff] [blame] | 672 | #ifdef VERBOSE_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | /* unrequested/ignored: Frame List Rollover */ |
| 674 | dbg_status (ehci, "irq", status); |
| 675 | #endif |
| 676 | |
| 677 | /* INT, ERR, and IAA interrupt rates can be throttled */ |
| 678 | |
| 679 | /* normal [4.15.1.2] or error [4.15.1.1] completion */ |
| 680 | if (likely ((status & (STS_INT|STS_ERR)) != 0)) { |
| 681 | if (likely ((status & STS_ERR) == 0)) |
| 682 | COUNT (ehci->stats.normal); |
| 683 | else |
| 684 | COUNT (ehci->stats.error); |
| 685 | bh = 1; |
| 686 | } |
| 687 | |
| 688 | /* complete the unlinking of some qh [4.15.2.3] */ |
| 689 | if (status & STS_IAA) { |
David Brownell | e82cc12 | 2008-03-07 13:49:42 -0800 | [diff] [blame] | 690 | /* guard against (alleged) silicon errata */ |
| 691 | if (cmd & CMD_IAAD) { |
| 692 | ehci_writel(ehci, cmd & ~CMD_IAAD, |
| 693 | &ehci->regs->command); |
| 694 | ehci_dbg(ehci, "IAA with IAAD still set?\n"); |
| 695 | } |
| 696 | if (ehci->reclaim) { |
| 697 | COUNT(ehci->stats.reclaim); |
| 698 | end_unlink_async(ehci); |
| 699 | } else |
| 700 | ehci_dbg(ehci, "IAA with nothing to reclaim?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | /* remote wakeup [4.3.1] */ |
David Brownell | d97cc2f | 2005-12-22 17:05:18 -0800 | [diff] [blame] | 704 | if (status & STS_PCD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | unsigned i = HCS_N_PORTS (ehci->hcs_params); |
David Brownell | d1b1842 | 2008-03-05 23:37:52 -0800 | [diff] [blame] | 706 | |
| 707 | /* kick root hub later */ |
Marcelo Tosatti | 1d619f1 | 2007-01-21 19:45:59 -0200 | [diff] [blame] | 708 | pcd_status = status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
| 710 | /* resume root hub? */ |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 711 | if (!(cmd & CMD_RUN)) |
Alan Stern | 8c03356 | 2006-11-09 14:42:16 -0500 | [diff] [blame] | 712 | usb_hcd_resume_root_hub(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
| 714 | while (i--) { |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 715 | int pstatus = ehci_readl(ehci, |
| 716 | &ehci->regs->port_status [i]); |
David Brownell | b972b68 | 2006-06-30 02:34:42 -0700 | [diff] [blame] | 717 | |
| 718 | if (pstatus & PORT_OWNER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | continue; |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 720 | if (!(test_bit(i, &ehci->suspended_ports) && |
| 721 | ((pstatus & PORT_RESUME) || |
| 722 | !(pstatus & PORT_SUSPEND)) && |
| 723 | (pstatus & PORT_PE) && |
| 724 | ehci->reset_done[i] == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | continue; |
| 726 | |
| 727 | /* start 20 msec resume signaling from this port, |
| 728 | * and make khubd collect PORT_STAT_C_SUSPEND to |
| 729 | * stop that signaling. |
| 730 | */ |
| 731 | ehci->reset_done [i] = jiffies + msecs_to_jiffies (20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | ehci_dbg (ehci, "port %d remote wakeup\n", i + 1); |
Alan Stern | 61e8b85 | 2007-04-09 11:52:31 -0400 | [diff] [blame] | 733 | mod_timer(&hcd->rh_timer, ehci->reset_done[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | } |
| 735 | } |
| 736 | |
| 737 | /* PCI errors [4.15.2.4] */ |
| 738 | if (unlikely ((status & STS_FATAL) != 0)) { |
Alan Stern | 67b2e02 | 2008-11-12 17:04:53 -0500 | [diff] [blame] | 739 | ehci_err(ehci, "fatal error\n"); |
Alan Stern | eafe5b9 | 2008-10-06 11:25:53 -0400 | [diff] [blame] | 740 | dbg_cmd(ehci, "fatal", cmd); |
| 741 | dbg_status(ehci, "fatal", status); |
Alan Stern | 67b2e02 | 2008-11-12 17:04:53 -0500 | [diff] [blame] | 742 | ehci_halt(ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | dead: |
Alan Stern | 67b2e02 | 2008-11-12 17:04:53 -0500 | [diff] [blame] | 744 | ehci_reset(ehci); |
| 745 | ehci_writel(ehci, 0, &ehci->regs->configured_flag); |
| 746 | /* generic layer kills/unlinks all urbs, then |
| 747 | * uses ehci_stop to clean up the rest |
| 748 | */ |
| 749 | bh = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | if (bh) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 753 | ehci_work (ehci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | spin_unlock (&ehci->lock); |
David Brownell | d1b1842 | 2008-03-05 23:37:52 -0800 | [diff] [blame] | 755 | if (pcd_status) |
Marcelo Tosatti | 1d619f1 | 2007-01-21 19:45:59 -0200 | [diff] [blame] | 756 | usb_hcd_poll_rh_status(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | return IRQ_HANDLED; |
| 758 | } |
| 759 | |
| 760 | /*-------------------------------------------------------------------------*/ |
| 761 | |
| 762 | /* |
| 763 | * non-error returns are a promise to giveback() the urb later |
| 764 | * we drop ownership so next owner (or urb unlink) can get it |
| 765 | * |
| 766 | * urb + dev is in hcd.self.controller.urb_list |
| 767 | * we're queueing TDs onto software and hardware lists |
| 768 | * |
| 769 | * hcd-specific init for hcpriv hasn't been done yet |
| 770 | * |
| 771 | * NOTE: control, bulk, and interrupt share the same code to append TDs |
| 772 | * to a (possibly active) QH, and the same QH scanning code. |
| 773 | */ |
| 774 | static int ehci_urb_enqueue ( |
| 775 | struct usb_hcd *hcd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | struct urb *urb, |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 777 | gfp_t mem_flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | ) { |
| 779 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 780 | struct list_head qtd_list; |
| 781 | |
| 782 | INIT_LIST_HEAD (&qtd_list); |
| 783 | |
| 784 | switch (usb_pipetype (urb->pipe)) { |
David Brownell | 25b70a8 | 2008-03-04 15:11:07 -0800 | [diff] [blame] | 785 | case PIPE_CONTROL: |
| 786 | /* qh_completions() code doesn't handle all the fault cases |
| 787 | * in multi-TD control transfers. Even 1KB is rare anyway. |
| 788 | */ |
| 789 | if (urb->transfer_buffer_length > (16 * 1024)) |
| 790 | return -EMSGSIZE; |
| 791 | /* FALLTHROUGH */ |
| 792 | /* case PIPE_BULK: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | default: |
| 794 | if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags)) |
| 795 | return -ENOMEM; |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 796 | return submit_async(ehci, urb, &qtd_list, mem_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
| 798 | case PIPE_INTERRUPT: |
| 799 | if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags)) |
| 800 | return -ENOMEM; |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 801 | return intr_submit(ehci, urb, &qtd_list, mem_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
| 803 | case PIPE_ISOCHRONOUS: |
| 804 | if (urb->dev->speed == USB_SPEED_HIGH) |
| 805 | return itd_submit (ehci, urb, mem_flags); |
| 806 | else |
| 807 | return sitd_submit (ehci, urb, mem_flags); |
| 808 | } |
| 809 | } |
| 810 | |
| 811 | static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh) |
| 812 | { |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 813 | /* failfast */ |
David Brownell | e82cc12 | 2008-03-07 13:49:42 -0800 | [diff] [blame] | 814 | if (!HC_IS_RUNNING(ehci_to_hcd(ehci)->state) && ehci->reclaim) |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 815 | end_unlink_async(ehci); |
| 816 | |
| 817 | /* if it's not linked then there's nothing to do */ |
| 818 | if (qh->qh_state != QH_STATE_LINKED) |
| 819 | ; |
| 820 | |
| 821 | /* defer till later if busy */ |
| 822 | else if (ehci->reclaim) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | struct ehci_qh *last; |
| 824 | |
| 825 | for (last = ehci->reclaim; |
| 826 | last->reclaim; |
| 827 | last = last->reclaim) |
| 828 | continue; |
| 829 | qh->qh_state = QH_STATE_UNLINK_WAIT; |
| 830 | last->reclaim = qh; |
| 831 | |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 832 | /* start IAA cycle */ |
| 833 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | start_unlink_async (ehci, qh); |
| 835 | } |
| 836 | |
| 837 | /* remove from hardware lists |
| 838 | * completions normally happen asynchronously |
| 839 | */ |
| 840 | |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 841 | static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | { |
| 843 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 844 | struct ehci_qh *qh; |
| 845 | unsigned long flags; |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 846 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
| 848 | spin_lock_irqsave (&ehci->lock, flags); |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 849 | rc = usb_hcd_check_unlink_urb(hcd, urb, status); |
| 850 | if (rc) |
| 851 | goto done; |
| 852 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | switch (usb_pipetype (urb->pipe)) { |
| 854 | // case PIPE_CONTROL: |
| 855 | // case PIPE_BULK: |
| 856 | default: |
| 857 | qh = (struct ehci_qh *) urb->hcpriv; |
| 858 | if (!qh) |
| 859 | break; |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 860 | switch (qh->qh_state) { |
| 861 | case QH_STATE_LINKED: |
| 862 | case QH_STATE_COMPLETING: |
| 863 | unlink_async(ehci, qh); |
| 864 | break; |
| 865 | case QH_STATE_UNLINK: |
| 866 | case QH_STATE_UNLINK_WAIT: |
| 867 | /* already started */ |
| 868 | break; |
| 869 | case QH_STATE_IDLE: |
| 870 | WARN_ON(1); |
| 871 | break; |
| 872 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | break; |
| 874 | |
| 875 | case PIPE_INTERRUPT: |
| 876 | qh = (struct ehci_qh *) urb->hcpriv; |
| 877 | if (!qh) |
| 878 | break; |
| 879 | switch (qh->qh_state) { |
| 880 | case QH_STATE_LINKED: |
| 881 | intr_deschedule (ehci, qh); |
| 882 | /* FALL THROUGH */ |
| 883 | case QH_STATE_IDLE: |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 884 | qh_completions (ehci, qh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | break; |
| 886 | default: |
| 887 | ehci_dbg (ehci, "bogus qh %p state %d\n", |
| 888 | qh, qh->qh_state); |
| 889 | goto done; |
| 890 | } |
| 891 | |
| 892 | /* reschedule QH iff another request is queued */ |
| 893 | if (!list_empty (&qh->qtd_list) |
| 894 | && HC_IS_RUNNING (hcd->state)) { |
David Brownell | e1a4914 | 2008-02-02 02:36:53 -0800 | [diff] [blame] | 895 | rc = qh_schedule(ehci, qh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
David Brownell | e1a4914 | 2008-02-02 02:36:53 -0800 | [diff] [blame] | 897 | /* An error here likely indicates handshake failure |
| 898 | * or no space left in the schedule. Neither fault |
| 899 | * should happen often ... |
| 900 | * |
| 901 | * FIXME kill the now-dysfunctional queued urbs |
| 902 | */ |
| 903 | if (rc != 0) |
| 904 | ehci_err(ehci, |
| 905 | "can't reschedule qh %p, err %d", |
| 906 | qh, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | } |
| 908 | break; |
| 909 | |
| 910 | case PIPE_ISOCHRONOUS: |
| 911 | // itd or sitd ... |
| 912 | |
| 913 | // wait till next completion, do it then. |
| 914 | // completion irqs can wait up to 1024 msec, |
| 915 | break; |
| 916 | } |
| 917 | done: |
| 918 | spin_unlock_irqrestore (&ehci->lock, flags); |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 919 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | /*-------------------------------------------------------------------------*/ |
| 923 | |
| 924 | // bulk qh holds the data toggle |
| 925 | |
| 926 | static void |
| 927 | ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep) |
| 928 | { |
| 929 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
| 930 | unsigned long flags; |
| 931 | struct ehci_qh *qh, *tmp; |
| 932 | |
| 933 | /* ASSERT: any requests/urbs are being unlinked */ |
| 934 | /* ASSERT: nobody can be submitting urbs for this any more */ |
| 935 | |
| 936 | rescan: |
| 937 | spin_lock_irqsave (&ehci->lock, flags); |
| 938 | qh = ep->hcpriv; |
| 939 | if (!qh) |
| 940 | goto done; |
| 941 | |
| 942 | /* endpoints can be iso streams. for now, we don't |
| 943 | * accelerate iso completions ... so spin a while. |
| 944 | */ |
| 945 | if (qh->hw_info1 == 0) { |
| 946 | ehci_vdbg (ehci, "iso delay\n"); |
| 947 | goto idle_timeout; |
| 948 | } |
| 949 | |
| 950 | if (!HC_IS_RUNNING (hcd->state)) |
| 951 | qh->qh_state = QH_STATE_IDLE; |
| 952 | switch (qh->qh_state) { |
| 953 | case QH_STATE_LINKED: |
| 954 | for (tmp = ehci->async->qh_next.qh; |
| 955 | tmp && tmp != qh; |
| 956 | tmp = tmp->qh_next.qh) |
| 957 | continue; |
| 958 | /* periodic qh self-unlinks on empty */ |
| 959 | if (!tmp) |
| 960 | goto nogood; |
| 961 | unlink_async (ehci, qh); |
| 962 | /* FALL THROUGH */ |
| 963 | case QH_STATE_UNLINK: /* wait for hw to finish? */ |
Alan Stern | 07d29b6 | 2007-12-11 16:05:30 -0500 | [diff] [blame] | 964 | case QH_STATE_UNLINK_WAIT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | idle_timeout: |
| 966 | spin_unlock_irqrestore (&ehci->lock, flags); |
Nishanth Aravamudan | 22c4386 | 2005-08-15 11:30:11 -0700 | [diff] [blame] | 967 | schedule_timeout_uninterruptible(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | goto rescan; |
| 969 | case QH_STATE_IDLE: /* fully unlinked */ |
| 970 | if (list_empty (&qh->qtd_list)) { |
| 971 | qh_put (qh); |
| 972 | break; |
| 973 | } |
| 974 | /* else FALL THROUGH */ |
| 975 | default: |
| 976 | nogood: |
| 977 | /* caller was supposed to have unlinked any requests; |
| 978 | * that's not our job. just leak this memory. |
| 979 | */ |
| 980 | ehci_err (ehci, "qh %p (#%02x) state %d%s\n", |
| 981 | qh, ep->desc.bEndpointAddress, qh->qh_state, |
| 982 | list_empty (&qh->qtd_list) ? "" : "(has tds)"); |
| 983 | break; |
| 984 | } |
| 985 | ep->hcpriv = NULL; |
| 986 | done: |
| 987 | spin_unlock_irqrestore (&ehci->lock, flags); |
| 988 | return; |
| 989 | } |
| 990 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 991 | static int ehci_get_frame (struct usb_hcd *hcd) |
| 992 | { |
| 993 | struct ehci_hcd *ehci = hcd_to_ehci (hcd); |
Benjamin Herrenschmidt | 083522d | 2006-12-15 06:54:08 +1100 | [diff] [blame] | 994 | return (ehci_readl(ehci, &ehci->regs->frame_index) >> 3) % |
| 995 | ehci->periodic_size; |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 996 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | |
| 998 | /*-------------------------------------------------------------------------*/ |
| 999 | |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 1000 | MODULE_DESCRIPTION(DRIVER_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | MODULE_AUTHOR (DRIVER_AUTHOR); |
| 1002 | MODULE_LICENSE ("GPL"); |
| 1003 | |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 1004 | #ifdef CONFIG_PCI |
| 1005 | #include "ehci-pci.c" |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1006 | #define PCI_DRIVER ehci_pci_driver |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 1007 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | |
Li Yang | ba02978 | 2007-05-11 17:09:55 +0800 | [diff] [blame] | 1009 | #ifdef CONFIG_USB_EHCI_FSL |
Randy Vinson | 80cb9ae | 2006-01-20 13:53:38 -0800 | [diff] [blame] | 1010 | #include "ehci-fsl.c" |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1011 | #define PLATFORM_DRIVER ehci_fsl_driver |
Randy Vinson | 80cb9ae | 2006-01-20 13:53:38 -0800 | [diff] [blame] | 1012 | #endif |
| 1013 | |
Ralf Baechle | dfbaa7d | 2006-06-03 23:58:55 +0100 | [diff] [blame] | 1014 | #ifdef CONFIG_SOC_AU1200 |
Jordan Crouse | 76fa9a2 | 2006-01-20 14:06:09 -0800 | [diff] [blame] | 1015 | #include "ehci-au1xxx.c" |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1016 | #define PLATFORM_DRIVER ehci_hcd_au1xxx_driver |
Jordan Crouse | 76fa9a2 | 2006-01-20 14:06:09 -0800 | [diff] [blame] | 1017 | #endif |
| 1018 | |
Geoff Levand | ad75a41 | 2007-01-15 20:11:47 -0800 | [diff] [blame] | 1019 | #ifdef CONFIG_PPC_PS3 |
| 1020 | #include "ehci-ps3.c" |
Geoff Levand | 7a4eb7f | 2007-06-05 20:04:35 -0700 | [diff] [blame] | 1021 | #define PS3_SYSTEM_BUS_DRIVER ps3_ehci_driver |
Geoff Levand | ad75a41 | 2007-01-15 20:11:47 -0800 | [diff] [blame] | 1022 | #endif |
| 1023 | |
Valentine Barshak | da0e8fb | 2007-12-30 15:28:50 -0800 | [diff] [blame] | 1024 | #ifdef CONFIG_USB_EHCI_HCD_PPC_OF |
| 1025 | #include "ehci-ppc-of.c" |
| 1026 | #define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver |
| 1027 | #endif |
| 1028 | |
Lennert Buytenhek | 705a752 | 2008-03-27 14:51:40 -0400 | [diff] [blame] | 1029 | #ifdef CONFIG_PLAT_ORION |
Tzachi Perelstein | e96ffe2 | 2007-12-01 11:07:04 -0500 | [diff] [blame] | 1030 | #include "ehci-orion.c" |
| 1031 | #define PLATFORM_DRIVER ehci_orion_driver |
| 1032 | #endif |
| 1033 | |
Vladimir Barinov | 91bc4d3 | 2007-12-30 15:21:11 -0800 | [diff] [blame] | 1034 | #ifdef CONFIG_ARCH_IXP4XX |
| 1035 | #include "ehci-ixp4xx.c" |
| 1036 | #define PLATFORM_DRIVER ixp4xx_ehci_driver |
| 1037 | #endif |
| 1038 | |
Geoff Levand | ad75a41 | 2007-01-15 20:11:47 -0800 | [diff] [blame] | 1039 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \ |
Anton Vorontsov | c6dd2e6 | 2008-02-21 22:49:13 +0300 | [diff] [blame] | 1040 | !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) |
Matt Porter | 7ff71d6 | 2005-09-22 22:31:15 -0700 | [diff] [blame] | 1041 | #error "missing bus glue for ehci-hcd" |
| 1042 | #endif |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1043 | |
| 1044 | static int __init ehci_hcd_init(void) |
| 1045 | { |
| 1046 | int retval = 0; |
| 1047 | |
Alan Stern | 2b70f07 | 2008-10-02 11:47:15 -0400 | [diff] [blame] | 1048 | if (usb_disabled()) |
| 1049 | return -ENODEV; |
| 1050 | |
| 1051 | printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1052 | set_bit(USB_EHCI_LOADED, &usb_hcds_loaded); |
| 1053 | if (test_bit(USB_UHCI_LOADED, &usb_hcds_loaded) || |
| 1054 | test_bit(USB_OHCI_LOADED, &usb_hcds_loaded)) |
| 1055 | printk(KERN_WARNING "Warning! ehci_hcd should always be loaded" |
| 1056 | " before uhci_hcd and ohci_hcd, not after\n"); |
| 1057 | |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1058 | pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n", |
| 1059 | hcd_name, |
| 1060 | sizeof(struct ehci_qh), sizeof(struct ehci_qtd), |
| 1061 | sizeof(struct ehci_itd), sizeof(struct ehci_sitd)); |
| 1062 | |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1063 | #ifdef DEBUG |
| 1064 | ehci_debug_root = debugfs_create_dir("ehci", NULL); |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1065 | if (!ehci_debug_root) { |
| 1066 | retval = -ENOENT; |
| 1067 | goto err_debug; |
| 1068 | } |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1069 | #endif |
| 1070 | |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1071 | #ifdef PLATFORM_DRIVER |
| 1072 | retval = platform_driver_register(&PLATFORM_DRIVER); |
Valentine Barshak | da0e8fb | 2007-12-30 15:28:50 -0800 | [diff] [blame] | 1073 | if (retval < 0) |
| 1074 | goto clean0; |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1075 | #endif |
| 1076 | |
| 1077 | #ifdef PCI_DRIVER |
| 1078 | retval = pci_register_driver(&PCI_DRIVER); |
Valentine Barshak | da0e8fb | 2007-12-30 15:28:50 -0800 | [diff] [blame] | 1079 | if (retval < 0) |
| 1080 | goto clean1; |
Geoff Levand | ad75a41 | 2007-01-15 20:11:47 -0800 | [diff] [blame] | 1081 | #endif |
| 1082 | |
| 1083 | #ifdef PS3_SYSTEM_BUS_DRIVER |
Geoff Levand | 7a4eb7f | 2007-06-05 20:04:35 -0700 | [diff] [blame] | 1084 | retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER); |
Valentine Barshak | da0e8fb | 2007-12-30 15:28:50 -0800 | [diff] [blame] | 1085 | if (retval < 0) |
| 1086 | goto clean2; |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1087 | #endif |
| 1088 | |
Valentine Barshak | da0e8fb | 2007-12-30 15:28:50 -0800 | [diff] [blame] | 1089 | #ifdef OF_PLATFORM_DRIVER |
| 1090 | retval = of_register_platform_driver(&OF_PLATFORM_DRIVER); |
| 1091 | if (retval < 0) |
| 1092 | goto clean3; |
| 1093 | #endif |
| 1094 | return retval; |
| 1095 | |
| 1096 | #ifdef OF_PLATFORM_DRIVER |
| 1097 | /* of_unregister_platform_driver(&OF_PLATFORM_DRIVER); */ |
| 1098 | clean3: |
| 1099 | #endif |
| 1100 | #ifdef PS3_SYSTEM_BUS_DRIVER |
| 1101 | ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); |
| 1102 | clean2: |
| 1103 | #endif |
| 1104 | #ifdef PCI_DRIVER |
| 1105 | pci_unregister_driver(&PCI_DRIVER); |
| 1106 | clean1: |
| 1107 | #endif |
| 1108 | #ifdef PLATFORM_DRIVER |
| 1109 | platform_driver_unregister(&PLATFORM_DRIVER); |
| 1110 | clean0: |
| 1111 | #endif |
| 1112 | #ifdef DEBUG |
| 1113 | debugfs_remove(ehci_debug_root); |
| 1114 | ehci_debug_root = NULL; |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1115 | err_debug: |
Linus Torvalds | a9b6148 | 2008-10-20 14:23:29 -0700 | [diff] [blame] | 1116 | #endif |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1117 | clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded); |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1118 | return retval; |
| 1119 | } |
| 1120 | module_init(ehci_hcd_init); |
| 1121 | |
| 1122 | static void __exit ehci_hcd_cleanup(void) |
| 1123 | { |
Valentine Barshak | da0e8fb | 2007-12-30 15:28:50 -0800 | [diff] [blame] | 1124 | #ifdef OF_PLATFORM_DRIVER |
| 1125 | of_unregister_platform_driver(&OF_PLATFORM_DRIVER); |
| 1126 | #endif |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1127 | #ifdef PLATFORM_DRIVER |
| 1128 | platform_driver_unregister(&PLATFORM_DRIVER); |
| 1129 | #endif |
| 1130 | #ifdef PCI_DRIVER |
| 1131 | pci_unregister_driver(&PCI_DRIVER); |
| 1132 | #endif |
Geoff Levand | ad75a41 | 2007-01-15 20:11:47 -0800 | [diff] [blame] | 1133 | #ifdef PS3_SYSTEM_BUS_DRIVER |
Geoff Levand | 7a4eb7f | 2007-06-05 20:04:35 -0700 | [diff] [blame] | 1134 | ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); |
Geoff Levand | ad75a41 | 2007-01-15 20:11:47 -0800 | [diff] [blame] | 1135 | #endif |
Tony Jones | 694cc20 | 2007-09-11 14:07:31 -0700 | [diff] [blame] | 1136 | #ifdef DEBUG |
| 1137 | debugfs_remove(ehci_debug_root); |
| 1138 | #endif |
Alan Stern | 9beeee6 | 2008-10-02 11:48:13 -0400 | [diff] [blame] | 1139 | clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded); |
Kumar Gala | 01cced2 | 2006-04-11 10:07:16 -0500 | [diff] [blame] | 1140 | } |
| 1141 | module_exit(ehci_hcd_cleanup); |
| 1142 | |