blob: 2902199fa8ff910ee9f3bba997078a9908feabe4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2000-2004 by David Brownell
David Brownell53bd6a62006-08-30 14:50:06 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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 Torvalds1da177e2005-04-16 15:20:36 -070019#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>
Ming Lei3c04e202008-09-18 23:06:21 +080026#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/errno.h>
28#include <linux/init.h>
29#include <linux/timer.h>
Oliver Neukumee4ecb82009-11-27 15:17:59 +010030#include <linux/ktime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/list.h>
32#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020034#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/moduleparam.h>
36#include <linux/dma-mapping.h>
Tony Jones694cc202007-09-11 14:07:31 -070037#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Alek Duaa4d8342010-06-04 15:47:54 +080039#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#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 Torvalds1da177e2005-04-16 15:20:36 -070046
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 Torvalds1da177e2005-04-16 15:20:36 -070061 */
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define DRIVER_AUTHOR "David Brownell"
64#define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
65
66static const char hcd_name [] = "ehci_hcd";
67
68
David Brownell9776afc2008-02-01 11:42:05 -080069#undef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#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
Alan Sternffda0802010-07-14 11:03:46 -040082/*
83 * Some drivers think it's safe to schedule isochronous transfers more than
84 * 256 ms into the future (partly as a result of an old bug in the scheduling
85 * code). In an attempt to avoid trouble, we will use a minimum scheduling
86 * length of 512 frames instead of 256.
87 */
88#define EHCI_TUNE_FLS 1 /* (medium) 512-frame schedule */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Alan Stern07d29b62007-12-11 16:05:30 -050090#define EHCI_IAA_MSECS 10 /* arbitrary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */
92#define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */
Alan Stern004c1962011-07-05 12:34:05 -040093#define EHCI_SHRINK_JIFFIES (DIV_ROUND_UP(HZ, 200) + 1)
94 /* 200-ms async qh unlink delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* Initial IRQ latency: faster than hw default */
97static int log2_irq_thresh = 0; // 0 to 6
98module_param (log2_irq_thresh, int, S_IRUGO);
99MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
100
101/* initial park setting: slower than hw default */
102static unsigned park = 0;
103module_param (park, uint, S_IRUGO);
104MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
105
David Brownell93f1a472006-11-16 23:34:58 -0800106/* for flakey hardware, ignore overcurrent indicators */
107static int ignore_oc = 0;
108module_param (ignore_oc, bool, S_IRUGO);
109MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
110
Alek Du48f24972010-06-04 15:47:55 +0800111/* for link power management(LPM) feature */
112static unsigned int hird;
113module_param(hird, int, S_IRUGO);
Niels de Voscc556872011-05-31 23:00:10 +0100114MODULE_PARM_DESC(hird, "host initiated resume duration, +1 for each 75us");
Alek Du48f24972010-06-04 15:47:55 +0800115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT)
117
118/*-------------------------------------------------------------------------*/
119
120#include "ehci.h"
121#include "ehci-dbg.c"
Andiry Xuad935622011-03-01 14:57:05 +0800122#include "pci-quirks.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/*-------------------------------------------------------------------------*/
125
Alan Sternbc298472009-02-11 14:26:38 -0500126static void
127timer_action(struct ehci_hcd *ehci, enum ehci_timer_action action)
128{
129 /* Don't override timeouts which shrink or (later) disable
130 * the async ring; just the I/O watchdog. Note that if a
131 * SHRINK were pending, OFF would never be requested.
132 */
133 if (timer_pending(&ehci->watchdog)
134 && ((BIT(TIMER_ASYNC_SHRINK) | BIT(TIMER_ASYNC_OFF))
135 & ehci->actions))
136 return;
137
138 if (!test_and_set_bit(action, &ehci->actions)) {
139 unsigned long t;
140
141 switch (action) {
142 case TIMER_IO_WATCHDOG:
Alek Du403dbd32009-07-13 17:30:41 +0800143 if (!ehci->need_io_watchdog)
144 return;
Alan Sternbc298472009-02-11 14:26:38 -0500145 t = EHCI_IO_JIFFIES;
146 break;
147 case TIMER_ASYNC_OFF:
148 t = EHCI_ASYNC_JIFFIES;
149 break;
150 /* case TIMER_ASYNC_SHRINK: */
151 default:
Alan Stern004c1962011-07-05 12:34:05 -0400152 t = EHCI_SHRINK_JIFFIES;
Alan Sternbc298472009-02-11 14:26:38 -0500153 break;
154 }
155 mod_timer(&ehci->watchdog, t + jiffies);
156 }
157}
158
159/*-------------------------------------------------------------------------*/
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * handshake - spin reading hc until handshake completes or fails
163 * @ptr: address of hc register to be read
164 * @mask: bits to look at in result of read
165 * @done: value of those bits when handshake succeeds
166 * @usec: timeout in microseconds
167 *
168 * Returns negative errno, or zero on success
169 *
170 * Success happens when the "mask" bits have the specified value (hardware
171 * handshake done). There are two failure modes: "usec" have passed (major
172 * hardware flakeout), or the register reads as all-ones (hardware removed).
173 *
174 * That last failure should_only happen in cases like physical cardbus eject
175 * before driver shutdown. But it also seems to be caused by bugs in cardbus
176 * bridge shutdown: shutting down the bridge before the devices using it.
177 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100178static int handshake (struct ehci_hcd *ehci, void __iomem *ptr,
179 u32 mask, u32 done, int usec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 u32 result;
182
183 do {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100184 result = ehci_readl(ehci, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (result == ~(u32)0) /* card removed */
186 return -ENODEV;
187 result &= mask;
188 if (result == done)
189 return 0;
190 udelay (1);
191 usec--;
192 } while (usec > 0);
193 return -ETIMEDOUT;
194}
195
Matthieu CASTET65fd4272010-09-06 18:26:56 +0200196/* check TDI/ARC silicon is in host mode */
197static int tdi_in_host_mode (struct ehci_hcd *ehci)
198{
199 u32 __iomem *reg_ptr;
200 u32 tmp;
201
202 reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE);
203 tmp = ehci_readl(ehci, reg_ptr);
204 return (tmp & 3) == USBMODE_CM_HC;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* force HC to halt state from unknown (EHCI spec section 2.3) */
208static int ehci_halt (struct ehci_hcd *ehci)
209{
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100210 u32 temp = ehci_readl(ehci, &ehci->regs->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
David Brownell72f30b62005-09-27 10:19:39 -0700212 /* disable any irqs left enabled by previous code */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100213 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
David Brownell72f30b62005-09-27 10:19:39 -0700214
Matthieu CASTET65fd4272010-09-06 18:26:56 +0200215 if (ehci_is_TDI(ehci) && tdi_in_host_mode(ehci) == 0) {
216 return 0;
217 }
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if ((temp & STS_HALT) != 0)
220 return 0;
221
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100222 temp = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 temp &= ~CMD_RUN;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100224 ehci_writel(ehci, temp, &ehci->regs->command);
225 return handshake (ehci, &ehci->regs->status,
226 STS_HALT, STS_HALT, 16 * 125);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
David Brownell0bcfeb32008-08-26 14:43:46 -0700229static int handshake_on_error_set_halt(struct ehci_hcd *ehci, void __iomem *ptr,
230 u32 mask, u32 done, int usec)
231{
232 int error;
233
234 error = handshake(ehci, ptr, mask, done, usec);
235 if (error) {
236 ehci_halt(ehci);
237 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
Ozan Çağlayan65cb76b2009-10-13 08:37:09 +0300238 ehci_err(ehci, "force halt; handshake %p %08x %08x -> %d\n",
David Brownell0bcfeb32008-08-26 14:43:46 -0700239 ptr, mask, done, error);
240 }
241
242 return error;
243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/* put TDI/ARC silicon into EHCI mode */
246static void tdi_reset (struct ehci_hcd *ehci)
247{
248 u32 __iomem *reg_ptr;
249 u32 tmp;
250
Vladimir Barinovd23a1372007-05-23 20:07:48 +0400251 reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100252 tmp = ehci_readl(ehci, reg_ptr);
Vladimir Barinovd23a1372007-05-23 20:07:48 +0400253 tmp |= USBMODE_CM_HC;
254 /* The default byte access to MMR space is LE after
255 * controller reset. Set the required endian mode
256 * for transfer buffers to match the host microprocessor
257 */
258 if (ehci_big_endian_mmio(ehci))
259 tmp |= USBMODE_BE;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100260 ehci_writel(ehci, tmp, reg_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
263/* reset a non-running (STS_HALT == 1) controller */
264static int ehci_reset (struct ehci_hcd *ehci)
265{
266 int retval;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100267 u32 command = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Jason Wessel8d053c72009-08-20 15:39:54 -0500269 /* If the EHCI debug controller is active, special care must be
270 * taken before and after a host controller reset */
271 if (ehci->debug && !dbgp_reset_prep())
272 ehci->debug = NULL;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 command |= CMD_RESET;
275 dbg_cmd (ehci, "reset", command);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100276 ehci_writel(ehci, command, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
278 ehci->next_statechange = jiffies;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100279 retval = handshake (ehci, &ehci->regs->command,
280 CMD_RESET, 0, 250 * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Alek Du331ac6b2009-07-13 12:41:20 +0800282 if (ehci->has_hostpc) {
283 ehci_writel(ehci, USBMODE_EX_HC | USBMODE_EX_VBPS,
284 (u32 __iomem *)(((u8 *)ehci->regs) + USBMODE_EX));
285 ehci_writel(ehci, TXFIFO_DEFAULT,
286 (u32 __iomem *)(((u8 *)ehci->regs) + TXFILLTUNING));
287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (retval)
289 return retval;
290
291 if (ehci_is_TDI(ehci))
292 tdi_reset (ehci);
293
Jason Wessel8d053c72009-08-20 15:39:54 -0500294 if (ehci->debug)
295 dbgp_external_startup();
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return retval;
298}
299
300/* idle the controller (from running) */
301static void ehci_quiesce (struct ehci_hcd *ehci)
302{
303 u32 temp;
304
305#ifdef DEBUG
306 if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state))
307 BUG ();
308#endif
309
310 /* wait for any schedule enables/disables to take effect */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100311 temp = ehci_readl(ehci, &ehci->regs->command) << 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 temp &= STS_ASS | STS_PSS;
Karsten Wiesec765d4c2008-02-16 13:44:42 -0800313 if (handshake_on_error_set_halt(ehci, &ehci->regs->status,
314 STS_ASS | STS_PSS, temp, 16 * 125))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 /* then disable anything that's still active */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100318 temp = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100320 ehci_writel(ehci, temp, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* hardware can take 16 microframes to turn off ... */
Karsten Wiesec765d4c2008-02-16 13:44:42 -0800323 handshake_on_error_set_halt(ehci, &ehci->regs->status,
324 STS_ASS | STS_PSS, 0, 16 * 125);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/*-------------------------------------------------------------------------*/
328
Alan Stern07d29b62007-12-11 16:05:30 -0500329static void end_unlink_async(struct ehci_hcd *ehci);
David Howells7d12e782006-10-05 14:55:46 +0100330static void ehci_work(struct ehci_hcd *ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332#include "ehci-hub.c"
Alek Du48f24972010-06-04 15:47:55 +0800333#include "ehci-lpm.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#include "ehci-mem.c"
335#include "ehci-q.c"
336#include "ehci-sched.c"
Kirill Smelkov4c670452011-07-03 20:36:56 +0400337#include "ehci-sysfs.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339/*-------------------------------------------------------------------------*/
340
Alan Stern07d29b62007-12-11 16:05:30 -0500341static void ehci_iaa_watchdog(unsigned long param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
344 unsigned long flags;
345
346 spin_lock_irqsave (&ehci->lock, flags);
347
David Brownelle82cc122008-03-07 13:49:42 -0800348 /* Lost IAA irqs wedge things badly; seen first with a vt8235.
349 * So we need this watchdog, but must protect it against both
350 * (a) SMP races against real IAA firing and retriggering, and
351 * (b) clean HC shutdown, when IAA watchdog was pending.
352 */
353 if (ehci->reclaim
354 && !timer_pending(&ehci->iaa_watchdog)
355 && HC_IS_RUNNING(ehci_to_hcd(ehci)->state)) {
356 u32 cmd, status;
Alan Stern07d29b62007-12-11 16:05:30 -0500357
David Brownelle82cc122008-03-07 13:49:42 -0800358 /* If we get here, IAA is *REALLY* late. It's barely
359 * conceivable that the system is so busy that CMD_IAAD
360 * is still legitimately set, so let's be sure it's
361 * clear before we read STS_IAA. (The HC should clear
362 * CMD_IAAD when it sets STS_IAA.)
363 */
364 cmd = ehci_readl(ehci, &ehci->regs->command);
365 if (cmd & CMD_IAAD)
366 ehci_writel(ehci, cmd & ~CMD_IAAD,
367 &ehci->regs->command);
368
369 /* If IAA is set here it either legitimately triggered
370 * before we cleared IAAD above (but _way_ late, so we'll
371 * still count it as lost) ... or a silicon erratum:
372 * - VIA seems to set IAA without triggering the IRQ;
373 * - IAAD potentially cleared without setting IAA.
374 */
375 status = ehci_readl(ehci, &ehci->regs->status);
376 if ((status & STS_IAA) || !(cmd & CMD_IAAD)) {
Greg Kroah-Hartman64f89792006-10-17 13:57:18 -0700377 COUNT (ehci->stats.lost_iaa);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100378 ehci_writel(ehci, STS_IAA, &ehci->regs->status);
Greg Kroah-Hartman64f89792006-10-17 13:57:18 -0700379 }
David Brownelle82cc122008-03-07 13:49:42 -0800380
381 ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n",
382 status, cmd);
Alan Stern07d29b62007-12-11 16:05:30 -0500383 end_unlink_async(ehci);
Greg Kroah-Hartman64f89792006-10-17 13:57:18 -0700384 }
385
Alan Stern07d29b62007-12-11 16:05:30 -0500386 spin_unlock_irqrestore(&ehci->lock, flags);
387}
388
389static void ehci_watchdog(unsigned long param)
390{
391 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
392 unsigned long flags;
393
394 spin_lock_irqsave(&ehci->lock, flags);
395
396 /* stop async processing after it's idled a bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
David Brownell26f953f2006-09-18 17:03:16 -0700398 start_unlink_async (ehci, ehci->async);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /* ehci could run by timer, without IRQs ... */
David Howells7d12e782006-10-05 14:55:46 +0100401 ehci_work (ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 spin_unlock_irqrestore (&ehci->lock, flags);
404}
405
Alan Stern89037952007-02-13 14:55:27 -0500406/* On some systems, leaving remote wakeup enabled prevents system shutdown.
407 * The firmware seems to think that powering off is a wakeup event!
408 * This routine turns off remote wakeup and everything else, on all ports.
409 */
410static void ehci_turn_off_all_ports(struct ehci_hcd *ehci)
411{
412 int port = HCS_N_PORTS(ehci->hcs_params);
413
414 while (port--)
415 ehci_writel(ehci, PORT_RWC_BITS,
416 &ehci->regs->port_status[port]);
417}
418
Sarah Sharp21da84a2008-04-08 14:30:18 -0700419/*
420 * Halt HC, turn off all ports, and let the BIOS use the companion controllers.
421 * Should be called with ehci->lock held.
David Brownell72f30b62005-09-27 10:19:39 -0700422 */
Sarah Sharp21da84a2008-04-08 14:30:18 -0700423static void ehci_silence_controller(struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Sarah Sharp21da84a2008-04-08 14:30:18 -0700425 ehci_halt(ehci);
Alan Stern89037952007-02-13 14:55:27 -0500426 ehci_turn_off_all_ports(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* make BIOS/etc use companion controller during reboot */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100429 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
Alan Stern89037952007-02-13 14:55:27 -0500430
431 /* unblock posted writes */
432 ehci_readl(ehci, &ehci->regs->configured_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Sarah Sharp21da84a2008-04-08 14:30:18 -0700435/* ehci_shutdown kick in for silicon on any bus (not just pci, etc).
436 * This forcibly disables dma and IRQs, helping kexec and other cases
437 * where the next system software may expect clean state.
438 */
439static void ehci_shutdown(struct usb_hcd *hcd)
440{
441 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
442
443 del_timer_sync(&ehci->watchdog);
444 del_timer_sync(&ehci->iaa_watchdog);
445
446 spin_lock_irq(&ehci->lock);
447 ehci_silence_controller(ehci);
448 spin_unlock_irq(&ehci->lock);
449}
450
David Brownell56c1e262005-04-09 09:00:29 -0700451static void ehci_port_power (struct ehci_hcd *ehci, int is_on)
452{
453 unsigned port;
454
455 if (!HCS_PPC (ehci->hcs_params))
456 return;
457
458 ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down");
459 for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; )
460 (void) ehci_hub_control(ehci_to_hcd(ehci),
461 is_on ? SetPortFeature : ClearPortFeature,
462 USB_PORT_FEAT_POWER,
463 port--, NULL, 0);
Alan Stern383975d2007-05-04 11:52:40 -0400464 /* Flush those writes */
465 ehci_readl(ehci, &ehci->regs->command);
David Brownell56c1e262005-04-09 09:00:29 -0700466 msleep(20);
467}
468
Matt Porter7ff71d62005-09-22 22:31:15 -0700469/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Matt Porter7ff71d62005-09-22 22:31:15 -0700471/*
472 * ehci_work is called from some interrupts, timers, and so on.
473 * it calls driver completion functions, after dropping ehci->lock.
474 */
David Howells7d12e782006-10-05 14:55:46 +0100475static void ehci_work (struct ehci_hcd *ehci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Matt Porter7ff71d62005-09-22 22:31:15 -0700477 timer_action_done (ehci, TIMER_IO_WATCHDOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Matt Porter7ff71d62005-09-22 22:31:15 -0700479 /* another CPU may drop ehci->lock during a schedule scan while
480 * it reports urb completions. this flag guards against bogus
481 * attempts at re-entrant schedule scanning.
482 */
483 if (ehci->scanning)
484 return;
485 ehci->scanning = 1;
David Howells7d12e782006-10-05 14:55:46 +0100486 scan_async (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700487 if (ehci->next_uframe != -1)
David Howells7d12e782006-10-05 14:55:46 +0100488 scan_periodic (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700489 ehci->scanning = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Matt Porter7ff71d62005-09-22 22:31:15 -0700491 /* the IO watchdog guards against hardware or driver bugs that
492 * misplace IRQs, and should let us run completely without IRQs.
493 * such lossage has been observed on both VT6202 and VT8235.
494 */
495 if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state) &&
496 (ehci->async->qh_next.ptr != NULL ||
497 ehci->periodic_sched != 0))
498 timer_action (ehci, TIMER_IO_WATCHDOG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Sarah Sharp21da84a2008-04-08 14:30:18 -0700501/*
502 * Called when the ehci_hcd module is removed.
503 */
Matt Porter7ff71d62005-09-22 22:31:15 -0700504static void ehci_stop (struct usb_hcd *hcd)
505{
506 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
507
508 ehci_dbg (ehci, "stop\n");
509
Matt Porter7ff71d62005-09-22 22:31:15 -0700510 /* no more interrupts ... */
511 del_timer_sync (&ehci->watchdog);
Alan Stern07d29b62007-12-11 16:05:30 -0500512 del_timer_sync(&ehci->iaa_watchdog);
Matt Porter7ff71d62005-09-22 22:31:15 -0700513
514 spin_lock_irq(&ehci->lock);
515 if (HC_IS_RUNNING (hcd->state))
516 ehci_quiesce (ehci);
517
Sarah Sharp21da84a2008-04-08 14:30:18 -0700518 ehci_silence_controller(ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700519 ehci_reset (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700520 spin_unlock_irq(&ehci->lock);
521
Kirill Smelkov4c670452011-07-03 20:36:56 +0400522 remove_sysfs_files(ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700523 remove_debug_files (ehci);
524
525 /* root hub is shut down separately (first, when possible) */
526 spin_lock_irq (&ehci->lock);
527 if (ehci->async)
David Howells7d12e782006-10-05 14:55:46 +0100528 ehci_work (ehci);
Matt Porter7ff71d62005-09-22 22:31:15 -0700529 spin_unlock_irq (&ehci->lock);
530 ehci_mem_cleanup (ehci);
531
Andiry Xuad935622011-03-01 14:57:05 +0800532 if (ehci->amd_pll_fix == 1)
533 usb_amd_dev_put();
Alex He05570292010-12-07 10:10:08 +0800534
Matt Porter7ff71d62005-09-22 22:31:15 -0700535#ifdef EHCI_STATS
536 ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n",
537 ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim,
538 ehci->stats.lost_iaa);
539 ehci_dbg (ehci, "complete %ld unlink %ld\n",
540 ehci->stats.complete, ehci->stats.unlink);
541#endif
542
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100543 dbg_status (ehci, "ehci_stop completed",
544 ehci_readl(ehci, &ehci->regs->status));
Matt Porter7ff71d62005-09-22 22:31:15 -0700545}
546
David Brownell18807522005-11-23 15:45:37 -0800547/* one-time init, only for memory state */
548static int ehci_init(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
David Brownell18807522005-11-23 15:45:37 -0800550 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 u32 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int retval;
553 u32 hcc_params;
Alek Du3807e262009-07-14 07:23:29 +0800554 struct ehci_qh_hw *hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
David Brownell18807522005-11-23 15:45:37 -0800556 spin_lock_init(&ehci->lock);
557
Alek Du403dbd32009-07-13 17:30:41 +0800558 /*
559 * keep io watchdog by default, those good HCDs could turn off it later
560 */
561 ehci->need_io_watchdog = 1;
David Brownell18807522005-11-23 15:45:37 -0800562 init_timer(&ehci->watchdog);
563 ehci->watchdog.function = ehci_watchdog;
564 ehci->watchdog.data = (unsigned long) ehci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Alan Stern07d29b62007-12-11 16:05:30 -0500566 init_timer(&ehci->iaa_watchdog);
567 ehci->iaa_watchdog.function = ehci_iaa_watchdog;
568 ehci->iaa_watchdog.data = (unsigned long) ehci;
569
Alan Sternf75593c2011-01-06 10:17:09 -0500570 hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
Kirill Smelkovcc62a7e2011-07-03 20:36:57 +0400573 * by default set standard 80% (== 100 usec/uframe) max periodic
574 * bandwidth as required by USB 2.0
575 */
576 ehci->uframe_periodic_max = 100;
577
578 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * hw default: 1K periodic list heads, one per frame.
580 * periodic_size can shrink by USBCMD update if hcc_params allows.
581 */
582 ehci->periodic_size = DEFAULT_I_TDPS;
Karsten Wiese9aa09d22009-02-08 16:07:58 -0800583 INIT_LIST_HEAD(&ehci->cached_itd_list);
Alan Stern0e5f2312010-04-08 16:56:37 -0400584 INIT_LIST_HEAD(&ehci->cached_sitd_list);
Alan Sternf75593c2011-01-06 10:17:09 -0500585
586 if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
587 /* periodic schedule size can be smaller than default */
588 switch (EHCI_TUNE_FLS) {
589 case 0: ehci->periodic_size = 1024; break;
590 case 1: ehci->periodic_size = 512; break;
591 case 2: ehci->periodic_size = 256; break;
592 default: BUG();
593 }
594 }
David Brownell18807522005-11-23 15:45:37 -0800595 if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return retval;
597
598 /* controllers may cache some of the periodic schedule ... */
David Brownell53bd6a62006-08-30 14:50:06 -0700599 if (HCC_ISOC_CACHE(hcc_params)) // full frame cache
Sarah Sharpdccd5742009-10-27 10:55:05 -0700600 ehci->i_thresh = 2 + 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 else // N microframes cached
David Brownell18807522005-11-23 15:45:37 -0800602 ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 ehci->reclaim = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ehci->next_uframe = -1;
Karsten Wiese9aa09d22009-02-08 16:07:58 -0800606 ehci->clock_frame = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * dedicate a qh for the async ring head, since we couldn't unlink
610 * a 'real' qh without stopping the async schedule [4.8]. use it
611 * as the 'reclamation list head' too.
612 * its dummy is used in hw_alt_next of many tds, to prevent the qh
613 * from automatically advancing to the next td after short reads.
614 */
David Brownell18807522005-11-23 15:45:37 -0800615 ehci->async->qh_next.qh = NULL;
Alek Du3807e262009-07-14 07:23:29 +0800616 hw = ehci->async->hw;
617 hw->hw_next = QH_NEXT(ehci, ehci->async->qh_dma);
618 hw->hw_info1 = cpu_to_hc32(ehci, QH_HEAD);
619 hw->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT);
620 hw->hw_qtd_next = EHCI_LIST_END(ehci);
David Brownell18807522005-11-23 15:45:37 -0800621 ehci->async->qh_state = QH_STATE_LINKED;
Alek Du3807e262009-07-14 07:23:29 +0800622 hw->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 /* clear interrupt enables, set irq latency */
625 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
626 log2_irq_thresh = 0;
627 temp = 1 << (16 + log2_irq_thresh);
Alek Du5a9cdf32010-06-04 15:47:56 +0800628 if (HCC_PER_PORT_CHANGE_EVENT(hcc_params)) {
629 ehci->has_ppcd = 1;
630 ehci_dbg(ehci, "enable per-port change event\n");
631 temp |= CMD_PPCEE;
632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (HCC_CANPARK(hcc_params)) {
634 /* HW default park == 3, on hardware that supports it (like
635 * NVidia and ALI silicon), maximizes throughput on the async
636 * schedule by avoiding QH fetches between transfers.
637 *
638 * With fast usb storage devices and NForce2, "park" seems to
639 * make problems: throughput reduction (!), data errors...
640 */
641 if (park) {
David Brownell18807522005-11-23 15:45:37 -0800642 park = min(park, (unsigned) 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 temp |= CMD_PARK;
644 temp |= park << 8;
645 }
David Brownell18807522005-11-23 15:45:37 -0800646 ehci_dbg(ehci, "park %d\n", park);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
David Brownell18807522005-11-23 15:45:37 -0800648 if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* periodic schedule size can be smaller than default */
650 temp &= ~(3 << 2);
651 temp |= (EHCI_TUNE_FLS << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Alek Du48f24972010-06-04 15:47:55 +0800653 if (HCC_LPM(hcc_params)) {
654 /* support link power management EHCI 1.1 addendum */
655 ehci_dbg(ehci, "support lpm\n");
656 ehci->has_lpm = 1;
657 if (hird > 0xf) {
658 ehci_dbg(ehci, "hird %d invalid, use default 0",
659 hird);
660 hird = 0;
661 }
662 temp |= hird << 24;
663 }
David Brownell18807522005-11-23 15:45:37 -0800664 ehci->command = temp;
665
Alan Stern40f8db82009-11-06 12:29:40 -0500666 /* Accept arbitrarily long scatter-gather lists */
Andrea Righi4307a282010-06-28 16:56:45 +0200667 if (!(hcd->driver->flags & HCD_LOCAL_MEM))
668 hcd->self.sg_tablesize = ~0;
David Brownell18807522005-11-23 15:45:37 -0800669 return 0;
670}
671
672/* start HC running; it's halted, ehci_init() has been run (once) */
673static int ehci_run (struct usb_hcd *hcd)
674{
675 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
676 int retval;
677 u32 temp;
678 u32 hcc_params;
679
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200680 hcd->uses_new_polling = 1;
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200681
David Brownell18807522005-11-23 15:45:37 -0800682 /* EHCI spec section 4.1 */
Matthieu CASTETbcf40812011-02-15 18:40:28 +0100683 /*
684 * TDI driver does the ehci_reset in their reset callback.
685 * Don't reset here, because configuration settings will
686 * vanish.
687 */
688 if (!ehci_is_TDI(ehci) && (retval = ehci_reset(ehci)) != 0) {
David Brownell18807522005-11-23 15:45:37 -0800689 ehci_mem_cleanup(ehci);
690 return retval;
691 }
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100692 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
693 ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next);
David Brownell18807522005-11-23 15:45:37 -0800694
695 /*
696 * hcc_params controls whether ehci->regs->segment must (!!!)
697 * be used; it constrains QH/ITD/SITD and QTD locations.
698 * pci_pool consistent memory always uses segment zero.
699 * streaming mappings for I/O buffers, like pci_map_single(),
700 * can return segments above 4GB, if the device allows.
701 *
702 * NOTE: the dma mask is visible through dma_supported(), so
703 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
704 * Scsi_Host.highmem_io, and so forth. It's readonly to all
705 * host side drivers though.
706 */
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100707 hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
David Brownell18807522005-11-23 15:45:37 -0800708 if (HCC_64BIT_ADDR(hcc_params)) {
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100709 ehci_writel(ehci, 0, &ehci->regs->segment);
David Brownell18807522005-11-23 15:45:37 -0800710#if 0
711// this is deeply broken on almost all architectures
Yang Hongyang6a355282009-04-06 19:01:13 -0700712 if (!dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64)))
David Brownell18807522005-11-23 15:45:37 -0800713 ehci_info(ehci, "enabled 64bit DMA\n");
714#endif
715 }
716
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 // Philips, Intel, and maybe others need CMD_RUN before the
719 // root hub will detect new devices (why?); NEC doesn't
David Brownell18807522005-11-23 15:45:37 -0800720 ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
721 ehci->command |= CMD_RUN;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100722 ehci_writel(ehci, ehci->command, &ehci->regs->command);
David Brownell18807522005-11-23 15:45:37 -0800723 dbg_cmd (ehci, "init", ehci->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
726 * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
727 * are explicitly handed to companion controller(s), so no TT is
728 * involved with the root hub. (Except where one is integrated,
729 * and there's no companion controller unless maybe for USB OTG.)
Alan Stern32fe0192007-10-10 16:27:07 -0400730 *
731 * Turning on the CF flag will transfer ownership of all ports
732 * from the companions to the EHCI controller. If any of the
733 * companions are in the middle of a port reset at the time, it
734 * could cause trouble. Write-locking ehci_cf_port_reset_rwsem
David Brownell1cb52652007-11-13 16:22:30 -0800735 * guarantees that no resets are in progress. After we set CF,
736 * a short delay lets the hardware catch up; new resets shouldn't
737 * be started before the port switching actions could complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
Alan Stern32fe0192007-10-10 16:27:07 -0400739 down_write(&ehci_cf_port_reset_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 hcd->state = HC_STATE_RUNNING;
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100741 ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
742 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
David Brownell1cb52652007-11-13 16:22:30 -0800743 msleep(5);
Alan Stern32fe0192007-10-10 16:27:07 -0400744 up_write(&ehci_cf_port_reset_rwsem);
Oliver Neukumee4ecb82009-11-27 15:17:59 +0100745 ehci->last_periodic_enable = ktime_get_real();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Jan Anderssonc4301312011-05-03 20:11:57 +0200747 temp = HC_VERSION(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 ehci_info (ehci,
Alan Stern2b70f072008-10-02 11:47:15 -0400749 "USB %x.%x started, EHCI %x.%02x%s\n",
Matt Porter7ff71d62005-09-22 22:31:15 -0700750 ((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f),
Alan Stern2b70f072008-10-02 11:47:15 -0400751 temp >> 8, temp & 0xff,
David Brownell93f1a472006-11-16 23:34:58 -0800752 ignore_oc ? ", overcurrent ignored" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100754 ehci_writel(ehci, INTR_MASK,
755 &ehci->regs->intr_enable); /* Turn On Interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
David Brownell18807522005-11-23 15:45:37 -0800757 /* GRR this is run-once init(), being done every time the HC starts.
758 * So long as they're part of class devices, we can't do it init()
759 * since the class device isn't created that early.
760 */
761 create_debug_files(ehci);
Kirill Smelkov4c670452011-07-03 20:36:56 +0400762 create_sysfs_files(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 return 0;
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/*-------------------------------------------------------------------------*/
768
David Howells7d12e782006-10-05 14:55:46 +0100769static irqreturn_t ehci_irq (struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
Alan Stern67b2e022008-11-12 17:04:53 -0500772 u32 status, masked_status, pcd_status = 0, cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int bh;
774
775 spin_lock (&ehci->lock);
776
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100777 status = ehci_readl(ehci, &ehci->regs->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 /* e.g. cardbus physical eject */
780 if (status == ~(u32) 0) {
781 ehci_dbg (ehci, "device removed\n");
782 goto dead;
783 }
784
Alan Stern69fff592011-05-17 17:27:12 -0400785 /* Shared IRQ? */
Alan Stern67b2e022008-11-12 17:04:53 -0500786 masked_status = status & INTR_MASK;
Alan Stern69fff592011-05-17 17:27:12 -0400787 if (!masked_status || unlikely(hcd->state == HC_STATE_HALT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 spin_unlock(&ehci->lock);
789 return IRQ_NONE;
790 }
791
792 /* clear (just) interrupts */
Alan Stern67b2e022008-11-12 17:04:53 -0500793 ehci_writel(ehci, masked_status, &ehci->regs->status);
David Brownelle82cc122008-03-07 13:49:42 -0800794 cmd = ehci_readl(ehci, &ehci->regs->command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 bh = 0;
796
David Brownell9776afc2008-02-01 11:42:05 -0800797#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /* unrequested/ignored: Frame List Rollover */
799 dbg_status (ehci, "irq", status);
800#endif
801
802 /* INT, ERR, and IAA interrupt rates can be throttled */
803
804 /* normal [4.15.1.2] or error [4.15.1.1] completion */
805 if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
806 if (likely ((status & STS_ERR) == 0))
807 COUNT (ehci->stats.normal);
808 else
809 COUNT (ehci->stats.error);
810 bh = 1;
811 }
812
813 /* complete the unlinking of some qh [4.15.2.3] */
814 if (status & STS_IAA) {
David Brownelle82cc122008-03-07 13:49:42 -0800815 /* guard against (alleged) silicon errata */
816 if (cmd & CMD_IAAD) {
817 ehci_writel(ehci, cmd & ~CMD_IAAD,
818 &ehci->regs->command);
819 ehci_dbg(ehci, "IAA with IAAD still set?\n");
820 }
821 if (ehci->reclaim) {
822 COUNT(ehci->stats.reclaim);
823 end_unlink_async(ehci);
824 } else
825 ehci_dbg(ehci, "IAA with nothing to reclaim?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
828 /* remote wakeup [4.3.1] */
David Brownelld97cc2f2005-12-22 17:05:18 -0800829 if (status & STS_PCD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 unsigned i = HCS_N_PORTS (ehci->hcs_params);
Alek Du5a9cdf32010-06-04 15:47:56 +0800831 u32 ppcd = 0;
David Brownelld1b18422008-03-05 23:37:52 -0800832
833 /* kick root hub later */
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200834 pcd_status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 /* resume root hub? */
Alan Sterneafe5b92008-10-06 11:25:53 -0400837 if (!(cmd & CMD_RUN))
Alan Stern8c033562006-11-09 14:42:16 -0500838 usb_hcd_resume_root_hub(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Alek Du5a9cdf32010-06-04 15:47:56 +0800840 /* get per-port change detect bits */
841 if (ehci->has_ppcd)
842 ppcd = status >> 16;
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 while (i--) {
Alek Du5a9cdf32010-06-04 15:47:56 +0800845 int pstatus;
846
847 /* leverage per-port change bits feature */
848 if (ehci->has_ppcd && !(ppcd & (1 << i)))
849 continue;
850 pstatus = ehci_readl(ehci,
851 &ehci->regs->port_status[i]);
David Brownellb972b682006-06-30 02:34:42 -0700852
853 if (pstatus & PORT_OWNER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 continue;
Alan Sterneafe5b92008-10-06 11:25:53 -0400855 if (!(test_bit(i, &ehci->suspended_ports) &&
856 ((pstatus & PORT_RESUME) ||
857 !(pstatus & PORT_SUSPEND)) &&
858 (pstatus & PORT_PE) &&
859 ehci->reset_done[i] == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 continue;
861
862 /* start 20 msec resume signaling from this port,
863 * and make khubd collect PORT_STAT_C_SUSPEND to
Alan Stern49d0f072010-01-08 11:18:38 -0500864 * stop that signaling. Use 5 ms extra for safety,
865 * like usb_port_resume() does.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
Alan Stern49d0f072010-01-08 11:18:38 -0500867 ehci->reset_done[i] = jiffies + msecs_to_jiffies(25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
Alan Stern61e8b852007-04-09 11:52:31 -0400869 mod_timer(&hcd->rh_timer, ehci->reset_done[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 }
872
873 /* PCI errors [4.15.2.4] */
874 if (unlikely ((status & STS_FATAL) != 0)) {
Alan Stern67b2e022008-11-12 17:04:53 -0500875 ehci_err(ehci, "fatal error\n");
Alan Sterneafe5b92008-10-06 11:25:53 -0400876 dbg_cmd(ehci, "fatal", cmd);
877 dbg_status(ehci, "fatal", status);
Alan Stern67b2e022008-11-12 17:04:53 -0500878 ehci_halt(ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879dead:
Alan Stern67b2e022008-11-12 17:04:53 -0500880 ehci_reset(ehci);
881 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
Alan Stern69fff592011-05-17 17:27:12 -0400882 usb_hc_died(hcd);
Alan Stern67b2e022008-11-12 17:04:53 -0500883 /* generic layer kills/unlinks all urbs, then
884 * uses ehci_stop to clean up the rest
885 */
886 bh = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888
889 if (bh)
David Howells7d12e782006-10-05 14:55:46 +0100890 ehci_work (ehci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 spin_unlock (&ehci->lock);
David Brownelld1b18422008-03-05 23:37:52 -0800892 if (pcd_status)
Marcelo Tosatti1d619f12007-01-21 19:45:59 -0200893 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return IRQ_HANDLED;
895}
896
897/*-------------------------------------------------------------------------*/
898
899/*
900 * non-error returns are a promise to giveback() the urb later
901 * we drop ownership so next owner (or urb unlink) can get it
902 *
903 * urb + dev is in hcd.self.controller.urb_list
904 * we're queueing TDs onto software and hardware lists
905 *
906 * hcd-specific init for hcpriv hasn't been done yet
907 *
908 * NOTE: control, bulk, and interrupt share the same code to append TDs
909 * to a (possibly active) QH, and the same QH scanning code.
910 */
911static int ehci_urb_enqueue (
912 struct usb_hcd *hcd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -0400914 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915) {
916 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
917 struct list_head qtd_list;
918
919 INIT_LIST_HEAD (&qtd_list);
920
921 switch (usb_pipetype (urb->pipe)) {
David Brownell25b70a82008-03-04 15:11:07 -0800922 case PIPE_CONTROL:
923 /* qh_completions() code doesn't handle all the fault cases
924 * in multi-TD control transfers. Even 1KB is rare anyway.
925 */
926 if (urb->transfer_buffer_length > (16 * 1024))
927 return -EMSGSIZE;
928 /* FALLTHROUGH */
929 /* case PIPE_BULK: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 default:
931 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
932 return -ENOMEM;
Alan Sterne9df41c2007-08-08 11:48:02 -0400933 return submit_async(ehci, urb, &qtd_list, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 case PIPE_INTERRUPT:
936 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
937 return -ENOMEM;
Alan Sterne9df41c2007-08-08 11:48:02 -0400938 return intr_submit(ehci, urb, &qtd_list, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 case PIPE_ISOCHRONOUS:
941 if (urb->dev->speed == USB_SPEED_HIGH)
942 return itd_submit (ehci, urb, mem_flags);
943 else
944 return sitd_submit (ehci, urb, mem_flags);
945 }
946}
947
948static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh)
949{
Alan Stern07d29b62007-12-11 16:05:30 -0500950 /* failfast */
David Brownelle82cc122008-03-07 13:49:42 -0800951 if (!HC_IS_RUNNING(ehci_to_hcd(ehci)->state) && ehci->reclaim)
Alan Stern07d29b62007-12-11 16:05:30 -0500952 end_unlink_async(ehci);
953
Alan Stern3a444942009-08-19 12:22:06 -0400954 /* If the QH isn't linked then there's nothing we can do
955 * unless we were called during a giveback, in which case
956 * qh_completions() has to deal with it.
957 */
958 if (qh->qh_state != QH_STATE_LINKED) {
959 if (qh->qh_state == QH_STATE_COMPLETING)
960 qh->needs_rescan = 1;
961 return;
962 }
Alan Stern07d29b62007-12-11 16:05:30 -0500963
964 /* defer till later if busy */
Alan Stern3a444942009-08-19 12:22:06 -0400965 if (ehci->reclaim) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct ehci_qh *last;
967
968 for (last = ehci->reclaim;
969 last->reclaim;
970 last = last->reclaim)
971 continue;
972 qh->qh_state = QH_STATE_UNLINK_WAIT;
973 last->reclaim = qh;
974
Alan Stern07d29b62007-12-11 16:05:30 -0500975 /* start IAA cycle */
976 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 start_unlink_async (ehci, qh);
978}
979
980/* remove from hardware lists
981 * completions normally happen asynchronously
982 */
983
Alan Sterne9df41c2007-08-08 11:48:02 -0400984static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
986 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
987 struct ehci_qh *qh;
988 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -0400989 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 spin_lock_irqsave (&ehci->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400992 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
993 if (rc)
994 goto done;
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 switch (usb_pipetype (urb->pipe)) {
997 // case PIPE_CONTROL:
998 // case PIPE_BULK:
999 default:
1000 qh = (struct ehci_qh *) urb->hcpriv;
1001 if (!qh)
1002 break;
Alan Stern07d29b62007-12-11 16:05:30 -05001003 switch (qh->qh_state) {
1004 case QH_STATE_LINKED:
1005 case QH_STATE_COMPLETING:
1006 unlink_async(ehci, qh);
1007 break;
1008 case QH_STATE_UNLINK:
1009 case QH_STATE_UNLINK_WAIT:
1010 /* already started */
1011 break;
1012 case QH_STATE_IDLE:
Alan Stern7a0f0d92009-07-31 10:40:22 -04001013 /* QH might be waiting for a Clear-TT-Buffer */
1014 qh_completions(ehci, qh);
Alan Stern07d29b62007-12-11 16:05:30 -05001015 break;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
1018
1019 case PIPE_INTERRUPT:
1020 qh = (struct ehci_qh *) urb->hcpriv;
1021 if (!qh)
1022 break;
1023 switch (qh->qh_state) {
1024 case QH_STATE_LINKED:
Alan Sterna448c9d2009-08-19 12:22:44 -04001025 case QH_STATE_COMPLETING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 intr_deschedule (ehci, qh);
Alan Sterna448c9d2009-08-19 12:22:44 -04001027 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 case QH_STATE_IDLE:
David Howells7d12e782006-10-05 14:55:46 +01001029 qh_completions (ehci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 default:
1032 ehci_dbg (ehci, "bogus qh %p state %d\n",
1033 qh, qh->qh_state);
1034 goto done;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 break;
1037
1038 case PIPE_ISOCHRONOUS:
1039 // itd or sitd ...
1040
1041 // wait till next completion, do it then.
1042 // completion irqs can wait up to 1024 msec,
1043 break;
1044 }
1045done:
1046 spin_unlock_irqrestore (&ehci->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001047 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
1050/*-------------------------------------------------------------------------*/
1051
1052// bulk qh holds the data toggle
1053
1054static void
1055ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
1056{
1057 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
1058 unsigned long flags;
1059 struct ehci_qh *qh, *tmp;
1060
1061 /* ASSERT: any requests/urbs are being unlinked */
1062 /* ASSERT: nobody can be submitting urbs for this any more */
1063
1064rescan:
1065 spin_lock_irqsave (&ehci->lock, flags);
1066 qh = ep->hcpriv;
1067 if (!qh)
1068 goto done;
1069
1070 /* endpoints can be iso streams. for now, we don't
1071 * accelerate iso completions ... so spin a while.
1072 */
Clemens Ladisch1082f572010-03-01 17:18:56 +01001073 if (qh->hw == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 ehci_vdbg (ehci, "iso delay\n");
1075 goto idle_timeout;
1076 }
1077
1078 if (!HC_IS_RUNNING (hcd->state))
1079 qh->qh_state = QH_STATE_IDLE;
1080 switch (qh->qh_state) {
1081 case QH_STATE_LINKED:
Alan Stern3a444942009-08-19 12:22:06 -04001082 case QH_STATE_COMPLETING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 for (tmp = ehci->async->qh_next.qh;
1084 tmp && tmp != qh;
1085 tmp = tmp->qh_next.qh)
1086 continue;
Alan Stern02e2c512010-11-16 10:57:37 -05001087 /* periodic qh self-unlinks on empty, and a COMPLETING qh
1088 * may already be unlinked.
1089 */
1090 if (tmp)
1091 unlink_async(ehci, qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 /* FALL THROUGH */
1093 case QH_STATE_UNLINK: /* wait for hw to finish? */
Alan Stern07d29b62007-12-11 16:05:30 -05001094 case QH_STATE_UNLINK_WAIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095idle_timeout:
1096 spin_unlock_irqrestore (&ehci->lock, flags);
Nishanth Aravamudan22c43862005-08-15 11:30:11 -07001097 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 goto rescan;
1099 case QH_STATE_IDLE: /* fully unlinked */
Alan Stern914b7012009-06-29 10:47:30 -04001100 if (qh->clearing_tt)
1101 goto idle_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (list_empty (&qh->qtd_list)) {
1103 qh_put (qh);
1104 break;
1105 }
1106 /* else FALL THROUGH */
1107 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* caller was supposed to have unlinked any requests;
1109 * that's not our job. just leak this memory.
1110 */
1111 ehci_err (ehci, "qh %p (#%02x) state %d%s\n",
1112 qh, ep->desc.bEndpointAddress, qh->qh_state,
1113 list_empty (&qh->qtd_list) ? "" : "(has tds)");
1114 break;
1115 }
1116 ep->hcpriv = NULL;
1117done:
1118 spin_unlock_irqrestore (&ehci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Alan Sternb18ffd42009-05-27 18:21:56 -04001121static void
1122ehci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep)
1123{
1124 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1125 struct ehci_qh *qh;
1126 int eptype = usb_endpoint_type(&ep->desc);
Alan Sterna455212d2009-06-11 14:56:22 -04001127 int epnum = usb_endpoint_num(&ep->desc);
1128 int is_out = usb_endpoint_dir_out(&ep->desc);
1129 unsigned long flags;
Alan Sternb18ffd42009-05-27 18:21:56 -04001130
1131 if (eptype != USB_ENDPOINT_XFER_BULK && eptype != USB_ENDPOINT_XFER_INT)
1132 return;
1133
Alan Sterna455212d2009-06-11 14:56:22 -04001134 spin_lock_irqsave(&ehci->lock, flags);
Alan Sternb18ffd42009-05-27 18:21:56 -04001135 qh = ep->hcpriv;
1136
1137 /* For Bulk and Interrupt endpoints we maintain the toggle state
1138 * in the hardware; the toggle bits in udev aren't used at all.
1139 * When an endpoint is reset by usb_clear_halt() we must reset
1140 * the toggle bit in the QH.
1141 */
1142 if (qh) {
Alan Sterna455212d2009-06-11 14:56:22 -04001143 usb_settoggle(qh->dev, epnum, is_out, 0);
Alan Sternb18ffd42009-05-27 18:21:56 -04001144 if (!list_empty(&qh->qtd_list)) {
1145 WARN_ONCE(1, "clear_halt for a busy endpoint\n");
Alan Stern3a444942009-08-19 12:22:06 -04001146 } else if (qh->qh_state == QH_STATE_LINKED ||
1147 qh->qh_state == QH_STATE_COMPLETING) {
Alan Sterna455212d2009-06-11 14:56:22 -04001148
1149 /* The toggle value in the QH can't be updated
1150 * while the QH is active. Unlink it now;
1151 * re-linking will call qh_refresh().
Alan Sternb18ffd42009-05-27 18:21:56 -04001152 */
Alan Sterna448c9d2009-08-19 12:22:44 -04001153 if (eptype == USB_ENDPOINT_XFER_BULK)
Alan Sterna455212d2009-06-11 14:56:22 -04001154 unlink_async(ehci, qh);
Alan Sterna448c9d2009-08-19 12:22:44 -04001155 else
Alan Sterna455212d2009-06-11 14:56:22 -04001156 intr_deschedule(ehci, qh);
Alan Sternb18ffd42009-05-27 18:21:56 -04001157 }
1158 }
Alan Sterna455212d2009-06-11 14:56:22 -04001159 spin_unlock_irqrestore(&ehci->lock, flags);
Alan Sternb18ffd42009-05-27 18:21:56 -04001160}
1161
Matt Porter7ff71d62005-09-22 22:31:15 -07001162static int ehci_get_frame (struct usb_hcd *hcd)
1163{
1164 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +11001165 return (ehci_readl(ehci, &ehci->regs->frame_index) >> 3) %
1166 ehci->periodic_size;
Matt Porter7ff71d62005-09-22 22:31:15 -07001167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169/*-------------------------------------------------------------------------*/
1170
Alan Stern2b70f072008-10-02 11:47:15 -04001171MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172MODULE_AUTHOR (DRIVER_AUTHOR);
1173MODULE_LICENSE ("GPL");
1174
Matt Porter7ff71d62005-09-22 22:31:15 -07001175#ifdef CONFIG_PCI
1176#include "ehci-pci.c"
Kumar Gala01cced22006-04-11 10:07:16 -05001177#define PCI_DRIVER ehci_pci_driver
Matt Porter7ff71d62005-09-22 22:31:15 -07001178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Li Yangba029782007-05-11 17:09:55 +08001180#ifdef CONFIG_USB_EHCI_FSL
Randy Vinson80cb9ae2006-01-20 13:53:38 -08001181#include "ehci-fsl.c"
Kumar Gala01cced22006-04-11 10:07:16 -05001182#define PLATFORM_DRIVER ehci_fsl_driver
Randy Vinson80cb9ae2006-01-20 13:53:38 -08001183#endif
1184
Daniel Mack7e8d5cd2009-10-28 01:14:59 +01001185#ifdef CONFIG_USB_EHCI_MXC
1186#include "ehci-mxc.c"
1187#define PLATFORM_DRIVER ehci_mxc_driver
1188#endif
1189
Yoshihiro Shimoda60b0bf02011-03-01 16:58:37 +09001190#ifdef CONFIG_USB_EHCI_SH
Paul Mundt63c84552010-11-01 17:03:27 -04001191#include "ehci-sh.c"
1192#define PLATFORM_DRIVER ehci_hcd_sh_driver
1193#endif
1194
Ralf Baechledfbaa7d2006-06-03 23:58:55 +01001195#ifdef CONFIG_SOC_AU1200
Jordan Crouse76fa9a22006-01-20 14:06:09 -08001196#include "ehci-au1xxx.c"
Kumar Gala01cced22006-04-11 10:07:16 -05001197#define PLATFORM_DRIVER ehci_hcd_au1xxx_driver
Jordan Crouse76fa9a22006-01-20 14:06:09 -08001198#endif
1199
Keshava Munegowda7f124f42010-11-21 23:23:41 +05301200#ifdef CONFIG_USB_EHCI_HCD_OMAP
Felipe Balbi54ab2b02009-10-14 11:44:14 +03001201#include "ehci-omap.c"
1202#define PLATFORM_DRIVER ehci_hcd_omap_driver
1203#endif
1204
Geoff Levandad75a412007-01-15 20:11:47 -08001205#ifdef CONFIG_PPC_PS3
1206#include "ehci-ps3.c"
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001207#define PS3_SYSTEM_BUS_DRIVER ps3_ehci_driver
Geoff Levandad75a412007-01-15 20:11:47 -08001208#endif
1209
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001210#ifdef CONFIG_USB_EHCI_HCD_PPC_OF
1211#include "ehci-ppc-of.c"
1212#define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver
1213#endif
1214
Julie Zhu08d3c182009-09-21 16:08:19 -06001215#ifdef CONFIG_XPS_USB_HCD_XILINX
1216#include "ehci-xilinx-of.c"
Grant Likely1f23b2d2010-06-02 13:53:17 -06001217#define XILINX_OF_PLATFORM_DRIVER ehci_hcd_xilinx_of_driver
Julie Zhu08d3c182009-09-21 16:08:19 -06001218#endif
1219
Lennert Buytenhek705a7522008-03-27 14:51:40 -04001220#ifdef CONFIG_PLAT_ORION
Tzachi Perelsteine96ffe22007-12-01 11:07:04 -05001221#include "ehci-orion.c"
1222#define PLATFORM_DRIVER ehci_orion_driver
1223#endif
1224
Vladimir Barinov91bc4d32007-12-30 15:21:11 -08001225#ifdef CONFIG_ARCH_IXP4XX
1226#include "ehci-ixp4xx.c"
1227#define PLATFORM_DRIVER ixp4xx_ehci_driver
1228#endif
1229
Wan ZongShun586dfc82009-06-13 09:14:28 +08001230#ifdef CONFIG_USB_W90X900_EHCI
1231#include "ehci-w90x900.c"
1232#define PLATFORM_DRIVER ehci_hcd_w90x900_driver
1233#endif
1234
Nicolas Ferre501c9c02009-07-27 14:47:40 -07001235#ifdef CONFIG_ARCH_AT91
1236#include "ehci-atmel.c"
1237#define PLATFORM_DRIVER ehci_atmel_driver
1238#endif
1239
David Daney1643acc2010-10-08 14:47:52 -07001240#ifdef CONFIG_USB_OCTEON_EHCI
1241#include "ehci-octeon.c"
1242#define PLATFORM_DRIVER ehci_octeon_driver
1243#endif
1244
Mac Lin760efe62010-11-25 23:58:00 +08001245#ifdef CONFIG_USB_CNS3XXX_EHCI
1246#include "ehci-cns3xxx.c"
1247#define PLATFORM_DRIVER cns3xxx_ehci_driver
1248#endif
1249
Alexey Charkovad78aca2010-11-07 19:28:55 +03001250#ifdef CONFIG_ARCH_VT8500
1251#include "ehci-vt8500.c"
1252#define PLATFORM_DRIVER vt8500_ehci_driver
1253#endif
1254
Deepak Sikric8c38de2010-11-10 14:33:18 +05301255#ifdef CONFIG_PLAT_SPEAR
1256#include "ehci-spear.c"
1257#define PLATFORM_DRIVER spear_ehci_hcd_driver
1258#endif
1259
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +05301260#ifdef CONFIG_USB_EHCI_MSM
1261#include "ehci-msm.c"
1262#define PLATFORM_DRIVER ehci_msm_driver
1263#endif
1264
Anoop22ced6872011-02-24 19:26:28 +05301265#ifdef CONFIG_USB_EHCI_HCD_PMC_MSP
1266#include "ehci-pmcmsp.c"
1267#define PLATFORM_DRIVER ehci_hcd_msp_driver
1268#endif
1269
Benoit Goby79ad3b52011-03-09 16:28:56 -08001270#ifdef CONFIG_USB_EHCI_TEGRA
1271#include "ehci-tegra.c"
1272#define PLATFORM_DRIVER tegra_ehci_driver
1273#endif
1274
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +09001275#ifdef CONFIG_USB_EHCI_S5P
1276#include "ehci-s5p.c"
1277#define PLATFORM_DRIVER s5p_ehci_driver
1278#endif
1279
Gabor Juhos502fa842011-04-13 10:54:22 +02001280#ifdef CONFIG_USB_EHCI_ATH79
1281#include "ehci-ath79.c"
1282#define PLATFORM_DRIVER ehci_ath79_driver
1283#endif
1284
Jan Andersson9be03922011-05-03 20:11:58 +02001285#ifdef CONFIG_SPARC_LEON
1286#include "ehci-grlib.c"
1287#define PLATFORM_DRIVER ehci_grlib_driver
1288#endif
1289
Geoff Levandad75a412007-01-15 20:11:47 -08001290#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
Grant Likely1f23b2d2010-06-02 13:53:17 -06001291 !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \
1292 !defined(XILINX_OF_PLATFORM_DRIVER)
Matt Porter7ff71d62005-09-22 22:31:15 -07001293#error "missing bus glue for ehci-hcd"
1294#endif
Kumar Gala01cced22006-04-11 10:07:16 -05001295
1296static int __init ehci_hcd_init(void)
1297{
1298 int retval = 0;
1299
Alan Stern2b70f072008-10-02 11:47:15 -04001300 if (usb_disabled())
1301 return -ENODEV;
1302
1303 printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
Alan Stern9beeee62008-10-02 11:48:13 -04001304 set_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
1305 if (test_bit(USB_UHCI_LOADED, &usb_hcds_loaded) ||
1306 test_bit(USB_OHCI_LOADED, &usb_hcds_loaded))
1307 printk(KERN_WARNING "Warning! ehci_hcd should always be loaded"
1308 " before uhci_hcd and ohci_hcd, not after\n");
1309
Kumar Gala01cced22006-04-11 10:07:16 -05001310 pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
1311 hcd_name,
1312 sizeof(struct ehci_qh), sizeof(struct ehci_qtd),
1313 sizeof(struct ehci_itd), sizeof(struct ehci_sitd));
1314
Tony Jones694cc202007-09-11 14:07:31 -07001315#ifdef DEBUG
Greg Kroah-Hartman08f4e582009-04-24 15:13:18 -07001316 ehci_debug_root = debugfs_create_dir("ehci", usb_debug_root);
Alan Stern9beeee62008-10-02 11:48:13 -04001317 if (!ehci_debug_root) {
1318 retval = -ENOENT;
1319 goto err_debug;
1320 }
Tony Jones694cc202007-09-11 14:07:31 -07001321#endif
1322
Kumar Gala01cced22006-04-11 10:07:16 -05001323#ifdef PLATFORM_DRIVER
1324 retval = platform_driver_register(&PLATFORM_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001325 if (retval < 0)
1326 goto clean0;
Kumar Gala01cced22006-04-11 10:07:16 -05001327#endif
1328
1329#ifdef PCI_DRIVER
1330 retval = pci_register_driver(&PCI_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001331 if (retval < 0)
1332 goto clean1;
Geoff Levandad75a412007-01-15 20:11:47 -08001333#endif
1334
1335#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001336 retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001337 if (retval < 0)
1338 goto clean2;
Kumar Gala01cced22006-04-11 10:07:16 -05001339#endif
1340
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001341#ifdef OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001342 retval = platform_driver_register(&OF_PLATFORM_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001343 if (retval < 0)
1344 goto clean3;
1345#endif
Grant Likely1f23b2d2010-06-02 13:53:17 -06001346
1347#ifdef XILINX_OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001348 retval = platform_driver_register(&XILINX_OF_PLATFORM_DRIVER);
Grant Likely1f23b2d2010-06-02 13:53:17 -06001349 if (retval < 0)
1350 goto clean4;
1351#endif
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001352 return retval;
1353
Grant Likely1f23b2d2010-06-02 13:53:17 -06001354#ifdef XILINX_OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001355 /* platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER); */
Grant Likely1f23b2d2010-06-02 13:53:17 -06001356clean4:
1357#endif
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001358#ifdef OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001359 platform_driver_unregister(&OF_PLATFORM_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001360clean3:
1361#endif
1362#ifdef PS3_SYSTEM_BUS_DRIVER
1363 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1364clean2:
1365#endif
1366#ifdef PCI_DRIVER
1367 pci_unregister_driver(&PCI_DRIVER);
1368clean1:
1369#endif
1370#ifdef PLATFORM_DRIVER
1371 platform_driver_unregister(&PLATFORM_DRIVER);
1372clean0:
1373#endif
1374#ifdef DEBUG
1375 debugfs_remove(ehci_debug_root);
1376 ehci_debug_root = NULL;
Alan Stern9beeee62008-10-02 11:48:13 -04001377err_debug:
Linus Torvaldsa9b61482008-10-20 14:23:29 -07001378#endif
Alan Stern9beeee62008-10-02 11:48:13 -04001379 clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
Kumar Gala01cced22006-04-11 10:07:16 -05001380 return retval;
1381}
1382module_init(ehci_hcd_init);
1383
1384static void __exit ehci_hcd_cleanup(void)
1385{
Grant Likely1f23b2d2010-06-02 13:53:17 -06001386#ifdef XILINX_OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001387 platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER);
Grant Likely1f23b2d2010-06-02 13:53:17 -06001388#endif
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001389#ifdef OF_PLATFORM_DRIVER
Grant Likelyd35fb642011-02-22 21:08:34 -07001390 platform_driver_unregister(&OF_PLATFORM_DRIVER);
Valentine Barshakda0e8fb2007-12-30 15:28:50 -08001391#endif
Kumar Gala01cced22006-04-11 10:07:16 -05001392#ifdef PLATFORM_DRIVER
1393 platform_driver_unregister(&PLATFORM_DRIVER);
1394#endif
1395#ifdef PCI_DRIVER
1396 pci_unregister_driver(&PCI_DRIVER);
1397#endif
Geoff Levandad75a412007-01-15 20:11:47 -08001398#ifdef PS3_SYSTEM_BUS_DRIVER
Geoff Levand7a4eb7f2007-06-05 20:04:35 -07001399 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
Geoff Levandad75a412007-01-15 20:11:47 -08001400#endif
Tony Jones694cc202007-09-11 14:07:31 -07001401#ifdef DEBUG
1402 debugfs_remove(ehci_debug_root);
1403#endif
Alan Stern9beeee62008-10-02 11:48:13 -04001404 clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
Kumar Gala01cced22006-04-11 10:07:16 -05001405}
1406module_exit(ehci_hcd_cleanup);
1407