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