xref: /linux/drivers/usb/host/ehci-hcd.c (revision 331ac6b288d9f3689514ced1878041fb0df7e13c)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Copyright (c) 2000-2004 by David Brownell
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * This program is free software; you can redistribute it and/or modify it
51da177e4SLinus Torvalds  * under the terms of the GNU General Public License as published by the
61da177e4SLinus Torvalds  * Free Software Foundation; either version 2 of the License, or (at your
71da177e4SLinus Torvalds  * option) any later version.
81da177e4SLinus Torvalds  *
91da177e4SLinus Torvalds  * This program is distributed in the hope that it will be useful, but
101da177e4SLinus Torvalds  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
111da177e4SLinus Torvalds  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
121da177e4SLinus Torvalds  * for more details.
131da177e4SLinus Torvalds  *
141da177e4SLinus Torvalds  * You should have received a copy of the GNU General Public License
151da177e4SLinus Torvalds  * along with this program; if not, write to the Free Software Foundation,
161da177e4SLinus Torvalds  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
171da177e4SLinus Torvalds  */
181da177e4SLinus Torvalds 
191da177e4SLinus Torvalds #include <linux/module.h>
201da177e4SLinus Torvalds #include <linux/pci.h>
211da177e4SLinus Torvalds #include <linux/dmapool.h>
221da177e4SLinus Torvalds #include <linux/kernel.h>
231da177e4SLinus Torvalds #include <linux/delay.h>
241da177e4SLinus Torvalds #include <linux/ioport.h>
251da177e4SLinus Torvalds #include <linux/sched.h>
261da177e4SLinus Torvalds #include <linux/slab.h>
273c04e20eSMing Lei #include <linux/vmalloc.h>
281da177e4SLinus Torvalds #include <linux/errno.h>
291da177e4SLinus Torvalds #include <linux/init.h>
301da177e4SLinus Torvalds #include <linux/timer.h>
311da177e4SLinus Torvalds #include <linux/list.h>
321da177e4SLinus Torvalds #include <linux/interrupt.h>
331da177e4SLinus Torvalds #include <linux/reboot.h>
341da177e4SLinus Torvalds #include <linux/usb.h>
351da177e4SLinus Torvalds #include <linux/moduleparam.h>
361da177e4SLinus Torvalds #include <linux/dma-mapping.h>
37694cc208STony Jones #include <linux/debugfs.h>
381da177e4SLinus Torvalds 
391da177e4SLinus Torvalds #include "../core/hcd.h"
401da177e4SLinus Torvalds 
411da177e4SLinus Torvalds #include <asm/byteorder.h>
421da177e4SLinus Torvalds #include <asm/io.h>
431da177e4SLinus Torvalds #include <asm/irq.h>
441da177e4SLinus Torvalds #include <asm/system.h>
451da177e4SLinus Torvalds #include <asm/unaligned.h>
461da177e4SLinus Torvalds 
471da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
481da177e4SLinus Torvalds 
491da177e4SLinus Torvalds /*
501da177e4SLinus Torvalds  * EHCI hc_driver implementation ... experimental, incomplete.
511da177e4SLinus Torvalds  * Based on the final 1.0 register interface specification.
521da177e4SLinus Torvalds  *
531da177e4SLinus Torvalds  * USB 2.0 shows up in upcoming www.pcmcia.org technology.
541da177e4SLinus Torvalds  * First was PCMCIA, like ISA; then CardBus, which is PCI.
551da177e4SLinus Torvalds  * Next comes "CardBay", using USB 2.0 signals.
561da177e4SLinus Torvalds  *
571da177e4SLinus Torvalds  * Contains additional contributions by Brad Hards, Rory Bolt, and others.
581da177e4SLinus Torvalds  * Special thanks to Intel and VIA for providing host controllers to
591da177e4SLinus Torvalds  * test this driver on, and Cypress (including In-System Design) for
601da177e4SLinus Torvalds  * providing early devices for those host controllers to talk to!
611da177e4SLinus Torvalds  */
621da177e4SLinus Torvalds 
631da177e4SLinus Torvalds #define DRIVER_AUTHOR "David Brownell"
641da177e4SLinus Torvalds #define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
651da177e4SLinus Torvalds 
661da177e4SLinus Torvalds static const char	hcd_name [] = "ehci_hcd";
671da177e4SLinus Torvalds 
681da177e4SLinus Torvalds 
699776afc8SDavid Brownell #undef VERBOSE_DEBUG
701da177e4SLinus Torvalds #undef EHCI_URB_TRACE
711da177e4SLinus Torvalds 
721da177e4SLinus Torvalds #ifdef DEBUG
731da177e4SLinus Torvalds #define EHCI_STATS
741da177e4SLinus Torvalds #endif
751da177e4SLinus Torvalds 
761da177e4SLinus Torvalds /* magic numbers that can affect system performance */
771da177e4SLinus Torvalds #define	EHCI_TUNE_CERR		3	/* 0-3 qtd retries; 0 == don't stop */
781da177e4SLinus Torvalds #define	EHCI_TUNE_RL_HS		4	/* nak throttle; see 4.9 */
791da177e4SLinus Torvalds #define	EHCI_TUNE_RL_TT		0
801da177e4SLinus Torvalds #define	EHCI_TUNE_MULT_HS	1	/* 1-3 transactions/uframe; 4.10.3 */
811da177e4SLinus Torvalds #define	EHCI_TUNE_MULT_TT	1
821da177e4SLinus Torvalds #define	EHCI_TUNE_FLS		2	/* (small) 256 frame schedule */
831da177e4SLinus Torvalds 
8407d29b63SAlan Stern #define EHCI_IAA_MSECS		10		/* arbitrary */
851da177e4SLinus Torvalds #define EHCI_IO_JIFFIES		(HZ/10)		/* io watchdog > irq_thresh */
861da177e4SLinus Torvalds #define EHCI_ASYNC_JIFFIES	(HZ/20)		/* async idle timeout */
87b9638011SDavid Brownell #define EHCI_SHRINK_FRAMES	5		/* async qh unlink delay */
881da177e4SLinus Torvalds 
891da177e4SLinus Torvalds /* Initial IRQ latency:  faster than hw default */
901da177e4SLinus Torvalds static int log2_irq_thresh = 0;		// 0 to 6
911da177e4SLinus Torvalds module_param (log2_irq_thresh, int, S_IRUGO);
921da177e4SLinus Torvalds MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
931da177e4SLinus Torvalds 
941da177e4SLinus Torvalds /* initial park setting:  slower than hw default */
951da177e4SLinus Torvalds static unsigned park = 0;
961da177e4SLinus Torvalds module_param (park, uint, S_IRUGO);
971da177e4SLinus Torvalds MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
981da177e4SLinus Torvalds 
9993f1a47cSDavid Brownell /* for flakey hardware, ignore overcurrent indicators */
10093f1a47cSDavid Brownell static int ignore_oc = 0;
10193f1a47cSDavid Brownell module_param (ignore_oc, bool, S_IRUGO);
10293f1a47cSDavid Brownell MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
10393f1a47cSDavid Brownell 
1041da177e4SLinus Torvalds #define	INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT)
1051da177e4SLinus Torvalds 
1061da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
1071da177e4SLinus Torvalds 
1081da177e4SLinus Torvalds #include "ehci.h"
1091da177e4SLinus Torvalds #include "ehci-dbg.c"
1101da177e4SLinus Torvalds 
1111da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
1121da177e4SLinus Torvalds 
113bc29847eSAlan Stern static void
114bc29847eSAlan Stern timer_action(struct ehci_hcd *ehci, enum ehci_timer_action action)
115bc29847eSAlan Stern {
116bc29847eSAlan Stern 	/* Don't override timeouts which shrink or (later) disable
117bc29847eSAlan Stern 	 * the async ring; just the I/O watchdog.  Note that if a
118bc29847eSAlan Stern 	 * SHRINK were pending, OFF would never be requested.
119bc29847eSAlan Stern 	 */
120bc29847eSAlan Stern 	if (timer_pending(&ehci->watchdog)
121bc29847eSAlan Stern 			&& ((BIT(TIMER_ASYNC_SHRINK) | BIT(TIMER_ASYNC_OFF))
122bc29847eSAlan Stern 				& ehci->actions))
123bc29847eSAlan Stern 		return;
124bc29847eSAlan Stern 
125bc29847eSAlan Stern 	if (!test_and_set_bit(action, &ehci->actions)) {
126bc29847eSAlan Stern 		unsigned long t;
127bc29847eSAlan Stern 
128bc29847eSAlan Stern 		switch (action) {
129bc29847eSAlan Stern 		case TIMER_IO_WATCHDOG:
130403dbd36SAlek Du 			if (!ehci->need_io_watchdog)
131403dbd36SAlek Du 				return;
132bc29847eSAlan Stern 			t = EHCI_IO_JIFFIES;
133bc29847eSAlan Stern 			break;
134bc29847eSAlan Stern 		case TIMER_ASYNC_OFF:
135bc29847eSAlan Stern 			t = EHCI_ASYNC_JIFFIES;
136bc29847eSAlan Stern 			break;
137bc29847eSAlan Stern 		/* case TIMER_ASYNC_SHRINK: */
138bc29847eSAlan Stern 		default:
139bc29847eSAlan Stern 			/* add a jiffie since we synch against the
140bc29847eSAlan Stern 			 * 8 KHz uframe counter.
141bc29847eSAlan Stern 			 */
142bc29847eSAlan Stern 			t = DIV_ROUND_UP(EHCI_SHRINK_FRAMES * HZ, 1000) + 1;
143bc29847eSAlan Stern 			break;
144bc29847eSAlan Stern 		}
145bc29847eSAlan Stern 		mod_timer(&ehci->watchdog, t + jiffies);
146bc29847eSAlan Stern 	}
147bc29847eSAlan Stern }
148bc29847eSAlan Stern 
149bc29847eSAlan Stern /*-------------------------------------------------------------------------*/
150bc29847eSAlan Stern 
1511da177e4SLinus Torvalds /*
1521da177e4SLinus Torvalds  * handshake - spin reading hc until handshake completes or fails
1531da177e4SLinus Torvalds  * @ptr: address of hc register to be read
1541da177e4SLinus Torvalds  * @mask: bits to look at in result of read
1551da177e4SLinus Torvalds  * @done: value of those bits when handshake succeeds
1561da177e4SLinus Torvalds  * @usec: timeout in microseconds
1571da177e4SLinus Torvalds  *
1581da177e4SLinus Torvalds  * Returns negative errno, or zero on success
1591da177e4SLinus Torvalds  *
1601da177e4SLinus Torvalds  * Success happens when the "mask" bits have the specified value (hardware
1611da177e4SLinus Torvalds  * handshake done).  There are two failure modes:  "usec" have passed (major
1621da177e4SLinus Torvalds  * hardware flakeout), or the register reads as all-ones (hardware removed).
1631da177e4SLinus Torvalds  *
1641da177e4SLinus Torvalds  * That last failure should_only happen in cases like physical cardbus eject
1651da177e4SLinus Torvalds  * before driver shutdown. But it also seems to be caused by bugs in cardbus
1661da177e4SLinus Torvalds  * bridge shutdown:  shutting down the bridge before the devices using it.
1671da177e4SLinus Torvalds  */
168083522d7SBenjamin Herrenschmidt static int handshake (struct ehci_hcd *ehci, void __iomem *ptr,
169083522d7SBenjamin Herrenschmidt 		      u32 mask, u32 done, int usec)
1701da177e4SLinus Torvalds {
1711da177e4SLinus Torvalds 	u32	result;
1721da177e4SLinus Torvalds 
1731da177e4SLinus Torvalds 	do {
174083522d7SBenjamin Herrenschmidt 		result = ehci_readl(ehci, ptr);
1751da177e4SLinus Torvalds 		if (result == ~(u32)0)		/* card removed */
1761da177e4SLinus Torvalds 			return -ENODEV;
1771da177e4SLinus Torvalds 		result &= mask;
1781da177e4SLinus Torvalds 		if (result == done)
1791da177e4SLinus Torvalds 			return 0;
1801da177e4SLinus Torvalds 		udelay (1);
1811da177e4SLinus Torvalds 		usec--;
1821da177e4SLinus Torvalds 	} while (usec > 0);
1831da177e4SLinus Torvalds 	return -ETIMEDOUT;
1841da177e4SLinus Torvalds }
1851da177e4SLinus Torvalds 
1861da177e4SLinus Torvalds /* force HC to halt state from unknown (EHCI spec section 2.3) */
1871da177e4SLinus Torvalds static int ehci_halt (struct ehci_hcd *ehci)
1881da177e4SLinus Torvalds {
189083522d7SBenjamin Herrenschmidt 	u32	temp = ehci_readl(ehci, &ehci->regs->status);
1901da177e4SLinus Torvalds 
19172f30b6fSDavid Brownell 	/* disable any irqs left enabled by previous code */
192083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, 0, &ehci->regs->intr_enable);
19372f30b6fSDavid Brownell 
1941da177e4SLinus Torvalds 	if ((temp & STS_HALT) != 0)
1951da177e4SLinus Torvalds 		return 0;
1961da177e4SLinus Torvalds 
197083522d7SBenjamin Herrenschmidt 	temp = ehci_readl(ehci, &ehci->regs->command);
1981da177e4SLinus Torvalds 	temp &= ~CMD_RUN;
199083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, temp, &ehci->regs->command);
200083522d7SBenjamin Herrenschmidt 	return handshake (ehci, &ehci->regs->status,
201083522d7SBenjamin Herrenschmidt 			  STS_HALT, STS_HALT, 16 * 125);
2021da177e4SLinus Torvalds }
2031da177e4SLinus Torvalds 
2040bcfeb3eSDavid Brownell static int handshake_on_error_set_halt(struct ehci_hcd *ehci, void __iomem *ptr,
2050bcfeb3eSDavid Brownell 				       u32 mask, u32 done, int usec)
2060bcfeb3eSDavid Brownell {
2070bcfeb3eSDavid Brownell 	int error;
2080bcfeb3eSDavid Brownell 
2090bcfeb3eSDavid Brownell 	error = handshake(ehci, ptr, mask, done, usec);
2100bcfeb3eSDavid Brownell 	if (error) {
2110bcfeb3eSDavid Brownell 		ehci_halt(ehci);
2120bcfeb3eSDavid Brownell 		ehci_to_hcd(ehci)->state = HC_STATE_HALT;
2130bcfeb3eSDavid Brownell 		ehci_err(ehci, "force halt; handhake %p %08x %08x -> %d\n",
2140bcfeb3eSDavid Brownell 			ptr, mask, done, error);
2150bcfeb3eSDavid Brownell 	}
2160bcfeb3eSDavid Brownell 
2170bcfeb3eSDavid Brownell 	return error;
2180bcfeb3eSDavid Brownell }
2190bcfeb3eSDavid Brownell 
2201da177e4SLinus Torvalds /* put TDI/ARC silicon into EHCI mode */
2211da177e4SLinus Torvalds static void tdi_reset (struct ehci_hcd *ehci)
2221da177e4SLinus Torvalds {
2231da177e4SLinus Torvalds 	u32 __iomem	*reg_ptr;
2241da177e4SLinus Torvalds 	u32		tmp;
2251da177e4SLinus Torvalds 
226d23a1377SVladimir Barinov 	reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE);
227083522d7SBenjamin Herrenschmidt 	tmp = ehci_readl(ehci, reg_ptr);
228d23a1377SVladimir Barinov 	tmp |= USBMODE_CM_HC;
229d23a1377SVladimir Barinov 	/* The default byte access to MMR space is LE after
230d23a1377SVladimir Barinov 	 * controller reset. Set the required endian mode
231d23a1377SVladimir Barinov 	 * for transfer buffers to match the host microprocessor
232d23a1377SVladimir Barinov 	 */
233d23a1377SVladimir Barinov 	if (ehci_big_endian_mmio(ehci))
234d23a1377SVladimir Barinov 		tmp |= USBMODE_BE;
235083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, tmp, reg_ptr);
2361da177e4SLinus Torvalds }
2371da177e4SLinus Torvalds 
2381da177e4SLinus Torvalds /* reset a non-running (STS_HALT == 1) controller */
2391da177e4SLinus Torvalds static int ehci_reset (struct ehci_hcd *ehci)
2401da177e4SLinus Torvalds {
2411da177e4SLinus Torvalds 	int	retval;
242083522d7SBenjamin Herrenschmidt 	u32	command = ehci_readl(ehci, &ehci->regs->command);
2431da177e4SLinus Torvalds 
2441da177e4SLinus Torvalds 	command |= CMD_RESET;
2451da177e4SLinus Torvalds 	dbg_cmd (ehci, "reset", command);
246083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, command, &ehci->regs->command);
2471da177e4SLinus Torvalds 	ehci_to_hcd(ehci)->state = HC_STATE_HALT;
2481da177e4SLinus Torvalds 	ehci->next_statechange = jiffies;
249083522d7SBenjamin Herrenschmidt 	retval = handshake (ehci, &ehci->regs->command,
250083522d7SBenjamin Herrenschmidt 			    CMD_RESET, 0, 250 * 1000);
2511da177e4SLinus Torvalds 
252*331ac6b2SAlek Du 	if (ehci->has_hostpc) {
253*331ac6b2SAlek Du 		ehci_writel(ehci, USBMODE_EX_HC | USBMODE_EX_VBPS,
254*331ac6b2SAlek Du 			(u32 __iomem *)(((u8 *)ehci->regs) + USBMODE_EX));
255*331ac6b2SAlek Du 		ehci_writel(ehci, TXFIFO_DEFAULT,
256*331ac6b2SAlek Du 			(u32 __iomem *)(((u8 *)ehci->regs) + TXFILLTUNING));
257*331ac6b2SAlek Du 	}
2581da177e4SLinus Torvalds 	if (retval)
2591da177e4SLinus Torvalds 		return retval;
2601da177e4SLinus Torvalds 
2611da177e4SLinus Torvalds 	if (ehci_is_TDI(ehci))
2621da177e4SLinus Torvalds 		tdi_reset (ehci);
2631da177e4SLinus Torvalds 
2641da177e4SLinus Torvalds 	return retval;
2651da177e4SLinus Torvalds }
2661da177e4SLinus Torvalds 
2671da177e4SLinus Torvalds /* idle the controller (from running) */
2681da177e4SLinus Torvalds static void ehci_quiesce (struct ehci_hcd *ehci)
2691da177e4SLinus Torvalds {
2701da177e4SLinus Torvalds 	u32	temp;
2711da177e4SLinus Torvalds 
2721da177e4SLinus Torvalds #ifdef DEBUG
2731da177e4SLinus Torvalds 	if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state))
2741da177e4SLinus Torvalds 		BUG ();
2751da177e4SLinus Torvalds #endif
2761da177e4SLinus Torvalds 
2771da177e4SLinus Torvalds 	/* wait for any schedule enables/disables to take effect */
278083522d7SBenjamin Herrenschmidt 	temp = ehci_readl(ehci, &ehci->regs->command) << 10;
2791da177e4SLinus Torvalds 	temp &= STS_ASS | STS_PSS;
280c765d4caSKarsten Wiese 	if (handshake_on_error_set_halt(ehci, &ehci->regs->status,
281c765d4caSKarsten Wiese 					STS_ASS | STS_PSS, temp, 16 * 125))
2821da177e4SLinus Torvalds 		return;
2831da177e4SLinus Torvalds 
2841da177e4SLinus Torvalds 	/* then disable anything that's still active */
285083522d7SBenjamin Herrenschmidt 	temp = ehci_readl(ehci, &ehci->regs->command);
2861da177e4SLinus Torvalds 	temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE);
287083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, temp, &ehci->regs->command);
2881da177e4SLinus Torvalds 
2891da177e4SLinus Torvalds 	/* hardware can take 16 microframes to turn off ... */
290c765d4caSKarsten Wiese 	handshake_on_error_set_halt(ehci, &ehci->regs->status,
291c765d4caSKarsten Wiese 				    STS_ASS | STS_PSS, 0, 16 * 125);
2921da177e4SLinus Torvalds }
2931da177e4SLinus Torvalds 
2941da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
2951da177e4SLinus Torvalds 
29607d29b63SAlan Stern static void end_unlink_async(struct ehci_hcd *ehci);
2977d12e780SDavid Howells static void ehci_work(struct ehci_hcd *ehci);
2981da177e4SLinus Torvalds 
2991da177e4SLinus Torvalds #include "ehci-hub.c"
3001da177e4SLinus Torvalds #include "ehci-mem.c"
3011da177e4SLinus Torvalds #include "ehci-q.c"
3021da177e4SLinus Torvalds #include "ehci-sched.c"
3031da177e4SLinus Torvalds 
3041da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
3051da177e4SLinus Torvalds 
30607d29b63SAlan Stern static void ehci_iaa_watchdog(unsigned long param)
30707d29b63SAlan Stern {
30807d29b63SAlan Stern 	struct ehci_hcd		*ehci = (struct ehci_hcd *) param;
30907d29b63SAlan Stern 	unsigned long		flags;
31007d29b63SAlan Stern 
31107d29b63SAlan Stern 	spin_lock_irqsave (&ehci->lock, flags);
31207d29b63SAlan Stern 
313e82cc128SDavid Brownell 	/* Lost IAA irqs wedge things badly; seen first with a vt8235.
314e82cc128SDavid Brownell 	 * So we need this watchdog, but must protect it against both
315e82cc128SDavid Brownell 	 * (a) SMP races against real IAA firing and retriggering, and
316e82cc128SDavid Brownell 	 * (b) clean HC shutdown, when IAA watchdog was pending.
317e82cc128SDavid Brownell 	 */
318e82cc128SDavid Brownell 	if (ehci->reclaim
319e82cc128SDavid Brownell 			&& !timer_pending(&ehci->iaa_watchdog)
320e82cc128SDavid Brownell 			&& HC_IS_RUNNING(ehci_to_hcd(ehci)->state)) {
321e82cc128SDavid Brownell 		u32 cmd, status;
322e82cc128SDavid Brownell 
323e82cc128SDavid Brownell 		/* If we get here, IAA is *REALLY* late.  It's barely
324e82cc128SDavid Brownell 		 * conceivable that the system is so busy that CMD_IAAD
325e82cc128SDavid Brownell 		 * is still legitimately set, so let's be sure it's
326e82cc128SDavid Brownell 		 * clear before we read STS_IAA.  (The HC should clear
327e82cc128SDavid Brownell 		 * CMD_IAAD when it sets STS_IAA.)
328e82cc128SDavid Brownell 		 */
32907d29b63SAlan Stern 		cmd = ehci_readl(ehci, &ehci->regs->command);
330e82cc128SDavid Brownell 		if (cmd & CMD_IAAD)
331e82cc128SDavid Brownell 			ehci_writel(ehci, cmd & ~CMD_IAAD,
332e82cc128SDavid Brownell 					&ehci->regs->command);
33307d29b63SAlan Stern 
334e82cc128SDavid Brownell 		/* If IAA is set here it either legitimately triggered
335e82cc128SDavid Brownell 		 * before we cleared IAAD above (but _way_ late, so we'll
336e82cc128SDavid Brownell 		 * still count it as lost) ... or a silicon erratum:
337e82cc128SDavid Brownell 		 * - VIA seems to set IAA without triggering the IRQ;
338e82cc128SDavid Brownell 		 * - IAAD potentially cleared without setting IAA.
339e82cc128SDavid Brownell 		 */
340e82cc128SDavid Brownell 		status = ehci_readl(ehci, &ehci->regs->status);
341e82cc128SDavid Brownell 		if ((status & STS_IAA) || !(cmd & CMD_IAAD)) {
34207d29b63SAlan Stern 			COUNT (ehci->stats.lost_iaa);
34307d29b63SAlan Stern 			ehci_writel(ehci, STS_IAA, &ehci->regs->status);
34407d29b63SAlan Stern 		}
345e82cc128SDavid Brownell 
346e82cc128SDavid Brownell 		ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n",
347e82cc128SDavid Brownell 				status, cmd);
34807d29b63SAlan Stern 		end_unlink_async(ehci);
34907d29b63SAlan Stern 	}
35007d29b63SAlan Stern 
35107d29b63SAlan Stern 	spin_unlock_irqrestore(&ehci->lock, flags);
35207d29b63SAlan Stern }
35307d29b63SAlan Stern 
3541da177e4SLinus Torvalds static void ehci_watchdog(unsigned long param)
3551da177e4SLinus Torvalds {
3561da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = (struct ehci_hcd *) param;
3571da177e4SLinus Torvalds 	unsigned long		flags;
3581da177e4SLinus Torvalds 
3591da177e4SLinus Torvalds 	spin_lock_irqsave(&ehci->lock, flags);
3601da177e4SLinus Torvalds 
3611da177e4SLinus Torvalds 	/* stop async processing after it's idled a bit */
3621da177e4SLinus Torvalds 	if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
3631da177e4SLinus Torvalds 		start_unlink_async (ehci, ehci->async);
3641da177e4SLinus Torvalds 
3651da177e4SLinus Torvalds 	/* ehci could run by timer, without IRQs ... */
3667d12e780SDavid Howells 	ehci_work (ehci);
3671da177e4SLinus Torvalds 
3681da177e4SLinus Torvalds 	spin_unlock_irqrestore (&ehci->lock, flags);
3691da177e4SLinus Torvalds }
3701da177e4SLinus Torvalds 
3718903795aSAlan Stern /* On some systems, leaving remote wakeup enabled prevents system shutdown.
3728903795aSAlan Stern  * The firmware seems to think that powering off is a wakeup event!
3738903795aSAlan Stern  * This routine turns off remote wakeup and everything else, on all ports.
3748903795aSAlan Stern  */
3758903795aSAlan Stern static void ehci_turn_off_all_ports(struct ehci_hcd *ehci)
3768903795aSAlan Stern {
3778903795aSAlan Stern 	int	port = HCS_N_PORTS(ehci->hcs_params);
3788903795aSAlan Stern 
3798903795aSAlan Stern 	while (port--)
3808903795aSAlan Stern 		ehci_writel(ehci, PORT_RWC_BITS,
3818903795aSAlan Stern 				&ehci->regs->port_status[port]);
3828903795aSAlan Stern }
3838903795aSAlan Stern 
38421da84a8SSarah Sharp /*
38521da84a8SSarah Sharp  * Halt HC, turn off all ports, and let the BIOS use the companion controllers.
38621da84a8SSarah Sharp  * Should be called with ehci->lock held.
38772f30b6fSDavid Brownell  */
38821da84a8SSarah Sharp static void ehci_silence_controller(struct ehci_hcd *ehci)
3891da177e4SLinus Torvalds {
39021da84a8SSarah Sharp 	ehci_halt(ehci);
3918903795aSAlan Stern 	ehci_turn_off_all_ports(ehci);
3921da177e4SLinus Torvalds 
3931da177e4SLinus Torvalds 	/* make BIOS/etc use companion controller during reboot */
394083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, 0, &ehci->regs->configured_flag);
3958903795aSAlan Stern 
3968903795aSAlan Stern 	/* unblock posted writes */
3978903795aSAlan Stern 	ehci_readl(ehci, &ehci->regs->configured_flag);
3981da177e4SLinus Torvalds }
3991da177e4SLinus Torvalds 
40021da84a8SSarah Sharp /* ehci_shutdown kick in for silicon on any bus (not just pci, etc).
40121da84a8SSarah Sharp  * This forcibly disables dma and IRQs, helping kexec and other cases
40221da84a8SSarah Sharp  * where the next system software may expect clean state.
40321da84a8SSarah Sharp  */
40421da84a8SSarah Sharp static void ehci_shutdown(struct usb_hcd *hcd)
40521da84a8SSarah Sharp {
40621da84a8SSarah Sharp 	struct ehci_hcd	*ehci = hcd_to_ehci(hcd);
40721da84a8SSarah Sharp 
40821da84a8SSarah Sharp 	del_timer_sync(&ehci->watchdog);
40921da84a8SSarah Sharp 	del_timer_sync(&ehci->iaa_watchdog);
41021da84a8SSarah Sharp 
41121da84a8SSarah Sharp 	spin_lock_irq(&ehci->lock);
41221da84a8SSarah Sharp 	ehci_silence_controller(ehci);
41321da84a8SSarah Sharp 	spin_unlock_irq(&ehci->lock);
41421da84a8SSarah Sharp }
41521da84a8SSarah Sharp 
41656c1e26dSDavid Brownell static void ehci_port_power (struct ehci_hcd *ehci, int is_on)
41756c1e26dSDavid Brownell {
41856c1e26dSDavid Brownell 	unsigned port;
41956c1e26dSDavid Brownell 
42056c1e26dSDavid Brownell 	if (!HCS_PPC (ehci->hcs_params))
42156c1e26dSDavid Brownell 		return;
42256c1e26dSDavid Brownell 
42356c1e26dSDavid Brownell 	ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down");
42456c1e26dSDavid Brownell 	for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; )
42556c1e26dSDavid Brownell 		(void) ehci_hub_control(ehci_to_hcd(ehci),
42656c1e26dSDavid Brownell 				is_on ? SetPortFeature : ClearPortFeature,
42756c1e26dSDavid Brownell 				USB_PORT_FEAT_POWER,
42856c1e26dSDavid Brownell 				port--, NULL, 0);
429383975d7SAlan Stern 	/* Flush those writes */
430383975d7SAlan Stern 	ehci_readl(ehci, &ehci->regs->command);
43156c1e26dSDavid Brownell 	msleep(20);
43256c1e26dSDavid Brownell }
43356c1e26dSDavid Brownell 
4347ff71d6aSMatt Porter /*-------------------------------------------------------------------------*/
4351da177e4SLinus Torvalds 
4367ff71d6aSMatt Porter /*
4377ff71d6aSMatt Porter  * ehci_work is called from some interrupts, timers, and so on.
4387ff71d6aSMatt Porter  * it calls driver completion functions, after dropping ehci->lock.
4397ff71d6aSMatt Porter  */
4407d12e780SDavid Howells static void ehci_work (struct ehci_hcd *ehci)
4417ff71d6aSMatt Porter {
4427ff71d6aSMatt Porter 	timer_action_done (ehci, TIMER_IO_WATCHDOG);
4431da177e4SLinus Torvalds 
4447ff71d6aSMatt Porter 	/* another CPU may drop ehci->lock during a schedule scan while
4457ff71d6aSMatt Porter 	 * it reports urb completions.  this flag guards against bogus
4467ff71d6aSMatt Porter 	 * attempts at re-entrant schedule scanning.
4477ff71d6aSMatt Porter 	 */
4487ff71d6aSMatt Porter 	if (ehci->scanning)
4497ff71d6aSMatt Porter 		return;
4507ff71d6aSMatt Porter 	ehci->scanning = 1;
4517d12e780SDavid Howells 	scan_async (ehci);
4527ff71d6aSMatt Porter 	if (ehci->next_uframe != -1)
4537d12e780SDavid Howells 		scan_periodic (ehci);
4547ff71d6aSMatt Porter 	ehci->scanning = 0;
4557ff71d6aSMatt Porter 
4567ff71d6aSMatt Porter 	/* the IO watchdog guards against hardware or driver bugs that
4577ff71d6aSMatt Porter 	 * misplace IRQs, and should let us run completely without IRQs.
4587ff71d6aSMatt Porter 	 * such lossage has been observed on both VT6202 and VT8235.
4597ff71d6aSMatt Porter 	 */
4607ff71d6aSMatt Porter 	if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state) &&
4617ff71d6aSMatt Porter 			(ehci->async->qh_next.ptr != NULL ||
4627ff71d6aSMatt Porter 			 ehci->periodic_sched != 0))
4637ff71d6aSMatt Porter 		timer_action (ehci, TIMER_IO_WATCHDOG);
4647ff71d6aSMatt Porter }
4657ff71d6aSMatt Porter 
46621da84a8SSarah Sharp /*
46721da84a8SSarah Sharp  * Called when the ehci_hcd module is removed.
46821da84a8SSarah Sharp  */
4697ff71d6aSMatt Porter static void ehci_stop (struct usb_hcd *hcd)
4701da177e4SLinus Torvalds {
4711da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
4721da177e4SLinus Torvalds 
4737ff71d6aSMatt Porter 	ehci_dbg (ehci, "stop\n");
4741da177e4SLinus Torvalds 
4757ff71d6aSMatt Porter 	/* no more interrupts ... */
4767ff71d6aSMatt Porter 	del_timer_sync (&ehci->watchdog);
47707d29b63SAlan Stern 	del_timer_sync(&ehci->iaa_watchdog);
4781da177e4SLinus Torvalds 
4797ff71d6aSMatt Porter 	spin_lock_irq(&ehci->lock);
4807ff71d6aSMatt Porter 	if (HC_IS_RUNNING (hcd->state))
4817ff71d6aSMatt Porter 		ehci_quiesce (ehci);
4821da177e4SLinus Torvalds 
48321da84a8SSarah Sharp 	ehci_silence_controller(ehci);
4847ff71d6aSMatt Porter 	ehci_reset (ehci);
4857ff71d6aSMatt Porter 	spin_unlock_irq(&ehci->lock);
4867ff71d6aSMatt Porter 
48757e06c11SAlan Stern 	remove_companion_file(ehci);
4887ff71d6aSMatt Porter 	remove_debug_files (ehci);
4897ff71d6aSMatt Porter 
4907ff71d6aSMatt Porter 	/* root hub is shut down separately (first, when possible) */
4917ff71d6aSMatt Porter 	spin_lock_irq (&ehci->lock);
4927ff71d6aSMatt Porter 	if (ehci->async)
4937d12e780SDavid Howells 		ehci_work (ehci);
4947ff71d6aSMatt Porter 	spin_unlock_irq (&ehci->lock);
4957ff71d6aSMatt Porter 	ehci_mem_cleanup (ehci);
4967ff71d6aSMatt Porter 
4977ff71d6aSMatt Porter #ifdef	EHCI_STATS
4987ff71d6aSMatt Porter 	ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n",
4997ff71d6aSMatt Porter 		ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim,
5007ff71d6aSMatt Porter 		ehci->stats.lost_iaa);
5017ff71d6aSMatt Porter 	ehci_dbg (ehci, "complete %ld unlink %ld\n",
5027ff71d6aSMatt Porter 		ehci->stats.complete, ehci->stats.unlink);
5031da177e4SLinus Torvalds #endif
5047ff71d6aSMatt Porter 
505083522d7SBenjamin Herrenschmidt 	dbg_status (ehci, "ehci_stop completed",
506083522d7SBenjamin Herrenschmidt 		    ehci_readl(ehci, &ehci->regs->status));
5071da177e4SLinus Torvalds }
5081da177e4SLinus Torvalds 
50918807521SDavid Brownell /* one-time init, only for memory state */
51018807521SDavid Brownell static int ehci_init(struct usb_hcd *hcd)
5111da177e4SLinus Torvalds {
5121da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
5131da177e4SLinus Torvalds 	u32			temp;
5141da177e4SLinus Torvalds 	int			retval;
5151da177e4SLinus Torvalds 	u32			hcc_params;
5163807e26dSAlek Du 	struct ehci_qh_hw	*hw;
5171da177e4SLinus Torvalds 
51818807521SDavid Brownell 	spin_lock_init(&ehci->lock);
51918807521SDavid Brownell 
520403dbd36SAlek Du 	/*
521403dbd36SAlek Du 	 * keep io watchdog by default, those good HCDs could turn off it later
522403dbd36SAlek Du 	 */
523403dbd36SAlek Du 	ehci->need_io_watchdog = 1;
5241da177e4SLinus Torvalds 	init_timer(&ehci->watchdog);
5251da177e4SLinus Torvalds 	ehci->watchdog.function = ehci_watchdog;
5261da177e4SLinus Torvalds 	ehci->watchdog.data = (unsigned long) ehci;
5271da177e4SLinus Torvalds 
52807d29b63SAlan Stern 	init_timer(&ehci->iaa_watchdog);
52907d29b63SAlan Stern 	ehci->iaa_watchdog.function = ehci_iaa_watchdog;
53007d29b63SAlan Stern 	ehci->iaa_watchdog.data = (unsigned long) ehci;
53107d29b63SAlan Stern 
5321da177e4SLinus Torvalds 	/*
5331da177e4SLinus Torvalds 	 * hw default: 1K periodic list heads, one per frame.
5341da177e4SLinus Torvalds 	 * periodic_size can shrink by USBCMD update if hcc_params allows.
5351da177e4SLinus Torvalds 	 */
5361da177e4SLinus Torvalds 	ehci->periodic_size = DEFAULT_I_TDPS;
5379aa09d2fSKarsten Wiese 	INIT_LIST_HEAD(&ehci->cached_itd_list);
53818807521SDavid Brownell 	if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0)
5391da177e4SLinus Torvalds 		return retval;
5401da177e4SLinus Torvalds 
5411da177e4SLinus Torvalds 	/* controllers may cache some of the periodic schedule ... */
542083522d7SBenjamin Herrenschmidt 	hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
5431da177e4SLinus Torvalds 	if (HCC_ISOC_CACHE(hcc_params))		// full frame cache
5441da177e4SLinus Torvalds 		ehci->i_thresh = 8;
5451da177e4SLinus Torvalds 	else					// N microframes cached
5461da177e4SLinus Torvalds 		ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
5471da177e4SLinus Torvalds 
5481da177e4SLinus Torvalds 	ehci->reclaim = NULL;
5491da177e4SLinus Torvalds 	ehci->next_uframe = -1;
5509aa09d2fSKarsten Wiese 	ehci->clock_frame = -1;
5511da177e4SLinus Torvalds 
5521da177e4SLinus Torvalds 	/*
5531da177e4SLinus Torvalds 	 * dedicate a qh for the async ring head, since we couldn't unlink
5541da177e4SLinus Torvalds 	 * a 'real' qh without stopping the async schedule [4.8].  use it
5551da177e4SLinus Torvalds 	 * as the 'reclamation list head' too.
5561da177e4SLinus Torvalds 	 * its dummy is used in hw_alt_next of many tds, to prevent the qh
5571da177e4SLinus Torvalds 	 * from automatically advancing to the next td after short reads.
5581da177e4SLinus Torvalds 	 */
5591da177e4SLinus Torvalds 	ehci->async->qh_next.qh = NULL;
5603807e26dSAlek Du 	hw = ehci->async->hw;
5613807e26dSAlek Du 	hw->hw_next = QH_NEXT(ehci, ehci->async->qh_dma);
5623807e26dSAlek Du 	hw->hw_info1 = cpu_to_hc32(ehci, QH_HEAD);
5633807e26dSAlek Du 	hw->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT);
5643807e26dSAlek Du 	hw->hw_qtd_next = EHCI_LIST_END(ehci);
5651da177e4SLinus Torvalds 	ehci->async->qh_state = QH_STATE_LINKED;
5663807e26dSAlek Du 	hw->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma);
5671da177e4SLinus Torvalds 
5681da177e4SLinus Torvalds 	/* clear interrupt enables, set irq latency */
5691da177e4SLinus Torvalds 	if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
5701da177e4SLinus Torvalds 		log2_irq_thresh = 0;
5711da177e4SLinus Torvalds 	temp = 1 << (16 + log2_irq_thresh);
5721da177e4SLinus Torvalds 	if (HCC_CANPARK(hcc_params)) {
5731da177e4SLinus Torvalds 		/* HW default park == 3, on hardware that supports it (like
5741da177e4SLinus Torvalds 		 * NVidia and ALI silicon), maximizes throughput on the async
5751da177e4SLinus Torvalds 		 * schedule by avoiding QH fetches between transfers.
5761da177e4SLinus Torvalds 		 *
5771da177e4SLinus Torvalds 		 * With fast usb storage devices and NForce2, "park" seems to
5781da177e4SLinus Torvalds 		 * make problems:  throughput reduction (!), data errors...
5791da177e4SLinus Torvalds 		 */
5801da177e4SLinus Torvalds 		if (park) {
5811da177e4SLinus Torvalds 			park = min(park, (unsigned) 3);
5821da177e4SLinus Torvalds 			temp |= CMD_PARK;
5831da177e4SLinus Torvalds 			temp |= park << 8;
5841da177e4SLinus Torvalds 		}
58518807521SDavid Brownell 		ehci_dbg(ehci, "park %d\n", park);
5861da177e4SLinus Torvalds 	}
5871da177e4SLinus Torvalds 	if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
5881da177e4SLinus Torvalds 		/* periodic schedule size can be smaller than default */
5891da177e4SLinus Torvalds 		temp &= ~(3 << 2);
5901da177e4SLinus Torvalds 		temp |= (EHCI_TUNE_FLS << 2);
5911da177e4SLinus Torvalds 		switch (EHCI_TUNE_FLS) {
5921da177e4SLinus Torvalds 		case 0: ehci->periodic_size = 1024; break;
5931da177e4SLinus Torvalds 		case 1: ehci->periodic_size = 512; break;
5941da177e4SLinus Torvalds 		case 2: ehci->periodic_size = 256; break;
5951da177e4SLinus Torvalds 		default:	BUG();
5961da177e4SLinus Torvalds 		}
5971da177e4SLinus Torvalds 	}
59818807521SDavid Brownell 	ehci->command = temp;
59918807521SDavid Brownell 
60018807521SDavid Brownell 	return 0;
60118807521SDavid Brownell }
60218807521SDavid Brownell 
60318807521SDavid Brownell /* start HC running; it's halted, ehci_init() has been run (once) */
60418807521SDavid Brownell static int ehci_run (struct usb_hcd *hcd)
60518807521SDavid Brownell {
60618807521SDavid Brownell 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
60718807521SDavid Brownell 	int			retval;
60818807521SDavid Brownell 	u32			temp;
60918807521SDavid Brownell 	u32			hcc_params;
61018807521SDavid Brownell 
6111d619f12SMarcelo Tosatti 	hcd->uses_new_polling = 1;
6121d619f12SMarcelo Tosatti 	hcd->poll_rh = 0;
6131d619f12SMarcelo Tosatti 
61418807521SDavid Brownell 	/* EHCI spec section 4.1 */
61518807521SDavid Brownell 	if ((retval = ehci_reset(ehci)) != 0) {
61618807521SDavid Brownell 		ehci_mem_cleanup(ehci);
61718807521SDavid Brownell 		return retval;
61818807521SDavid Brownell 	}
619083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
620083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next);
62118807521SDavid Brownell 
62218807521SDavid Brownell 	/*
62318807521SDavid Brownell 	 * hcc_params controls whether ehci->regs->segment must (!!!)
62418807521SDavid Brownell 	 * be used; it constrains QH/ITD/SITD and QTD locations.
62518807521SDavid Brownell 	 * pci_pool consistent memory always uses segment zero.
62618807521SDavid Brownell 	 * streaming mappings for I/O buffers, like pci_map_single(),
62718807521SDavid Brownell 	 * can return segments above 4GB, if the device allows.
62818807521SDavid Brownell 	 *
62918807521SDavid Brownell 	 * NOTE:  the dma mask is visible through dma_supported(), so
63018807521SDavid Brownell 	 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
63118807521SDavid Brownell 	 * Scsi_Host.highmem_io, and so forth.  It's readonly to all
63218807521SDavid Brownell 	 * host side drivers though.
63318807521SDavid Brownell 	 */
634083522d7SBenjamin Herrenschmidt 	hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
63518807521SDavid Brownell 	if (HCC_64BIT_ADDR(hcc_params)) {
636083522d7SBenjamin Herrenschmidt 		ehci_writel(ehci, 0, &ehci->regs->segment);
63718807521SDavid Brownell #if 0
63818807521SDavid Brownell // this is deeply broken on almost all architectures
6396a35528aSYang Hongyang 		if (!dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64)))
64018807521SDavid Brownell 			ehci_info(ehci, "enabled 64bit DMA\n");
64118807521SDavid Brownell #endif
64218807521SDavid Brownell 	}
64318807521SDavid Brownell 
64418807521SDavid Brownell 
6451da177e4SLinus Torvalds 	// Philips, Intel, and maybe others need CMD_RUN before the
6461da177e4SLinus Torvalds 	// root hub will detect new devices (why?); NEC doesn't
64718807521SDavid Brownell 	ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
64818807521SDavid Brownell 	ehci->command |= CMD_RUN;
649083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, ehci->command, &ehci->regs->command);
65018807521SDavid Brownell 	dbg_cmd (ehci, "init", ehci->command);
6511da177e4SLinus Torvalds 
6521da177e4SLinus Torvalds 	/*
6531da177e4SLinus Torvalds 	 * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
6541da177e4SLinus Torvalds 	 * are explicitly handed to companion controller(s), so no TT is
6551da177e4SLinus Torvalds 	 * involved with the root hub.  (Except where one is integrated,
6561da177e4SLinus Torvalds 	 * and there's no companion controller unless maybe for USB OTG.)
65732fe0198SAlan Stern 	 *
65832fe0198SAlan Stern 	 * Turning on the CF flag will transfer ownership of all ports
65932fe0198SAlan Stern 	 * from the companions to the EHCI controller.  If any of the
66032fe0198SAlan Stern 	 * companions are in the middle of a port reset at the time, it
66132fe0198SAlan Stern 	 * could cause trouble.  Write-locking ehci_cf_port_reset_rwsem
6621cb52658SDavid Brownell 	 * guarantees that no resets are in progress.  After we set CF,
6631cb52658SDavid Brownell 	 * a short delay lets the hardware catch up; new resets shouldn't
6641cb52658SDavid Brownell 	 * be started before the port switching actions could complete.
6651da177e4SLinus Torvalds 	 */
66632fe0198SAlan Stern 	down_write(&ehci_cf_port_reset_rwsem);
6671da177e4SLinus Torvalds 	hcd->state = HC_STATE_RUNNING;
668083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
669083522d7SBenjamin Herrenschmidt 	ehci_readl(ehci, &ehci->regs->command);	/* unblock posted writes */
6701cb52658SDavid Brownell 	msleep(5);
67132fe0198SAlan Stern 	up_write(&ehci_cf_port_reset_rwsem);
6721da177e4SLinus Torvalds 
673083522d7SBenjamin Herrenschmidt 	temp = HC_VERSION(ehci_readl(ehci, &ehci->caps->hc_capbase));
6741da177e4SLinus Torvalds 	ehci_info (ehci,
6752b70f073SAlan Stern 		"USB %x.%x started, EHCI %x.%02x%s\n",
6767ff71d6aSMatt Porter 		((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f),
6772b70f073SAlan Stern 		temp >> 8, temp & 0xff,
67893f1a47cSDavid Brownell 		ignore_oc ? ", overcurrent ignored" : "");
6791da177e4SLinus Torvalds 
680083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, INTR_MASK,
681083522d7SBenjamin Herrenschmidt 		    &ehci->regs->intr_enable); /* Turn On Interrupts */
6821da177e4SLinus Torvalds 
68318807521SDavid Brownell 	/* GRR this is run-once init(), being done every time the HC starts.
68418807521SDavid Brownell 	 * So long as they're part of class devices, we can't do it init()
68518807521SDavid Brownell 	 * since the class device isn't created that early.
68618807521SDavid Brownell 	 */
6871da177e4SLinus Torvalds 	create_debug_files(ehci);
68857e06c11SAlan Stern 	create_companion_file(ehci);
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds 	return 0;
6911da177e4SLinus Torvalds }
6921da177e4SLinus Torvalds 
6931da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
6941da177e4SLinus Torvalds 
6957d12e780SDavid Howells static irqreturn_t ehci_irq (struct usb_hcd *hcd)
6961da177e4SLinus Torvalds {
6971da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
69867b2e029SAlan Stern 	u32			status, masked_status, pcd_status = 0, cmd;
6991da177e4SLinus Torvalds 	int			bh;
7001da177e4SLinus Torvalds 
7011da177e4SLinus Torvalds 	spin_lock (&ehci->lock);
7021da177e4SLinus Torvalds 
703083522d7SBenjamin Herrenschmidt 	status = ehci_readl(ehci, &ehci->regs->status);
7041da177e4SLinus Torvalds 
7051da177e4SLinus Torvalds 	/* e.g. cardbus physical eject */
7061da177e4SLinus Torvalds 	if (status == ~(u32) 0) {
7071da177e4SLinus Torvalds 		ehci_dbg (ehci, "device removed\n");
7081da177e4SLinus Torvalds 		goto dead;
7091da177e4SLinus Torvalds 	}
7101da177e4SLinus Torvalds 
71167b2e029SAlan Stern 	masked_status = status & INTR_MASK;
71267b2e029SAlan Stern 	if (!masked_status) {		/* irq sharing? */
7131da177e4SLinus Torvalds 		spin_unlock(&ehci->lock);
7141da177e4SLinus Torvalds 		return IRQ_NONE;
7151da177e4SLinus Torvalds 	}
7161da177e4SLinus Torvalds 
7171da177e4SLinus Torvalds 	/* clear (just) interrupts */
71867b2e029SAlan Stern 	ehci_writel(ehci, masked_status, &ehci->regs->status);
719e82cc128SDavid Brownell 	cmd = ehci_readl(ehci, &ehci->regs->command);
7201da177e4SLinus Torvalds 	bh = 0;
7211da177e4SLinus Torvalds 
7229776afc8SDavid Brownell #ifdef	VERBOSE_DEBUG
7231da177e4SLinus Torvalds 	/* unrequested/ignored: Frame List Rollover */
7241da177e4SLinus Torvalds 	dbg_status (ehci, "irq", status);
7251da177e4SLinus Torvalds #endif
7261da177e4SLinus Torvalds 
7271da177e4SLinus Torvalds 	/* INT, ERR, and IAA interrupt rates can be throttled */
7281da177e4SLinus Torvalds 
7291da177e4SLinus Torvalds 	/* normal [4.15.1.2] or error [4.15.1.1] completion */
7301da177e4SLinus Torvalds 	if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
7311da177e4SLinus Torvalds 		if (likely ((status & STS_ERR) == 0))
7321da177e4SLinus Torvalds 			COUNT (ehci->stats.normal);
7331da177e4SLinus Torvalds 		else
7341da177e4SLinus Torvalds 			COUNT (ehci->stats.error);
7351da177e4SLinus Torvalds 		bh = 1;
7361da177e4SLinus Torvalds 	}
7371da177e4SLinus Torvalds 
7381da177e4SLinus Torvalds 	/* complete the unlinking of some qh [4.15.2.3] */
7391da177e4SLinus Torvalds 	if (status & STS_IAA) {
740e82cc128SDavid Brownell 		/* guard against (alleged) silicon errata */
741e82cc128SDavid Brownell 		if (cmd & CMD_IAAD) {
742e82cc128SDavid Brownell 			ehci_writel(ehci, cmd & ~CMD_IAAD,
743e82cc128SDavid Brownell 					&ehci->regs->command);
744e82cc128SDavid Brownell 			ehci_dbg(ehci, "IAA with IAAD still set?\n");
745e82cc128SDavid Brownell 		}
746e82cc128SDavid Brownell 		if (ehci->reclaim) {
7471da177e4SLinus Torvalds 			COUNT(ehci->stats.reclaim);
74807d29b63SAlan Stern 			end_unlink_async(ehci);
749e82cc128SDavid Brownell 		} else
750e82cc128SDavid Brownell 			ehci_dbg(ehci, "IAA with nothing to reclaim?\n");
7511da177e4SLinus Torvalds 	}
7521da177e4SLinus Torvalds 
7531da177e4SLinus Torvalds 	/* remote wakeup [4.3.1] */
754d97cc2f2SDavid Brownell 	if (status & STS_PCD) {
7551da177e4SLinus Torvalds 		unsigned	i = HCS_N_PORTS (ehci->hcs_params);
756d1b1842cSDavid Brownell 
757d1b1842cSDavid Brownell 		/* kick root hub later */
7581d619f12SMarcelo Tosatti 		pcd_status = status;
7591da177e4SLinus Torvalds 
7601da177e4SLinus Torvalds 		/* resume root hub? */
761eafe5b99SAlan Stern 		if (!(cmd & CMD_RUN))
7628c03356aSAlan Stern 			usb_hcd_resume_root_hub(hcd);
7631da177e4SLinus Torvalds 
7641da177e4SLinus Torvalds 		while (i--) {
765083522d7SBenjamin Herrenschmidt 			int pstatus = ehci_readl(ehci,
766083522d7SBenjamin Herrenschmidt 						 &ehci->regs->port_status [i]);
767b972b68cSDavid Brownell 
768b972b68cSDavid Brownell 			if (pstatus & PORT_OWNER)
7691da177e4SLinus Torvalds 				continue;
770eafe5b99SAlan Stern 			if (!(test_bit(i, &ehci->suspended_ports) &&
771eafe5b99SAlan Stern 					((pstatus & PORT_RESUME) ||
772eafe5b99SAlan Stern 						!(pstatus & PORT_SUSPEND)) &&
773eafe5b99SAlan Stern 					(pstatus & PORT_PE) &&
774eafe5b99SAlan Stern 					ehci->reset_done[i] == 0))
7751da177e4SLinus Torvalds 				continue;
7761da177e4SLinus Torvalds 
7771da177e4SLinus Torvalds 			/* start 20 msec resume signaling from this port,
7781da177e4SLinus Torvalds 			 * and make khubd collect PORT_STAT_C_SUSPEND to
7791da177e4SLinus Torvalds 			 * stop that signaling.
7801da177e4SLinus Torvalds 			 */
7811da177e4SLinus Torvalds 			ehci->reset_done [i] = jiffies + msecs_to_jiffies (20);
7821da177e4SLinus Torvalds 			ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
78361e8b858SAlan Stern 			mod_timer(&hcd->rh_timer, ehci->reset_done[i]);
7841da177e4SLinus Torvalds 		}
7851da177e4SLinus Torvalds 	}
7861da177e4SLinus Torvalds 
7871da177e4SLinus Torvalds 	/* PCI errors [4.15.2.4] */
7881da177e4SLinus Torvalds 	if (unlikely ((status & STS_FATAL) != 0)) {
78967b2e029SAlan Stern 		ehci_err(ehci, "fatal error\n");
790eafe5b99SAlan Stern 		dbg_cmd(ehci, "fatal", cmd);
7911da177e4SLinus Torvalds 		dbg_status(ehci, "fatal", status);
79267b2e029SAlan Stern 		ehci_halt(ehci);
7931da177e4SLinus Torvalds dead:
7941da177e4SLinus Torvalds 		ehci_reset(ehci);
795083522d7SBenjamin Herrenschmidt 		ehci_writel(ehci, 0, &ehci->regs->configured_flag);
7961da177e4SLinus Torvalds 		/* generic layer kills/unlinks all urbs, then
7971da177e4SLinus Torvalds 		 * uses ehci_stop to clean up the rest
7981da177e4SLinus Torvalds 		 */
7991da177e4SLinus Torvalds 		bh = 1;
8001da177e4SLinus Torvalds 	}
8011da177e4SLinus Torvalds 
8021da177e4SLinus Torvalds 	if (bh)
8037d12e780SDavid Howells 		ehci_work (ehci);
8041da177e4SLinus Torvalds 	spin_unlock (&ehci->lock);
805d1b1842cSDavid Brownell 	if (pcd_status)
8061d619f12SMarcelo Tosatti 		usb_hcd_poll_rh_status(hcd);
8071da177e4SLinus Torvalds 	return IRQ_HANDLED;
8081da177e4SLinus Torvalds }
8091da177e4SLinus Torvalds 
8101da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
8111da177e4SLinus Torvalds 
8121da177e4SLinus Torvalds /*
8131da177e4SLinus Torvalds  * non-error returns are a promise to giveback() the urb later
8141da177e4SLinus Torvalds  * we drop ownership so next owner (or urb unlink) can get it
8151da177e4SLinus Torvalds  *
8161da177e4SLinus Torvalds  * urb + dev is in hcd.self.controller.urb_list
8171da177e4SLinus Torvalds  * we're queueing TDs onto software and hardware lists
8181da177e4SLinus Torvalds  *
8191da177e4SLinus Torvalds  * hcd-specific init for hcpriv hasn't been done yet
8201da177e4SLinus Torvalds  *
8211da177e4SLinus Torvalds  * NOTE:  control, bulk, and interrupt share the same code to append TDs
8221da177e4SLinus Torvalds  * to a (possibly active) QH, and the same QH scanning code.
8231da177e4SLinus Torvalds  */
8241da177e4SLinus Torvalds static int ehci_urb_enqueue (
8251da177e4SLinus Torvalds 	struct usb_hcd	*hcd,
8261da177e4SLinus Torvalds 	struct urb	*urb,
82755016f10SAl Viro 	gfp_t		mem_flags
8281da177e4SLinus Torvalds ) {
8291da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
8301da177e4SLinus Torvalds 	struct list_head	qtd_list;
8311da177e4SLinus Torvalds 
8321da177e4SLinus Torvalds 	INIT_LIST_HEAD (&qtd_list);
8331da177e4SLinus Torvalds 
8341da177e4SLinus Torvalds 	switch (usb_pipetype (urb->pipe)) {
83525b70a86SDavid Brownell 	case PIPE_CONTROL:
83625b70a86SDavid Brownell 		/* qh_completions() code doesn't handle all the fault cases
83725b70a86SDavid Brownell 		 * in multi-TD control transfers.  Even 1KB is rare anyway.
83825b70a86SDavid Brownell 		 */
83925b70a86SDavid Brownell 		if (urb->transfer_buffer_length > (16 * 1024))
84025b70a86SDavid Brownell 			return -EMSGSIZE;
84125b70a86SDavid Brownell 		/* FALLTHROUGH */
84225b70a86SDavid Brownell 	/* case PIPE_BULK: */
8431da177e4SLinus Torvalds 	default:
8441da177e4SLinus Torvalds 		if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
8451da177e4SLinus Torvalds 			return -ENOMEM;
846e9df41c5SAlan Stern 		return submit_async(ehci, urb, &qtd_list, mem_flags);
8471da177e4SLinus Torvalds 
8481da177e4SLinus Torvalds 	case PIPE_INTERRUPT:
8491da177e4SLinus Torvalds 		if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
8501da177e4SLinus Torvalds 			return -ENOMEM;
851e9df41c5SAlan Stern 		return intr_submit(ehci, urb, &qtd_list, mem_flags);
8521da177e4SLinus Torvalds 
8531da177e4SLinus Torvalds 	case PIPE_ISOCHRONOUS:
8541da177e4SLinus Torvalds 		if (urb->dev->speed == USB_SPEED_HIGH)
8551da177e4SLinus Torvalds 			return itd_submit (ehci, urb, mem_flags);
8561da177e4SLinus Torvalds 		else
8571da177e4SLinus Torvalds 			return sitd_submit (ehci, urb, mem_flags);
8581da177e4SLinus Torvalds 	}
8591da177e4SLinus Torvalds }
8601da177e4SLinus Torvalds 
8611da177e4SLinus Torvalds static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh)
8621da177e4SLinus Torvalds {
86307d29b63SAlan Stern 	/* failfast */
864e82cc128SDavid Brownell 	if (!HC_IS_RUNNING(ehci_to_hcd(ehci)->state) && ehci->reclaim)
86507d29b63SAlan Stern 		end_unlink_async(ehci);
86607d29b63SAlan Stern 
86707d29b63SAlan Stern 	/* if it's not linked then there's nothing to do */
86807d29b63SAlan Stern 	if (qh->qh_state != QH_STATE_LINKED)
86907d29b63SAlan Stern 		;
87007d29b63SAlan Stern 
87107d29b63SAlan Stern 	/* defer till later if busy */
87207d29b63SAlan Stern 	else if (ehci->reclaim) {
8731da177e4SLinus Torvalds 		struct ehci_qh		*last;
8741da177e4SLinus Torvalds 
8751da177e4SLinus Torvalds 		for (last = ehci->reclaim;
8761da177e4SLinus Torvalds 				last->reclaim;
8771da177e4SLinus Torvalds 				last = last->reclaim)
8781da177e4SLinus Torvalds 			continue;
8791da177e4SLinus Torvalds 		qh->qh_state = QH_STATE_UNLINK_WAIT;
8801da177e4SLinus Torvalds 		last->reclaim = qh;
8811da177e4SLinus Torvalds 
88207d29b63SAlan Stern 	/* start IAA cycle */
88307d29b63SAlan Stern 	} else
8841da177e4SLinus Torvalds 		start_unlink_async (ehci, qh);
8851da177e4SLinus Torvalds }
8861da177e4SLinus Torvalds 
8871da177e4SLinus Torvalds /* remove from hardware lists
8881da177e4SLinus Torvalds  * completions normally happen asynchronously
8891da177e4SLinus Torvalds  */
8901da177e4SLinus Torvalds 
891e9df41c5SAlan Stern static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
8921da177e4SLinus Torvalds {
8931da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
8941da177e4SLinus Torvalds 	struct ehci_qh		*qh;
8951da177e4SLinus Torvalds 	unsigned long		flags;
896e9df41c5SAlan Stern 	int			rc;
8971da177e4SLinus Torvalds 
8981da177e4SLinus Torvalds 	spin_lock_irqsave (&ehci->lock, flags);
899e9df41c5SAlan Stern 	rc = usb_hcd_check_unlink_urb(hcd, urb, status);
900e9df41c5SAlan Stern 	if (rc)
901e9df41c5SAlan Stern 		goto done;
902e9df41c5SAlan Stern 
9031da177e4SLinus Torvalds 	switch (usb_pipetype (urb->pipe)) {
9041da177e4SLinus Torvalds 	// case PIPE_CONTROL:
9051da177e4SLinus Torvalds 	// case PIPE_BULK:
9061da177e4SLinus Torvalds 	default:
9071da177e4SLinus Torvalds 		qh = (struct ehci_qh *) urb->hcpriv;
9081da177e4SLinus Torvalds 		if (!qh)
9091da177e4SLinus Torvalds 			break;
91007d29b63SAlan Stern 		switch (qh->qh_state) {
91107d29b63SAlan Stern 		case QH_STATE_LINKED:
91207d29b63SAlan Stern 		case QH_STATE_COMPLETING:
9131da177e4SLinus Torvalds 			unlink_async(ehci, qh);
9141da177e4SLinus Torvalds 			break;
91507d29b63SAlan Stern 		case QH_STATE_UNLINK:
91607d29b63SAlan Stern 		case QH_STATE_UNLINK_WAIT:
91707d29b63SAlan Stern 			/* already started */
91807d29b63SAlan Stern 			break;
91907d29b63SAlan Stern 		case QH_STATE_IDLE:
9207a0f0d95SAlan Stern 			/* QH might be waiting for a Clear-TT-Buffer */
9217a0f0d95SAlan Stern 			qh_completions(ehci, qh);
92207d29b63SAlan Stern 			break;
92307d29b63SAlan Stern 		}
92407d29b63SAlan Stern 		break;
9251da177e4SLinus Torvalds 
9261da177e4SLinus Torvalds 	case PIPE_INTERRUPT:
9271da177e4SLinus Torvalds 		qh = (struct ehci_qh *) urb->hcpriv;
9281da177e4SLinus Torvalds 		if (!qh)
9291da177e4SLinus Torvalds 			break;
9301da177e4SLinus Torvalds 		switch (qh->qh_state) {
9311da177e4SLinus Torvalds 		case QH_STATE_LINKED:
9321da177e4SLinus Torvalds 			intr_deschedule (ehci, qh);
9331da177e4SLinus Torvalds 			/* FALL THROUGH */
9341da177e4SLinus Torvalds 		case QH_STATE_IDLE:
9357d12e780SDavid Howells 			qh_completions (ehci, qh);
9361da177e4SLinus Torvalds 			break;
9371da177e4SLinus Torvalds 		default:
9381da177e4SLinus Torvalds 			ehci_dbg (ehci, "bogus qh %p state %d\n",
9391da177e4SLinus Torvalds 					qh, qh->qh_state);
9401da177e4SLinus Torvalds 			goto done;
9411da177e4SLinus Torvalds 		}
9421da177e4SLinus Torvalds 
9431da177e4SLinus Torvalds 		/* reschedule QH iff another request is queued */
9441da177e4SLinus Torvalds 		if (!list_empty (&qh->qtd_list)
9451da177e4SLinus Torvalds 				&& HC_IS_RUNNING (hcd->state)) {
946e1a49142SDavid Brownell 			rc = qh_schedule(ehci, qh);
9471da177e4SLinus Torvalds 
948e1a49142SDavid Brownell 			/* An error here likely indicates handshake failure
949e1a49142SDavid Brownell 			 * or no space left in the schedule.  Neither fault
950e1a49142SDavid Brownell 			 * should happen often ...
951e1a49142SDavid Brownell 			 *
952e1a49142SDavid Brownell 			 * FIXME kill the now-dysfunctional queued urbs
953e1a49142SDavid Brownell 			 */
954e1a49142SDavid Brownell 			if (rc != 0)
955e1a49142SDavid Brownell 				ehci_err(ehci,
956e1a49142SDavid Brownell 					"can't reschedule qh %p, err %d",
957e1a49142SDavid Brownell 					qh, rc);
9581da177e4SLinus Torvalds 		}
9591da177e4SLinus Torvalds 		break;
9601da177e4SLinus Torvalds 
9611da177e4SLinus Torvalds 	case PIPE_ISOCHRONOUS:
9621da177e4SLinus Torvalds 		// itd or sitd ...
9631da177e4SLinus Torvalds 
9641da177e4SLinus Torvalds 		// wait till next completion, do it then.
9651da177e4SLinus Torvalds 		// completion irqs can wait up to 1024 msec,
9661da177e4SLinus Torvalds 		break;
9671da177e4SLinus Torvalds 	}
9681da177e4SLinus Torvalds done:
9691da177e4SLinus Torvalds 	spin_unlock_irqrestore (&ehci->lock, flags);
970e9df41c5SAlan Stern 	return rc;
9711da177e4SLinus Torvalds }
9721da177e4SLinus Torvalds 
9731da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
9741da177e4SLinus Torvalds 
9751da177e4SLinus Torvalds // bulk qh holds the data toggle
9761da177e4SLinus Torvalds 
9771da177e4SLinus Torvalds static void
9781da177e4SLinus Torvalds ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
9791da177e4SLinus Torvalds {
9801da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
9811da177e4SLinus Torvalds 	unsigned long		flags;
9821da177e4SLinus Torvalds 	struct ehci_qh		*qh, *tmp;
9831da177e4SLinus Torvalds 
9841da177e4SLinus Torvalds 	/* ASSERT:  any requests/urbs are being unlinked */
9851da177e4SLinus Torvalds 	/* ASSERT:  nobody can be submitting urbs for this any more */
9861da177e4SLinus Torvalds 
9871da177e4SLinus Torvalds rescan:
9881da177e4SLinus Torvalds 	spin_lock_irqsave (&ehci->lock, flags);
9891da177e4SLinus Torvalds 	qh = ep->hcpriv;
9901da177e4SLinus Torvalds 	if (!qh)
9911da177e4SLinus Torvalds 		goto done;
9921da177e4SLinus Torvalds 
9931da177e4SLinus Torvalds 	/* endpoints can be iso streams.  for now, we don't
9941da177e4SLinus Torvalds 	 * accelerate iso completions ... so spin a while.
9951da177e4SLinus Torvalds 	 */
9963807e26dSAlek Du 	if (qh->hw->hw_info1 == 0) {
9971da177e4SLinus Torvalds 		ehci_vdbg (ehci, "iso delay\n");
9981da177e4SLinus Torvalds 		goto idle_timeout;
9991da177e4SLinus Torvalds 	}
10001da177e4SLinus Torvalds 
10011da177e4SLinus Torvalds 	if (!HC_IS_RUNNING (hcd->state))
10021da177e4SLinus Torvalds 		qh->qh_state = QH_STATE_IDLE;
10031da177e4SLinus Torvalds 	switch (qh->qh_state) {
10041da177e4SLinus Torvalds 	case QH_STATE_LINKED:
10051da177e4SLinus Torvalds 		for (tmp = ehci->async->qh_next.qh;
10061da177e4SLinus Torvalds 				tmp && tmp != qh;
10071da177e4SLinus Torvalds 				tmp = tmp->qh_next.qh)
10081da177e4SLinus Torvalds 			continue;
10091da177e4SLinus Torvalds 		/* periodic qh self-unlinks on empty */
10101da177e4SLinus Torvalds 		if (!tmp)
10111da177e4SLinus Torvalds 			goto nogood;
10121da177e4SLinus Torvalds 		unlink_async (ehci, qh);
10131da177e4SLinus Torvalds 		/* FALL THROUGH */
10141da177e4SLinus Torvalds 	case QH_STATE_UNLINK:		/* wait for hw to finish? */
101507d29b63SAlan Stern 	case QH_STATE_UNLINK_WAIT:
10161da177e4SLinus Torvalds idle_timeout:
10171da177e4SLinus Torvalds 		spin_unlock_irqrestore (&ehci->lock, flags);
101822c43863SNishanth Aravamudan 		schedule_timeout_uninterruptible(1);
10191da177e4SLinus Torvalds 		goto rescan;
10201da177e4SLinus Torvalds 	case QH_STATE_IDLE:		/* fully unlinked */
1021914b7012SAlan Stern 		if (qh->clearing_tt)
1022914b7012SAlan Stern 			goto idle_timeout;
10231da177e4SLinus Torvalds 		if (list_empty (&qh->qtd_list)) {
10241da177e4SLinus Torvalds 			qh_put (qh);
10251da177e4SLinus Torvalds 			break;
10261da177e4SLinus Torvalds 		}
10271da177e4SLinus Torvalds 		/* else FALL THROUGH */
10281da177e4SLinus Torvalds 	default:
10291da177e4SLinus Torvalds nogood:
10301da177e4SLinus Torvalds 		/* caller was supposed to have unlinked any requests;
10311da177e4SLinus Torvalds 		 * that's not our job.  just leak this memory.
10321da177e4SLinus Torvalds 		 */
10331da177e4SLinus Torvalds 		ehci_err (ehci, "qh %p (#%02x) state %d%s\n",
10341da177e4SLinus Torvalds 			qh, ep->desc.bEndpointAddress, qh->qh_state,
10351da177e4SLinus Torvalds 			list_empty (&qh->qtd_list) ? "" : "(has tds)");
10361da177e4SLinus Torvalds 		break;
10371da177e4SLinus Torvalds 	}
10381da177e4SLinus Torvalds 	ep->hcpriv = NULL;
10391da177e4SLinus Torvalds done:
10401da177e4SLinus Torvalds 	spin_unlock_irqrestore (&ehci->lock, flags);
10411da177e4SLinus Torvalds 	return;
10421da177e4SLinus Torvalds }
10431da177e4SLinus Torvalds 
1044b18ffd49SAlan Stern static void
1045b18ffd49SAlan Stern ehci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep)
1046b18ffd49SAlan Stern {
1047b18ffd49SAlan Stern 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
1048b18ffd49SAlan Stern 	struct ehci_qh		*qh;
1049b18ffd49SAlan Stern 	int			eptype = usb_endpoint_type(&ep->desc);
1050a455212dSAlan Stern 	int			epnum = usb_endpoint_num(&ep->desc);
1051a455212dSAlan Stern 	int			is_out = usb_endpoint_dir_out(&ep->desc);
1052a455212dSAlan Stern 	unsigned long		flags;
1053b18ffd49SAlan Stern 
1054b18ffd49SAlan Stern 	if (eptype != USB_ENDPOINT_XFER_BULK && eptype != USB_ENDPOINT_XFER_INT)
1055b18ffd49SAlan Stern 		return;
1056b18ffd49SAlan Stern 
1057a455212dSAlan Stern 	spin_lock_irqsave(&ehci->lock, flags);
1058b18ffd49SAlan Stern 	qh = ep->hcpriv;
1059b18ffd49SAlan Stern 
1060b18ffd49SAlan Stern 	/* For Bulk and Interrupt endpoints we maintain the toggle state
1061b18ffd49SAlan Stern 	 * in the hardware; the toggle bits in udev aren't used at all.
1062b18ffd49SAlan Stern 	 * When an endpoint is reset by usb_clear_halt() we must reset
1063b18ffd49SAlan Stern 	 * the toggle bit in the QH.
1064b18ffd49SAlan Stern 	 */
1065b18ffd49SAlan Stern 	if (qh) {
1066a455212dSAlan Stern 		usb_settoggle(qh->dev, epnum, is_out, 0);
1067b18ffd49SAlan Stern 		if (!list_empty(&qh->qtd_list)) {
1068b18ffd49SAlan Stern 			WARN_ONCE(1, "clear_halt for a busy endpoint\n");
1069a455212dSAlan Stern 		} else if (qh->qh_state == QH_STATE_LINKED) {
1070a455212dSAlan Stern 
1071a455212dSAlan Stern 			/* The toggle value in the QH can't be updated
1072a455212dSAlan Stern 			 * while the QH is active.  Unlink it now;
1073a455212dSAlan Stern 			 * re-linking will call qh_refresh().
1074b18ffd49SAlan Stern 			 */
1075b18ffd49SAlan Stern 			if (eptype == USB_ENDPOINT_XFER_BULK) {
1076b18ffd49SAlan Stern 				unlink_async(ehci, qh);
1077b18ffd49SAlan Stern 			} else {
1078b18ffd49SAlan Stern 				intr_deschedule(ehci, qh);
1079b18ffd49SAlan Stern 				(void) qh_schedule(ehci, qh);
1080b18ffd49SAlan Stern 			}
1081b18ffd49SAlan Stern 		}
1082b18ffd49SAlan Stern 	}
1083a455212dSAlan Stern 	spin_unlock_irqrestore(&ehci->lock, flags);
1084b18ffd49SAlan Stern }
1085b18ffd49SAlan Stern 
10867ff71d6aSMatt Porter static int ehci_get_frame (struct usb_hcd *hcd)
10877ff71d6aSMatt Porter {
10887ff71d6aSMatt Porter 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
1089083522d7SBenjamin Herrenschmidt 	return (ehci_readl(ehci, &ehci->regs->frame_index) >> 3) %
1090083522d7SBenjamin Herrenschmidt 		ehci->periodic_size;
10917ff71d6aSMatt Porter }
10921da177e4SLinus Torvalds 
10931da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
10941da177e4SLinus Torvalds 
10952b70f073SAlan Stern MODULE_DESCRIPTION(DRIVER_DESC);
10961da177e4SLinus Torvalds MODULE_AUTHOR (DRIVER_AUTHOR);
10971da177e4SLinus Torvalds MODULE_LICENSE ("GPL");
10981da177e4SLinus Torvalds 
10997ff71d6aSMatt Porter #ifdef CONFIG_PCI
11007ff71d6aSMatt Porter #include "ehci-pci.c"
110101cced25SKumar Gala #define	PCI_DRIVER		ehci_pci_driver
11027ff71d6aSMatt Porter #endif
11031da177e4SLinus Torvalds 
1104ba02978aSLi Yang #ifdef CONFIG_USB_EHCI_FSL
110580cb9aeeSRandy Vinson #include "ehci-fsl.c"
110601cced25SKumar Gala #define	PLATFORM_DRIVER		ehci_fsl_driver
110780cb9aeeSRandy Vinson #endif
110880cb9aeeSRandy Vinson 
1109dfbaa7d8SRalf Baechle #ifdef CONFIG_SOC_AU1200
111076fa9a24SJordan Crouse #include "ehci-au1xxx.c"
111101cced25SKumar Gala #define	PLATFORM_DRIVER		ehci_hcd_au1xxx_driver
111276fa9a24SJordan Crouse #endif
111376fa9a24SJordan Crouse 
1114ad75a410SGeoff Levand #ifdef CONFIG_PPC_PS3
1115ad75a410SGeoff Levand #include "ehci-ps3.c"
11167a4eb7fdSGeoff Levand #define	PS3_SYSTEM_BUS_DRIVER	ps3_ehci_driver
1117ad75a410SGeoff Levand #endif
1118ad75a410SGeoff Levand 
1119da0e8fb0SValentine Barshak #ifdef CONFIG_USB_EHCI_HCD_PPC_OF
1120da0e8fb0SValentine Barshak #include "ehci-ppc-of.c"
1121da0e8fb0SValentine Barshak #define OF_PLATFORM_DRIVER	ehci_hcd_ppc_of_driver
1122da0e8fb0SValentine Barshak #endif
1123da0e8fb0SValentine Barshak 
1124705a7521SLennert Buytenhek #ifdef CONFIG_PLAT_ORION
1125e96ffe2fSTzachi Perelstein #include "ehci-orion.c"
1126e96ffe2fSTzachi Perelstein #define	PLATFORM_DRIVER		ehci_orion_driver
1127e96ffe2fSTzachi Perelstein #endif
1128e96ffe2fSTzachi Perelstein 
112991bc4d31SVladimir Barinov #ifdef CONFIG_ARCH_IXP4XX
113091bc4d31SVladimir Barinov #include "ehci-ixp4xx.c"
113191bc4d31SVladimir Barinov #define	PLATFORM_DRIVER		ixp4xx_ehci_driver
113291bc4d31SVladimir Barinov #endif
113391bc4d31SVladimir Barinov 
1134586dfc8cSWan ZongShun #ifdef CONFIG_USB_W90X900_EHCI
1135586dfc8cSWan ZongShun #include "ehci-w90x900.c"
1136586dfc8cSWan ZongShun #define	PLATFORM_DRIVER		ehci_hcd_w90x900_driver
1137586dfc8cSWan ZongShun #endif
1138586dfc8cSWan ZongShun 
1139ad75a410SGeoff Levand #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
1140c6dd2e61SAnton Vorontsov     !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER)
11417ff71d6aSMatt Porter #error "missing bus glue for ehci-hcd"
11427ff71d6aSMatt Porter #endif
114301cced25SKumar Gala 
114401cced25SKumar Gala static int __init ehci_hcd_init(void)
114501cced25SKumar Gala {
114601cced25SKumar Gala 	int retval = 0;
114701cced25SKumar Gala 
11482b70f073SAlan Stern 	if (usb_disabled())
11492b70f073SAlan Stern 		return -ENODEV;
11502b70f073SAlan Stern 
11512b70f073SAlan Stern 	printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
11529beeee65SAlan Stern 	set_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
11539beeee65SAlan Stern 	if (test_bit(USB_UHCI_LOADED, &usb_hcds_loaded) ||
11549beeee65SAlan Stern 			test_bit(USB_OHCI_LOADED, &usb_hcds_loaded))
11559beeee65SAlan Stern 		printk(KERN_WARNING "Warning! ehci_hcd should always be loaded"
11569beeee65SAlan Stern 				" before uhci_hcd and ohci_hcd, not after\n");
11579beeee65SAlan Stern 
115801cced25SKumar Gala 	pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
115901cced25SKumar Gala 		 hcd_name,
116001cced25SKumar Gala 		 sizeof(struct ehci_qh), sizeof(struct ehci_qtd),
116101cced25SKumar Gala 		 sizeof(struct ehci_itd), sizeof(struct ehci_sitd));
116201cced25SKumar Gala 
1163694cc208STony Jones #ifdef DEBUG
116408f4e586SGreg Kroah-Hartman 	ehci_debug_root = debugfs_create_dir("ehci", usb_debug_root);
11659beeee65SAlan Stern 	if (!ehci_debug_root) {
11669beeee65SAlan Stern 		retval = -ENOENT;
11679beeee65SAlan Stern 		goto err_debug;
11689beeee65SAlan Stern 	}
1169694cc208STony Jones #endif
1170694cc208STony Jones 
117101cced25SKumar Gala #ifdef PLATFORM_DRIVER
117201cced25SKumar Gala 	retval = platform_driver_register(&PLATFORM_DRIVER);
1173da0e8fb0SValentine Barshak 	if (retval < 0)
1174da0e8fb0SValentine Barshak 		goto clean0;
117501cced25SKumar Gala #endif
117601cced25SKumar Gala 
117701cced25SKumar Gala #ifdef PCI_DRIVER
117801cced25SKumar Gala 	retval = pci_register_driver(&PCI_DRIVER);
1179da0e8fb0SValentine Barshak 	if (retval < 0)
1180da0e8fb0SValentine Barshak 		goto clean1;
1181ad75a410SGeoff Levand #endif
1182ad75a410SGeoff Levand 
1183ad75a410SGeoff Levand #ifdef PS3_SYSTEM_BUS_DRIVER
11847a4eb7fdSGeoff Levand 	retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
1185da0e8fb0SValentine Barshak 	if (retval < 0)
1186da0e8fb0SValentine Barshak 		goto clean2;
1187da0e8fb0SValentine Barshak #endif
1188da0e8fb0SValentine Barshak 
1189da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER
1190da0e8fb0SValentine Barshak 	retval = of_register_platform_driver(&OF_PLATFORM_DRIVER);
1191da0e8fb0SValentine Barshak 	if (retval < 0)
1192da0e8fb0SValentine Barshak 		goto clean3;
1193da0e8fb0SValentine Barshak #endif
1194da0e8fb0SValentine Barshak 	return retval;
1195da0e8fb0SValentine Barshak 
1196da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER
1197da0e8fb0SValentine Barshak 	/* of_unregister_platform_driver(&OF_PLATFORM_DRIVER); */
1198da0e8fb0SValentine Barshak clean3:
1199da0e8fb0SValentine Barshak #endif
1200da0e8fb0SValentine Barshak #ifdef PS3_SYSTEM_BUS_DRIVER
1201da0e8fb0SValentine Barshak 	ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1202da0e8fb0SValentine Barshak clean2:
1203da0e8fb0SValentine Barshak #endif
1204da0e8fb0SValentine Barshak #ifdef PCI_DRIVER
1205da0e8fb0SValentine Barshak 	pci_unregister_driver(&PCI_DRIVER);
1206da0e8fb0SValentine Barshak clean1:
1207da0e8fb0SValentine Barshak #endif
1208da0e8fb0SValentine Barshak #ifdef PLATFORM_DRIVER
1209da0e8fb0SValentine Barshak 	platform_driver_unregister(&PLATFORM_DRIVER);
1210da0e8fb0SValentine Barshak clean0:
1211da0e8fb0SValentine Barshak #endif
1212694cc208STony Jones #ifdef DEBUG
1213694cc208STony Jones 	debugfs_remove(ehci_debug_root);
1214694cc208STony Jones 	ehci_debug_root = NULL;
12159beeee65SAlan Stern err_debug:
1216a9b6148dSLinus Torvalds #endif
12179beeee65SAlan Stern 	clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
121801cced25SKumar Gala 	return retval;
121901cced25SKumar Gala }
122001cced25SKumar Gala module_init(ehci_hcd_init);
122101cced25SKumar Gala 
122201cced25SKumar Gala static void __exit ehci_hcd_cleanup(void)
122301cced25SKumar Gala {
1224da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER
1225da0e8fb0SValentine Barshak 	of_unregister_platform_driver(&OF_PLATFORM_DRIVER);
1226da0e8fb0SValentine Barshak #endif
122701cced25SKumar Gala #ifdef PLATFORM_DRIVER
122801cced25SKumar Gala 	platform_driver_unregister(&PLATFORM_DRIVER);
122901cced25SKumar Gala #endif
123001cced25SKumar Gala #ifdef PCI_DRIVER
123101cced25SKumar Gala 	pci_unregister_driver(&PCI_DRIVER);
123201cced25SKumar Gala #endif
1233ad75a410SGeoff Levand #ifdef PS3_SYSTEM_BUS_DRIVER
12347a4eb7fdSGeoff Levand 	ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1235ad75a410SGeoff Levand #endif
1236694cc208STony Jones #ifdef DEBUG
1237694cc208STony Jones 	debugfs_remove(ehci_debug_root);
1238694cc208STony Jones #endif
12399beeee65SAlan Stern 	clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
124001cced25SKumar Gala }
124101cced25SKumar Gala module_exit(ehci_hcd_cleanup);
124201cced25SKumar Gala 
1243