xref: /linux/drivers/usb/host/ehci-hcd.c (revision b8efdafb4005a79ab2305f8af31025d49292d4cf)
11da177e4SLinus Torvalds /*
2578333abSAlan Stern  * Enhanced Host Controller Interface (EHCI) driver for USB.
3578333abSAlan Stern  *
4578333abSAlan Stern  * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5578333abSAlan Stern  *
61da177e4SLinus Torvalds  * Copyright (c) 2000-2004 by David Brownell
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  * This program is free software; you can redistribute it and/or modify it
91da177e4SLinus Torvalds  * under the terms of the GNU General Public License as published by the
101da177e4SLinus Torvalds  * Free Software Foundation; either version 2 of the License, or (at your
111da177e4SLinus Torvalds  * option) any later version.
121da177e4SLinus Torvalds  *
131da177e4SLinus Torvalds  * This program is distributed in the hope that it will be useful, but
141da177e4SLinus Torvalds  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
151da177e4SLinus Torvalds  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
161da177e4SLinus Torvalds  * for more details.
171da177e4SLinus Torvalds  *
181da177e4SLinus Torvalds  * You should have received a copy of the GNU General Public License
191da177e4SLinus Torvalds  * along with this program; if not, write to the Free Software Foundation,
201da177e4SLinus Torvalds  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
211da177e4SLinus Torvalds  */
221da177e4SLinus Torvalds 
231da177e4SLinus Torvalds #include <linux/module.h>
241da177e4SLinus Torvalds #include <linux/pci.h>
251da177e4SLinus Torvalds #include <linux/dmapool.h>
261da177e4SLinus Torvalds #include <linux/kernel.h>
271da177e4SLinus Torvalds #include <linux/delay.h>
281da177e4SLinus Torvalds #include <linux/ioport.h>
291da177e4SLinus Torvalds #include <linux/sched.h>
303c04e20eSMing Lei #include <linux/vmalloc.h>
311da177e4SLinus Torvalds #include <linux/errno.h>
321da177e4SLinus Torvalds #include <linux/init.h>
33d58b4bccSAlan Stern #include <linux/hrtimer.h>
341da177e4SLinus Torvalds #include <linux/list.h>
351da177e4SLinus Torvalds #include <linux/interrupt.h>
361da177e4SLinus Torvalds #include <linux/usb.h>
3727729aadSEric Lescouet #include <linux/usb/hcd.h>
381da177e4SLinus Torvalds #include <linux/moduleparam.h>
391da177e4SLinus Torvalds #include <linux/dma-mapping.h>
40694cc208STony Jones #include <linux/debugfs.h>
415a0e3ad6STejun Heo #include <linux/slab.h>
421da177e4SLinus Torvalds 
431da177e4SLinus Torvalds #include <asm/byteorder.h>
441da177e4SLinus Torvalds #include <asm/io.h>
451da177e4SLinus Torvalds #include <asm/irq.h>
461da177e4SLinus Torvalds #include <asm/unaligned.h>
471da177e4SLinus Torvalds 
48df7c1ca2SGeoff Levand #if defined(CONFIG_PPC_PS3)
49df7c1ca2SGeoff Levand #include <asm/firmware.h>
50df7c1ca2SGeoff Levand #endif
51df7c1ca2SGeoff Levand 
521da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
531da177e4SLinus Torvalds 
541da177e4SLinus Torvalds /*
551da177e4SLinus Torvalds  * EHCI hc_driver implementation ... experimental, incomplete.
561da177e4SLinus Torvalds  * Based on the final 1.0 register interface specification.
571da177e4SLinus Torvalds  *
581da177e4SLinus Torvalds  * USB 2.0 shows up in upcoming www.pcmcia.org technology.
591da177e4SLinus Torvalds  * First was PCMCIA, like ISA; then CardBus, which is PCI.
601da177e4SLinus Torvalds  * Next comes "CardBay", using USB 2.0 signals.
611da177e4SLinus Torvalds  *
621da177e4SLinus Torvalds  * Contains additional contributions by Brad Hards, Rory Bolt, and others.
631da177e4SLinus Torvalds  * Special thanks to Intel and VIA for providing host controllers to
641da177e4SLinus Torvalds  * test this driver on, and Cypress (including In-System Design) for
651da177e4SLinus Torvalds  * providing early devices for those host controllers to talk to!
661da177e4SLinus Torvalds  */
671da177e4SLinus Torvalds 
681da177e4SLinus Torvalds #define DRIVER_AUTHOR "David Brownell"
691da177e4SLinus Torvalds #define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
701da177e4SLinus Torvalds 
711da177e4SLinus Torvalds static const char	hcd_name [] = "ehci_hcd";
721da177e4SLinus Torvalds 
731da177e4SLinus Torvalds 
749776afc8SDavid Brownell #undef VERBOSE_DEBUG
751da177e4SLinus Torvalds #undef EHCI_URB_TRACE
761da177e4SLinus Torvalds 
771da177e4SLinus Torvalds /* magic numbers that can affect system performance */
781da177e4SLinus Torvalds #define	EHCI_TUNE_CERR		3	/* 0-3 qtd retries; 0 == don't stop */
791da177e4SLinus Torvalds #define	EHCI_TUNE_RL_HS		4	/* nak throttle; see 4.9 */
801da177e4SLinus Torvalds #define	EHCI_TUNE_RL_TT		0
811da177e4SLinus Torvalds #define	EHCI_TUNE_MULT_HS	1	/* 1-3 transactions/uframe; 4.10.3 */
821da177e4SLinus Torvalds #define	EHCI_TUNE_MULT_TT	1
83ffda0803SAlan Stern /*
84ffda0803SAlan Stern  * Some drivers think it's safe to schedule isochronous transfers more than
85ffda0803SAlan Stern  * 256 ms into the future (partly as a result of an old bug in the scheduling
86ffda0803SAlan Stern  * code).  In an attempt to avoid trouble, we will use a minimum scheduling
87ffda0803SAlan Stern  * length of 512 frames instead of 256.
88ffda0803SAlan Stern  */
89ffda0803SAlan Stern #define	EHCI_TUNE_FLS		1	/* (medium) 512-frame schedule */
901da177e4SLinus Torvalds 
911da177e4SLinus Torvalds /* Initial IRQ latency:  faster than hw default */
921da177e4SLinus Torvalds static int log2_irq_thresh = 0;		// 0 to 6
931da177e4SLinus Torvalds module_param (log2_irq_thresh, int, S_IRUGO);
941da177e4SLinus Torvalds MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
951da177e4SLinus Torvalds 
961da177e4SLinus Torvalds /* initial park setting:  slower than hw default */
971da177e4SLinus Torvalds static unsigned park = 0;
981da177e4SLinus Torvalds module_param (park, uint, S_IRUGO);
991da177e4SLinus Torvalds MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
1001da177e4SLinus Torvalds 
10193f1a47cSDavid Brownell /* for flakey hardware, ignore overcurrent indicators */
10290ab5ee9SRusty Russell static bool ignore_oc = 0;
10393f1a47cSDavid Brownell module_param (ignore_oc, bool, S_IRUGO);
10493f1a47cSDavid Brownell MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
10593f1a47cSDavid Brownell 
1061da177e4SLinus Torvalds #define	INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT)
1071da177e4SLinus Torvalds 
1081da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
1091da177e4SLinus Torvalds 
1101da177e4SLinus Torvalds #include "ehci.h"
111ad93562bSAndiry Xu #include "pci-quirks.h"
1121da177e4SLinus Torvalds 
113b35c5009SAlan Stern static void compute_tt_budget(u8 budget_table[EHCI_BANDWIDTH_SIZE],
114b35c5009SAlan Stern 		struct ehci_tt *tt);
115b35c5009SAlan Stern 
116acc08503SAlan Stern /*
117acc08503SAlan Stern  * The MosChip MCS9990 controller updates its microframe counter
118acc08503SAlan Stern  * a little before the frame counter, and occasionally we will read
119acc08503SAlan Stern  * the invalid intermediate value.  Avoid problems by checking the
120acc08503SAlan Stern  * microframe number (the low-order 3 bits); if they are 0 then
121acc08503SAlan Stern  * re-read the register to get the correct value.
122acc08503SAlan Stern  */
123acc08503SAlan Stern static unsigned ehci_moschip_read_frame_index(struct ehci_hcd *ehci)
124acc08503SAlan Stern {
125acc08503SAlan Stern 	unsigned uf;
126acc08503SAlan Stern 
127acc08503SAlan Stern 	uf = ehci_readl(ehci, &ehci->regs->frame_index);
128acc08503SAlan Stern 	if (unlikely((uf & 7) == 0))
129acc08503SAlan Stern 		uf = ehci_readl(ehci, &ehci->regs->frame_index);
130acc08503SAlan Stern 	return uf;
131acc08503SAlan Stern }
132acc08503SAlan Stern 
133acc08503SAlan Stern static inline unsigned ehci_read_frame_index(struct ehci_hcd *ehci)
134acc08503SAlan Stern {
135acc08503SAlan Stern 	if (ehci->frame_index_bug)
136acc08503SAlan Stern 		return ehci_moschip_read_frame_index(ehci);
137acc08503SAlan Stern 	return ehci_readl(ehci, &ehci->regs->frame_index);
138acc08503SAlan Stern }
139acc08503SAlan Stern 
140acc08503SAlan Stern #include "ehci-dbg.c"
141acc08503SAlan Stern 
1421da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
1431da177e4SLinus Torvalds 
1441da177e4SLinus Torvalds /*
1452f3a6b86SManjunath Goudar  * ehci_handshake - spin reading hc until handshake completes or fails
1461da177e4SLinus Torvalds  * @ptr: address of hc register to be read
1471da177e4SLinus Torvalds  * @mask: bits to look at in result of read
1481da177e4SLinus Torvalds  * @done: value of those bits when handshake succeeds
1491da177e4SLinus Torvalds  * @usec: timeout in microseconds
1501da177e4SLinus Torvalds  *
1511da177e4SLinus Torvalds  * Returns negative errno, or zero on success
1521da177e4SLinus Torvalds  *
1531da177e4SLinus Torvalds  * Success happens when the "mask" bits have the specified value (hardware
1541da177e4SLinus Torvalds  * handshake done).  There are two failure modes:  "usec" have passed (major
1551da177e4SLinus Torvalds  * hardware flakeout), or the register reads as all-ones (hardware removed).
1561da177e4SLinus Torvalds  *
1571da177e4SLinus Torvalds  * That last failure should_only happen in cases like physical cardbus eject
1581da177e4SLinus Torvalds  * before driver shutdown. But it also seems to be caused by bugs in cardbus
1591da177e4SLinus Torvalds  * bridge shutdown:  shutting down the bridge before the devices using it.
1601da177e4SLinus Torvalds  */
1612f3a6b86SManjunath Goudar int ehci_handshake(struct ehci_hcd *ehci, void __iomem *ptr,
162083522d7SBenjamin Herrenschmidt 		   u32 mask, u32 done, int usec)
1631da177e4SLinus Torvalds {
1641da177e4SLinus Torvalds 	u32	result;
1651da177e4SLinus Torvalds 
1661da177e4SLinus Torvalds 	do {
167083522d7SBenjamin Herrenschmidt 		result = ehci_readl(ehci, ptr);
1681da177e4SLinus Torvalds 		if (result == ~(u32)0)		/* card removed */
1691da177e4SLinus Torvalds 			return -ENODEV;
1701da177e4SLinus Torvalds 		result &= mask;
1711da177e4SLinus Torvalds 		if (result == done)
1721da177e4SLinus Torvalds 			return 0;
1731da177e4SLinus Torvalds 		udelay (1);
1741da177e4SLinus Torvalds 		usec--;
1751da177e4SLinus Torvalds 	} while (usec > 0);
1761da177e4SLinus Torvalds 	return -ETIMEDOUT;
1771da177e4SLinus Torvalds }
1782f3a6b86SManjunath Goudar EXPORT_SYMBOL_GPL(ehci_handshake);
1791da177e4SLinus Torvalds 
18065fd4272SMatthieu CASTET /* check TDI/ARC silicon is in host mode */
18165fd4272SMatthieu CASTET static int tdi_in_host_mode (struct ehci_hcd *ehci)
18265fd4272SMatthieu CASTET {
18365fd4272SMatthieu CASTET 	u32		tmp;
18465fd4272SMatthieu CASTET 
185a46af4ebSAlan Stern 	tmp = ehci_readl(ehci, &ehci->regs->usbmode);
18665fd4272SMatthieu CASTET 	return (tmp & 3) == USBMODE_CM_HC;
18765fd4272SMatthieu CASTET }
18865fd4272SMatthieu CASTET 
189c4f34764SAlan Stern /*
190c4f34764SAlan Stern  * Force HC to halt state from unknown (EHCI spec section 2.3).
191c4f34764SAlan Stern  * Must be called with interrupts enabled and the lock not held.
192c4f34764SAlan Stern  */
1931da177e4SLinus Torvalds static int ehci_halt (struct ehci_hcd *ehci)
1941da177e4SLinus Torvalds {
195c4f34764SAlan Stern 	u32	temp;
196c4f34764SAlan Stern 
197c4f34764SAlan Stern 	spin_lock_irq(&ehci->lock);
1981da177e4SLinus Torvalds 
19972f30b6fSDavid Brownell 	/* disable any irqs left enabled by previous code */
200083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, 0, &ehci->regs->intr_enable);
20172f30b6fSDavid Brownell 
202c4f34764SAlan Stern 	if (ehci_is_TDI(ehci) && !tdi_in_host_mode(ehci)) {
203c4f34764SAlan Stern 		spin_unlock_irq(&ehci->lock);
20465fd4272SMatthieu CASTET 		return 0;
20565fd4272SMatthieu CASTET 	}
20665fd4272SMatthieu CASTET 
2073d9545ccSAlan Stern 	/*
2083d9545ccSAlan Stern 	 * This routine gets called during probe before ehci->command
2093d9545ccSAlan Stern 	 * has been initialized, so we can't rely on its value.
2103d9545ccSAlan Stern 	 */
2113d9545ccSAlan Stern 	ehci->command &= ~CMD_RUN;
212083522d7SBenjamin Herrenschmidt 	temp = ehci_readl(ehci, &ehci->regs->command);
2133d9545ccSAlan Stern 	temp &= ~(CMD_RUN | CMD_IAAD);
214083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, temp, &ehci->regs->command);
215c4f34764SAlan Stern 
216c4f34764SAlan Stern 	spin_unlock_irq(&ehci->lock);
217c4f34764SAlan Stern 	synchronize_irq(ehci_to_hcd(ehci)->irq);
218c4f34764SAlan Stern 
2192f3a6b86SManjunath Goudar 	return ehci_handshake(ehci, &ehci->regs->status,
220083522d7SBenjamin Herrenschmidt 			  STS_HALT, STS_HALT, 16 * 125);
2211da177e4SLinus Torvalds }
2221da177e4SLinus Torvalds 
2231da177e4SLinus Torvalds /* put TDI/ARC silicon into EHCI mode */
2241da177e4SLinus Torvalds static void tdi_reset (struct ehci_hcd *ehci)
2251da177e4SLinus Torvalds {
2261da177e4SLinus Torvalds 	u32		tmp;
2271da177e4SLinus Torvalds 
228a46af4ebSAlan Stern 	tmp = ehci_readl(ehci, &ehci->regs->usbmode);
229d23a1377SVladimir Barinov 	tmp |= USBMODE_CM_HC;
230d23a1377SVladimir Barinov 	/* The default byte access to MMR space is LE after
231d23a1377SVladimir Barinov 	 * controller reset. Set the required endian mode
232d23a1377SVladimir Barinov 	 * for transfer buffers to match the host microprocessor
233d23a1377SVladimir Barinov 	 */
234d23a1377SVladimir Barinov 	if (ehci_big_endian_mmio(ehci))
235d23a1377SVladimir Barinov 		tmp |= USBMODE_BE;
236a46af4ebSAlan Stern 	ehci_writel(ehci, tmp, &ehci->regs->usbmode);
2371da177e4SLinus Torvalds }
2381da177e4SLinus Torvalds 
239c4f34764SAlan Stern /*
240c4f34764SAlan Stern  * Reset a non-running (STS_HALT == 1) controller.
241c4f34764SAlan Stern  * Must be called with interrupts enabled and the lock not held.
242c4f34764SAlan Stern  */
2431da177e4SLinus Torvalds static int ehci_reset (struct ehci_hcd *ehci)
2441da177e4SLinus Torvalds {
2451da177e4SLinus Torvalds 	int	retval;
246083522d7SBenjamin Herrenschmidt 	u32	command = ehci_readl(ehci, &ehci->regs->command);
2471da177e4SLinus Torvalds 
2488d053c79SJason Wessel 	/* If the EHCI debug controller is active, special care must be
2498d053c79SJason Wessel 	 * taken before and after a host controller reset */
2509fa5780bSJan Beulich 	if (ehci->debug && !dbgp_reset_prep(ehci_to_hcd(ehci)))
2518d053c79SJason Wessel 		ehci->debug = NULL;
2528d053c79SJason Wessel 
2531da177e4SLinus Torvalds 	command |= CMD_RESET;
2541da177e4SLinus Torvalds 	dbg_cmd (ehci, "reset", command);
255083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, command, &ehci->regs->command);
256e8799906SAlan Stern 	ehci->rh_state = EHCI_RH_HALTED;
2571da177e4SLinus Torvalds 	ehci->next_statechange = jiffies;
2582f3a6b86SManjunath Goudar 	retval = ehci_handshake(ehci, &ehci->regs->command,
259083522d7SBenjamin Herrenschmidt 			    CMD_RESET, 0, 250 * 1000);
2601da177e4SLinus Torvalds 
261331ac6b2SAlek Du 	if (ehci->has_hostpc) {
262331ac6b2SAlek Du 		ehci_writel(ehci, USBMODE_EX_HC | USBMODE_EX_VBPS,
263a46af4ebSAlan Stern 				&ehci->regs->usbmode_ex);
264a46af4ebSAlan Stern 		ehci_writel(ehci, TXFIFO_DEFAULT, &ehci->regs->txfill_tuning);
265331ac6b2SAlek Du 	}
2661da177e4SLinus Torvalds 	if (retval)
2671da177e4SLinus Torvalds 		return retval;
2681da177e4SLinus Torvalds 
2691da177e4SLinus Torvalds 	if (ehci_is_TDI(ehci))
2701da177e4SLinus Torvalds 		tdi_reset (ehci);
2711da177e4SLinus Torvalds 
2728d053c79SJason Wessel 	if (ehci->debug)
2739fa5780bSJan Beulich 		dbgp_external_startup(ehci_to_hcd(ehci));
2748d053c79SJason Wessel 
275a448e4dcSAlan Stern 	ehci->port_c_suspend = ehci->suspended_ports =
276a448e4dcSAlan Stern 			ehci->resuming_ports = 0;
2771da177e4SLinus Torvalds 	return retval;
2781da177e4SLinus Torvalds }
2791da177e4SLinus Torvalds 
280c4f34764SAlan Stern /*
281c4f34764SAlan Stern  * Idle the controller (turn off the schedules).
282c4f34764SAlan Stern  * Must be called with interrupts enabled and the lock not held.
283c4f34764SAlan Stern  */
2841da177e4SLinus Torvalds static void ehci_quiesce (struct ehci_hcd *ehci)
2851da177e4SLinus Torvalds {
2861da177e4SLinus Torvalds 	u32	temp;
2871da177e4SLinus Torvalds 
288e8799906SAlan Stern 	if (ehci->rh_state != EHCI_RH_RUNNING)
289c0c53dbcSAlan Stern 		return;
2901da177e4SLinus Torvalds 
2911da177e4SLinus Torvalds 	/* wait for any schedule enables/disables to take effect */
2923d9545ccSAlan Stern 	temp = (ehci->command << 10) & (STS_ASS | STS_PSS);
2932f3a6b86SManjunath Goudar 	ehci_handshake(ehci, &ehci->regs->status, STS_ASS | STS_PSS, temp,
2942f3a6b86SManjunath Goudar 			16 * 125);
2951da177e4SLinus Torvalds 
2961da177e4SLinus Torvalds 	/* then disable anything that's still active */
297c4f34764SAlan Stern 	spin_lock_irq(&ehci->lock);
2983d9545ccSAlan Stern 	ehci->command &= ~(CMD_ASE | CMD_PSE);
2993d9545ccSAlan Stern 	ehci_writel(ehci, ehci->command, &ehci->regs->command);
300c4f34764SAlan Stern 	spin_unlock_irq(&ehci->lock);
3011da177e4SLinus Torvalds 
3021da177e4SLinus Torvalds 	/* hardware can take 16 microframes to turn off ... */
3032f3a6b86SManjunath Goudar 	ehci_handshake(ehci, &ehci->regs->status, STS_ASS | STS_PSS, 0,
3042f3a6b86SManjunath Goudar 			16 * 125);
3051da177e4SLinus Torvalds }
3061da177e4SLinus Torvalds 
3071da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
3081da177e4SLinus Torvalds 
30907d29b63SAlan Stern static void end_unlink_async(struct ehci_hcd *ehci);
31032830f20SAlan Stern static void unlink_empty_async(struct ehci_hcd *ehci);
3112a40f324SAlan Stern static void unlink_empty_async_suspended(struct ehci_hcd *ehci);
3127d12e780SDavid Howells static void ehci_work(struct ehci_hcd *ehci);
313df202255SAlan Stern static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh);
314df202255SAlan Stern static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh);
3151da177e4SLinus Torvalds 
316d58b4bccSAlan Stern #include "ehci-timer.c"
3171da177e4SLinus Torvalds #include "ehci-hub.c"
3181da177e4SLinus Torvalds #include "ehci-mem.c"
3191da177e4SLinus Torvalds #include "ehci-q.c"
3201da177e4SLinus Torvalds #include "ehci-sched.c"
3214c67045bSKirill Smelkov #include "ehci-sysfs.c"
3221da177e4SLinus Torvalds 
3231da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
3241da177e4SLinus Torvalds 
3258903795aSAlan Stern /* On some systems, leaving remote wakeup enabled prevents system shutdown.
3268903795aSAlan Stern  * The firmware seems to think that powering off is a wakeup event!
3278903795aSAlan Stern  * This routine turns off remote wakeup and everything else, on all ports.
3288903795aSAlan Stern  */
3298903795aSAlan Stern static void ehci_turn_off_all_ports(struct ehci_hcd *ehci)
3308903795aSAlan Stern {
3318903795aSAlan Stern 	int	port = HCS_N_PORTS(ehci->hcs_params);
3328903795aSAlan Stern 
3338903795aSAlan Stern 	while (port--)
3348903795aSAlan Stern 		ehci_writel(ehci, PORT_RWC_BITS,
3358903795aSAlan Stern 				&ehci->regs->port_status[port]);
3368903795aSAlan Stern }
3378903795aSAlan Stern 
33821da84a8SSarah Sharp /*
33921da84a8SSarah Sharp  * Halt HC, turn off all ports, and let the BIOS use the companion controllers.
340c4f34764SAlan Stern  * Must be called with interrupts enabled and the lock not held.
34172f30b6fSDavid Brownell  */
34221da84a8SSarah Sharp static void ehci_silence_controller(struct ehci_hcd *ehci)
3431da177e4SLinus Torvalds {
34421da84a8SSarah Sharp 	ehci_halt(ehci);
345c4f34764SAlan Stern 
346c4f34764SAlan Stern 	spin_lock_irq(&ehci->lock);
347c4f34764SAlan Stern 	ehci->rh_state = EHCI_RH_HALTED;
3488903795aSAlan Stern 	ehci_turn_off_all_ports(ehci);
3491da177e4SLinus Torvalds 
3501da177e4SLinus Torvalds 	/* make BIOS/etc use companion controller during reboot */
351083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, 0, &ehci->regs->configured_flag);
3528903795aSAlan Stern 
3538903795aSAlan Stern 	/* unblock posted writes */
3548903795aSAlan Stern 	ehci_readl(ehci, &ehci->regs->configured_flag);
355c4f34764SAlan Stern 	spin_unlock_irq(&ehci->lock);
3561da177e4SLinus Torvalds }
3571da177e4SLinus Torvalds 
35821da84a8SSarah Sharp /* ehci_shutdown kick in for silicon on any bus (not just pci, etc).
35921da84a8SSarah Sharp  * This forcibly disables dma and IRQs, helping kexec and other cases
36021da84a8SSarah Sharp  * where the next system software may expect clean state.
36121da84a8SSarah Sharp  */
36221da84a8SSarah Sharp static void ehci_shutdown(struct usb_hcd *hcd)
36321da84a8SSarah Sharp {
36421da84a8SSarah Sharp 	struct ehci_hcd	*ehci = hcd_to_ehci(hcd);
36521da84a8SSarah Sharp 
36621da84a8SSarah Sharp 	spin_lock_irq(&ehci->lock);
36743fe3a99SAlan Stern 	ehci->shutdown = true;
368c0c53dbcSAlan Stern 	ehci->rh_state = EHCI_RH_STOPPING;
369d58b4bccSAlan Stern 	ehci->enabled_hrtimer_events = 0;
37021da84a8SSarah Sharp 	spin_unlock_irq(&ehci->lock);
371d58b4bccSAlan Stern 
372c4f34764SAlan Stern 	ehci_silence_controller(ehci);
373c4f34764SAlan Stern 
374d58b4bccSAlan Stern 	hrtimer_cancel(&ehci->hrtimer);
37521da84a8SSarah Sharp }
37621da84a8SSarah Sharp 
3777ff71d6aSMatt Porter /*-------------------------------------------------------------------------*/
3781da177e4SLinus Torvalds 
3797ff71d6aSMatt Porter /*
3807ff71d6aSMatt Porter  * ehci_work is called from some interrupts, timers, and so on.
3817ff71d6aSMatt Porter  * it calls driver completion functions, after dropping ehci->lock.
3827ff71d6aSMatt Porter  */
3837d12e780SDavid Howells static void ehci_work (struct ehci_hcd *ehci)
3847ff71d6aSMatt Porter {
3857ff71d6aSMatt Porter 	/* another CPU may drop ehci->lock during a schedule scan while
3867ff71d6aSMatt Porter 	 * it reports urb completions.  this flag guards against bogus
3877ff71d6aSMatt Porter 	 * attempts at re-entrant schedule scanning.
3887ff71d6aSMatt Porter 	 */
389361aabf3SAlan Stern 	if (ehci->scanning) {
390361aabf3SAlan Stern 		ehci->need_rescan = true;
3917ff71d6aSMatt Porter 		return;
392361aabf3SAlan Stern 	}
393361aabf3SAlan Stern 	ehci->scanning = true;
394361aabf3SAlan Stern 
395361aabf3SAlan Stern  rescan:
396361aabf3SAlan Stern 	ehci->need_rescan = false;
39731446610SAlan Stern 	if (ehci->async_count)
3987d12e780SDavid Howells 		scan_async(ehci);
399569b394fSAlan Stern 	if (ehci->intr_count > 0)
400569b394fSAlan Stern 		scan_intr(ehci);
401569b394fSAlan Stern 	if (ehci->isoc_count > 0)
402569b394fSAlan Stern 		scan_isoc(ehci);
403361aabf3SAlan Stern 	if (ehci->need_rescan)
404361aabf3SAlan Stern 		goto rescan;
405361aabf3SAlan Stern 	ehci->scanning = false;
4067ff71d6aSMatt Porter 
4077ff71d6aSMatt Porter 	/* the IO watchdog guards against hardware or driver bugs that
4087ff71d6aSMatt Porter 	 * misplace IRQs, and should let us run completely without IRQs.
4097ff71d6aSMatt Porter 	 * such lossage has been observed on both VT6202 and VT8235.
4107ff71d6aSMatt Porter 	 */
41118aafe64SAlan Stern 	turn_on_io_watchdog(ehci);
4127ff71d6aSMatt Porter }
4137ff71d6aSMatt Porter 
41421da84a8SSarah Sharp /*
41521da84a8SSarah Sharp  * Called when the ehci_hcd module is removed.
41621da84a8SSarah Sharp  */
4177ff71d6aSMatt Porter static void ehci_stop (struct usb_hcd *hcd)
4181da177e4SLinus Torvalds {
4191da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
4201da177e4SLinus Torvalds 
4217ff71d6aSMatt Porter 	ehci_dbg (ehci, "stop\n");
4221da177e4SLinus Torvalds 
4237ff71d6aSMatt Porter 	/* no more interrupts ... */
4241da177e4SLinus Torvalds 
4257ff71d6aSMatt Porter 	spin_lock_irq(&ehci->lock);
426d58b4bccSAlan Stern 	ehci->enabled_hrtimer_events = 0;
4277ff71d6aSMatt Porter 	spin_unlock_irq(&ehci->lock);
4287ff71d6aSMatt Porter 
429c4f34764SAlan Stern 	ehci_quiesce(ehci);
4307ff71d6aSMatt Porter 	ehci_silence_controller(ehci);
4317ff71d6aSMatt Porter 	ehci_reset (ehci);
4327ff71d6aSMatt Porter 
433d58b4bccSAlan Stern 	hrtimer_cancel(&ehci->hrtimer);
4344c67045bSKirill Smelkov 	remove_sysfs_files(ehci);
4357ff71d6aSMatt Porter 	remove_debug_files (ehci);
4367ff71d6aSMatt Porter 
4377ff71d6aSMatt Porter 	/* root hub is shut down separately (first, when possible) */
4387ff71d6aSMatt Porter 	spin_lock_irq (&ehci->lock);
43955934eb3SAlan Stern 	end_free_itds(ehci);
4407ff71d6aSMatt Porter 	spin_unlock_irq (&ehci->lock);
4417ff71d6aSMatt Porter 	ehci_mem_cleanup (ehci);
4427ff71d6aSMatt Porter 
443ad93562bSAndiry Xu 	if (ehci->amd_pll_fix == 1)
444ad93562bSAndiry Xu 		usb_amd_dev_put();
44505570297SAlex He 
446083522d7SBenjamin Herrenschmidt 	dbg_status (ehci, "ehci_stop completed",
447083522d7SBenjamin Herrenschmidt 		    ehci_readl(ehci, &ehci->regs->status));
4481da177e4SLinus Torvalds }
4491da177e4SLinus Torvalds 
45018807521SDavid Brownell /* one-time init, only for memory state */
45118807521SDavid Brownell static int ehci_init(struct usb_hcd *hcd)
4521da177e4SLinus Torvalds {
4531da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
4541da177e4SLinus Torvalds 	u32			temp;
4551da177e4SLinus Torvalds 	int			retval;
4561da177e4SLinus Torvalds 	u32			hcc_params;
4573807e26dSAlek Du 	struct ehci_qh_hw	*hw;
4581da177e4SLinus Torvalds 
45918807521SDavid Brownell 	spin_lock_init(&ehci->lock);
46018807521SDavid Brownell 
461403dbd36SAlek Du 	/*
462403dbd36SAlek Du 	 * keep io watchdog by default, those good HCDs could turn off it later
463403dbd36SAlek Du 	 */
464403dbd36SAlek Du 	ehci->need_io_watchdog = 1;
4651da177e4SLinus Torvalds 
466d58b4bccSAlan Stern 	hrtimer_init(&ehci->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
467d58b4bccSAlan Stern 	ehci->hrtimer.function = ehci_hrtimer_func;
468d58b4bccSAlan Stern 	ehci->next_hrtimer_event = EHCI_HRTIMER_NO_EVENT;
46907d29b63SAlan Stern 
470f75593ceSAlan Stern 	hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
471f75593ceSAlan Stern 
4721da177e4SLinus Torvalds 	/*
473cc62a7ebSKirill Smelkov 	 * by default set standard 80% (== 100 usec/uframe) max periodic
474cc62a7ebSKirill Smelkov 	 * bandwidth as required by USB 2.0
475cc62a7ebSKirill Smelkov 	 */
476cc62a7ebSKirill Smelkov 	ehci->uframe_periodic_max = 100;
477cc62a7ebSKirill Smelkov 
478cc62a7ebSKirill Smelkov 	/*
4791da177e4SLinus Torvalds 	 * hw default: 1K periodic list heads, one per frame.
4801da177e4SLinus Torvalds 	 * periodic_size can shrink by USBCMD update if hcc_params allows.
4811da177e4SLinus Torvalds 	 */
4821da177e4SLinus Torvalds 	ehci->periodic_size = DEFAULT_I_TDPS;
4836e018751SAlan Stern 	INIT_LIST_HEAD(&ehci->async_unlink);
484214ac7a0SAlan Stern 	INIT_LIST_HEAD(&ehci->async_idle);
4859118f9ebSMing Lei 	INIT_LIST_HEAD(&ehci->intr_unlink_wait);
4866e018751SAlan Stern 	INIT_LIST_HEAD(&ehci->intr_unlink);
487569b394fSAlan Stern 	INIT_LIST_HEAD(&ehci->intr_qh_list);
4889aa09d2fSKarsten Wiese 	INIT_LIST_HEAD(&ehci->cached_itd_list);
4890e5f231bSAlan Stern 	INIT_LIST_HEAD(&ehci->cached_sitd_list);
490b35c5009SAlan Stern 	INIT_LIST_HEAD(&ehci->tt_list);
491f75593ceSAlan Stern 
4928e192910SGreg Kroah-Hartman 	if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
493f75593ceSAlan Stern 		/* periodic schedule size can be smaller than default */
494f75593ceSAlan Stern 		switch (EHCI_TUNE_FLS) {
495f75593ceSAlan Stern 		case 0: ehci->periodic_size = 1024; break;
496f75593ceSAlan Stern 		case 1: ehci->periodic_size = 512; break;
497f75593ceSAlan Stern 		case 2: ehci->periodic_size = 256; break;
498f75593ceSAlan Stern 		default:	BUG();
499f75593ceSAlan Stern 		}
500f75593ceSAlan Stern 	}
50118807521SDavid Brownell 	if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0)
5021da177e4SLinus Torvalds 		return retval;
5031da177e4SLinus Torvalds 
5041da177e4SLinus Torvalds 	/* controllers may cache some of the periodic schedule ... */
5051da177e4SLinus Torvalds 	if (HCC_ISOC_CACHE(hcc_params))		// full frame cache
50698cae42dSAlan Stern 		ehci->i_thresh = 0;
5071da177e4SLinus Torvalds 	else					// N microframes cached
5081da177e4SLinus Torvalds 		ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
5091da177e4SLinus Torvalds 
5101da177e4SLinus Torvalds 	/*
5111da177e4SLinus Torvalds 	 * dedicate a qh for the async ring head, since we couldn't unlink
5121da177e4SLinus Torvalds 	 * a 'real' qh without stopping the async schedule [4.8].  use it
5131da177e4SLinus Torvalds 	 * as the 'reclamation list head' too.
5141da177e4SLinus Torvalds 	 * its dummy is used in hw_alt_next of many tds, to prevent the qh
5151da177e4SLinus Torvalds 	 * from automatically advancing to the next td after short reads.
5161da177e4SLinus Torvalds 	 */
5171da177e4SLinus Torvalds 	ehci->async->qh_next.qh = NULL;
5183807e26dSAlek Du 	hw = ehci->async->hw;
5193807e26dSAlek Du 	hw->hw_next = QH_NEXT(ehci, ehci->async->qh_dma);
5203807e26dSAlek Du 	hw->hw_info1 = cpu_to_hc32(ehci, QH_HEAD);
5214f7a67e2SRicardo Martins #if defined(CONFIG_PPC_PS3)
5224c53de72SAlan Stern 	hw->hw_info1 |= cpu_to_hc32(ehci, QH_INACTIVATE);
5234f7a67e2SRicardo Martins #endif
5243807e26dSAlek Du 	hw->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT);
5253807e26dSAlek Du 	hw->hw_qtd_next = EHCI_LIST_END(ehci);
5261da177e4SLinus Torvalds 	ehci->async->qh_state = QH_STATE_LINKED;
5273807e26dSAlek Du 	hw->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma);
5281da177e4SLinus Torvalds 
5291da177e4SLinus Torvalds 	/* clear interrupt enables, set irq latency */
5301da177e4SLinus Torvalds 	if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
5311da177e4SLinus Torvalds 		log2_irq_thresh = 0;
5321da177e4SLinus Torvalds 	temp = 1 << (16 + log2_irq_thresh);
5335a9cdf33SAlek Du 	if (HCC_PER_PORT_CHANGE_EVENT(hcc_params)) {
5345a9cdf33SAlek Du 		ehci->has_ppcd = 1;
5355a9cdf33SAlek Du 		ehci_dbg(ehci, "enable per-port change event\n");
5365a9cdf33SAlek Du 		temp |= CMD_PPCEE;
5375a9cdf33SAlek Du 	}
5381da177e4SLinus Torvalds 	if (HCC_CANPARK(hcc_params)) {
5391da177e4SLinus Torvalds 		/* HW default park == 3, on hardware that supports it (like
5401da177e4SLinus Torvalds 		 * NVidia and ALI silicon), maximizes throughput on the async
5411da177e4SLinus Torvalds 		 * schedule by avoiding QH fetches between transfers.
5421da177e4SLinus Torvalds 		 *
5431da177e4SLinus Torvalds 		 * With fast usb storage devices and NForce2, "park" seems to
5441da177e4SLinus Torvalds 		 * make problems:  throughput reduction (!), data errors...
5451da177e4SLinus Torvalds 		 */
5461da177e4SLinus Torvalds 		if (park) {
5471da177e4SLinus Torvalds 			park = min(park, (unsigned) 3);
5481da177e4SLinus Torvalds 			temp |= CMD_PARK;
5491da177e4SLinus Torvalds 			temp |= park << 8;
5501da177e4SLinus Torvalds 		}
55118807521SDavid Brownell 		ehci_dbg(ehci, "park %d\n", park);
5521da177e4SLinus Torvalds 	}
5531da177e4SLinus Torvalds 	if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
5541da177e4SLinus Torvalds 		/* periodic schedule size can be smaller than default */
5551da177e4SLinus Torvalds 		temp &= ~(3 << 2);
5561da177e4SLinus Torvalds 		temp |= (EHCI_TUNE_FLS << 2);
5571da177e4SLinus Torvalds 	}
55818807521SDavid Brownell 	ehci->command = temp;
55918807521SDavid Brownell 
56040f8db8fSAlan Stern 	/* Accept arbitrarily long scatter-gather lists */
5614307a28eSAndrea Righi 	if (!(hcd->driver->flags & HCD_LOCAL_MEM))
56240f8db8fSAlan Stern 		hcd->self.sg_tablesize = ~0;
56318807521SDavid Brownell 	return 0;
56418807521SDavid Brownell }
56518807521SDavid Brownell 
56618807521SDavid Brownell /* start HC running; it's halted, ehci_init() has been run (once) */
56718807521SDavid Brownell static int ehci_run (struct usb_hcd *hcd)
56818807521SDavid Brownell {
56918807521SDavid Brownell 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
57018807521SDavid Brownell 	u32			temp;
57118807521SDavid Brownell 	u32			hcc_params;
57218807521SDavid Brownell 
5731d619f12SMarcelo Tosatti 	hcd->uses_new_polling = 1;
5741d619f12SMarcelo Tosatti 
57518807521SDavid Brownell 	/* EHCI spec section 4.1 */
576876e0df9SGeoff Levand 
577083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
578083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next);
57918807521SDavid Brownell 
58018807521SDavid Brownell 	/*
58118807521SDavid Brownell 	 * hcc_params controls whether ehci->regs->segment must (!!!)
58218807521SDavid Brownell 	 * be used; it constrains QH/ITD/SITD and QTD locations.
58318807521SDavid Brownell 	 * pci_pool consistent memory always uses segment zero.
58418807521SDavid Brownell 	 * streaming mappings for I/O buffers, like pci_map_single(),
58518807521SDavid Brownell 	 * can return segments above 4GB, if the device allows.
58618807521SDavid Brownell 	 *
58718807521SDavid Brownell 	 * NOTE:  the dma mask is visible through dma_supported(), so
58818807521SDavid Brownell 	 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
58918807521SDavid Brownell 	 * Scsi_Host.highmem_io, and so forth.  It's readonly to all
59018807521SDavid Brownell 	 * host side drivers though.
59118807521SDavid Brownell 	 */
592083522d7SBenjamin Herrenschmidt 	hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
59318807521SDavid Brownell 	if (HCC_64BIT_ADDR(hcc_params)) {
594083522d7SBenjamin Herrenschmidt 		ehci_writel(ehci, 0, &ehci->regs->segment);
59518807521SDavid Brownell #if 0
59618807521SDavid Brownell // this is deeply broken on almost all architectures
5976a35528aSYang Hongyang 		if (!dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64)))
59818807521SDavid Brownell 			ehci_info(ehci, "enabled 64bit DMA\n");
59918807521SDavid Brownell #endif
60018807521SDavid Brownell 	}
60118807521SDavid Brownell 
60218807521SDavid Brownell 
6031da177e4SLinus Torvalds 	// Philips, Intel, and maybe others need CMD_RUN before the
6041da177e4SLinus Torvalds 	// root hub will detect new devices (why?); NEC doesn't
60518807521SDavid Brownell 	ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
60618807521SDavid Brownell 	ehci->command |= CMD_RUN;
607083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, ehci->command, &ehci->regs->command);
60818807521SDavid Brownell 	dbg_cmd (ehci, "init", ehci->command);
6091da177e4SLinus Torvalds 
6101da177e4SLinus Torvalds 	/*
6111da177e4SLinus Torvalds 	 * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
6121da177e4SLinus Torvalds 	 * are explicitly handed to companion controller(s), so no TT is
6131da177e4SLinus Torvalds 	 * involved with the root hub.  (Except where one is integrated,
6141da177e4SLinus Torvalds 	 * and there's no companion controller unless maybe for USB OTG.)
61532fe0198SAlan Stern 	 *
61632fe0198SAlan Stern 	 * Turning on the CF flag will transfer ownership of all ports
61732fe0198SAlan Stern 	 * from the companions to the EHCI controller.  If any of the
61832fe0198SAlan Stern 	 * companions are in the middle of a port reset at the time, it
61932fe0198SAlan Stern 	 * could cause trouble.  Write-locking ehci_cf_port_reset_rwsem
6201cb52658SDavid Brownell 	 * guarantees that no resets are in progress.  After we set CF,
6211cb52658SDavid Brownell 	 * a short delay lets the hardware catch up; new resets shouldn't
6221cb52658SDavid Brownell 	 * be started before the port switching actions could complete.
6231da177e4SLinus Torvalds 	 */
62432fe0198SAlan Stern 	down_write(&ehci_cf_port_reset_rwsem);
625e8799906SAlan Stern 	ehci->rh_state = EHCI_RH_RUNNING;
626083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
627083522d7SBenjamin Herrenschmidt 	ehci_readl(ehci, &ehci->regs->command);	/* unblock posted writes */
6281cb52658SDavid Brownell 	msleep(5);
62932fe0198SAlan Stern 	up_write(&ehci_cf_port_reset_rwsem);
630ee4ecb8aSOliver Neukum 	ehci->last_periodic_enable = ktime_get_real();
6311da177e4SLinus Torvalds 
632c430131aSJan Andersson 	temp = HC_VERSION(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
6331da177e4SLinus Torvalds 	ehci_info (ehci,
6342b70f073SAlan Stern 		"USB %x.%x started, EHCI %x.%02x%s\n",
6357ff71d6aSMatt Porter 		((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f),
6362b70f073SAlan Stern 		temp >> 8, temp & 0xff,
63793f1a47cSDavid Brownell 		ignore_oc ? ", overcurrent ignored" : "");
6381da177e4SLinus Torvalds 
639083522d7SBenjamin Herrenschmidt 	ehci_writel(ehci, INTR_MASK,
640083522d7SBenjamin Herrenschmidt 		    &ehci->regs->intr_enable); /* Turn On Interrupts */
6411da177e4SLinus Torvalds 
64218807521SDavid Brownell 	/* GRR this is run-once init(), being done every time the HC starts.
64318807521SDavid Brownell 	 * So long as they're part of class devices, we can't do it init()
64418807521SDavid Brownell 	 * since the class device isn't created that early.
64518807521SDavid Brownell 	 */
6461da177e4SLinus Torvalds 	create_debug_files(ehci);
6474c67045bSKirill Smelkov 	create_sysfs_files(ehci);
6481da177e4SLinus Torvalds 
6491da177e4SLinus Torvalds 	return 0;
6501da177e4SLinus Torvalds }
6511da177e4SLinus Torvalds 
6523e023203SAlan Stern int ehci_setup(struct usb_hcd *hcd)
6532093c6b4SMatthieu CASTET {
6542093c6b4SMatthieu CASTET 	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
6552093c6b4SMatthieu CASTET 	int retval;
6562093c6b4SMatthieu CASTET 
6572093c6b4SMatthieu CASTET 	ehci->regs = (void __iomem *)ehci->caps +
6582093c6b4SMatthieu CASTET 	    HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
6592093c6b4SMatthieu CASTET 	dbg_hcs_params(ehci, "reset");
6602093c6b4SMatthieu CASTET 	dbg_hcc_params(ehci, "reset");
6612093c6b4SMatthieu CASTET 
6622093c6b4SMatthieu CASTET 	/* cache this readonly data; minimize chip reads */
6632093c6b4SMatthieu CASTET 	ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params);
6642093c6b4SMatthieu CASTET 
6652093c6b4SMatthieu CASTET 	ehci->sbrn = HCD_USB2;
6662093c6b4SMatthieu CASTET 
6672093c6b4SMatthieu CASTET 	/* data structure init */
6682093c6b4SMatthieu CASTET 	retval = ehci_init(hcd);
6692093c6b4SMatthieu CASTET 	if (retval)
6702093c6b4SMatthieu CASTET 		return retval;
6712093c6b4SMatthieu CASTET 
672631fe9d9SAlan Stern 	retval = ehci_halt(ehci);
6732093c6b4SMatthieu CASTET 	if (retval)
6742093c6b4SMatthieu CASTET 		return retval;
6752093c6b4SMatthieu CASTET 
6762093c6b4SMatthieu CASTET 	ehci_reset(ehci);
6772093c6b4SMatthieu CASTET 
6782093c6b4SMatthieu CASTET 	return 0;
6792093c6b4SMatthieu CASTET }
6803e023203SAlan Stern EXPORT_SYMBOL_GPL(ehci_setup);
6812093c6b4SMatthieu CASTET 
6821da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
6831da177e4SLinus Torvalds 
6847d12e780SDavid Howells static irqreturn_t ehci_irq (struct usb_hcd *hcd)
6851da177e4SLinus Torvalds {
6861da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
68767b2e029SAlan Stern 	u32			status, masked_status, pcd_status = 0, cmd;
6881da177e4SLinus Torvalds 	int			bh;
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds 	spin_lock (&ehci->lock);
6911da177e4SLinus Torvalds 
692083522d7SBenjamin Herrenschmidt 	status = ehci_readl(ehci, &ehci->regs->status);
6931da177e4SLinus Torvalds 
6941da177e4SLinus Torvalds 	/* e.g. cardbus physical eject */
6951da177e4SLinus Torvalds 	if (status == ~(u32) 0) {
6961da177e4SLinus Torvalds 		ehci_dbg (ehci, "device removed\n");
6971da177e4SLinus Torvalds 		goto dead;
6981da177e4SLinus Torvalds 	}
6991da177e4SLinus Torvalds 
7002fbe2bf1SAlan Stern 	/*
7012fbe2bf1SAlan Stern 	 * We don't use STS_FLR, but some controllers don't like it to
7022fbe2bf1SAlan Stern 	 * remain on, so mask it out along with the other status bits.
7032fbe2bf1SAlan Stern 	 */
7042fbe2bf1SAlan Stern 	masked_status = status & (INTR_MASK | STS_FLR);
7052fbe2bf1SAlan Stern 
70669fff59dSAlan Stern 	/* Shared IRQ? */
707e8799906SAlan Stern 	if (!masked_status || unlikely(ehci->rh_state == EHCI_RH_HALTED)) {
7081da177e4SLinus Torvalds 		spin_unlock(&ehci->lock);
7091da177e4SLinus Torvalds 		return IRQ_NONE;
7101da177e4SLinus Torvalds 	}
7111da177e4SLinus Torvalds 
7121da177e4SLinus Torvalds 	/* clear (just) interrupts */
71367b2e029SAlan Stern 	ehci_writel(ehci, masked_status, &ehci->regs->status);
714e82cc128SDavid Brownell 	cmd = ehci_readl(ehci, &ehci->regs->command);
7151da177e4SLinus Torvalds 	bh = 0;
7161da177e4SLinus Torvalds 
7179776afc8SDavid Brownell #ifdef	VERBOSE_DEBUG
7181da177e4SLinus Torvalds 	/* unrequested/ignored: Frame List Rollover */
7191da177e4SLinus Torvalds 	dbg_status (ehci, "irq", status);
7201da177e4SLinus Torvalds #endif
7211da177e4SLinus Torvalds 
7221da177e4SLinus Torvalds 	/* INT, ERR, and IAA interrupt rates can be throttled */
7231da177e4SLinus Torvalds 
7241da177e4SLinus Torvalds 	/* normal [4.15.1.2] or error [4.15.1.1] completion */
7251da177e4SLinus Torvalds 	if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
7261da177e4SLinus Torvalds 		if (likely ((status & STS_ERR) == 0))
7271da177e4SLinus Torvalds 			COUNT (ehci->stats.normal);
7281da177e4SLinus Torvalds 		else
7291da177e4SLinus Torvalds 			COUNT (ehci->stats.error);
7301da177e4SLinus Torvalds 		bh = 1;
7311da177e4SLinus Torvalds 	}
7321da177e4SLinus Torvalds 
7331da177e4SLinus Torvalds 	/* complete the unlinking of some qh [4.15.2.3] */
7341da177e4SLinus Torvalds 	if (status & STS_IAA) {
7359d938747SAlan Stern 
7369d938747SAlan Stern 		/* Turn off the IAA watchdog */
7379d938747SAlan Stern 		ehci->enabled_hrtimer_events &= ~BIT(EHCI_HRTIMER_IAA_WATCHDOG);
7389d938747SAlan Stern 
7399d938747SAlan Stern 		/*
7409d938747SAlan Stern 		 * Mild optimization: Allow another IAAD to reset the
7419d938747SAlan Stern 		 * hrtimer, if one occurs before the next expiration.
7429d938747SAlan Stern 		 * In theory we could always cancel the hrtimer, but
7439d938747SAlan Stern 		 * tests show that about half the time it will be reset
7449d938747SAlan Stern 		 * for some other event anyway.
7459d938747SAlan Stern 		 */
7469d938747SAlan Stern 		if (ehci->next_hrtimer_event == EHCI_HRTIMER_IAA_WATCHDOG)
7479d938747SAlan Stern 			++ehci->next_hrtimer_event;
7489d938747SAlan Stern 
749e82cc128SDavid Brownell 		/* guard against (alleged) silicon errata */
7506feff1b9SAlan Stern 		if (cmd & CMD_IAAD)
751e82cc128SDavid Brownell 			ehci_dbg(ehci, "IAA with IAAD still set?\n");
752214ac7a0SAlan Stern 		if (ehci->iaa_in_progress)
75399ac5b1eSAlan Stern 			COUNT(ehci->stats.iaa);
75407d29b63SAlan Stern 		end_unlink_async(ehci);
7551da177e4SLinus Torvalds 	}
7561da177e4SLinus Torvalds 
7571da177e4SLinus Torvalds 	/* remote wakeup [4.3.1] */
758d97cc2f2SDavid Brownell 	if (status & STS_PCD) {
7591da177e4SLinus Torvalds 		unsigned	i = HCS_N_PORTS (ehci->hcs_params);
7604dd405a4SAlan Stern 		u32		ppcd = ~0;
761d1b1842cSDavid Brownell 
762d1b1842cSDavid Brownell 		/* kick root hub later */
7631d619f12SMarcelo Tosatti 		pcd_status = status;
7641da177e4SLinus Torvalds 
7651da177e4SLinus Torvalds 		/* resume root hub? */
766dc75ce9dSAlan Stern 		if (ehci->rh_state == EHCI_RH_SUSPENDED)
7678c03356aSAlan Stern 			usb_hcd_resume_root_hub(hcd);
7681da177e4SLinus Torvalds 
7695a9cdf33SAlek Du 		/* get per-port change detect bits */
7705a9cdf33SAlek Du 		if (ehci->has_ppcd)
7715a9cdf33SAlek Du 			ppcd = status >> 16;
7725a9cdf33SAlek Du 
7731da177e4SLinus Torvalds 		while (i--) {
7745a9cdf33SAlek Du 			int pstatus;
7755a9cdf33SAlek Du 
7765a9cdf33SAlek Du 			/* leverage per-port change bits feature */
7774dd405a4SAlan Stern 			if (!(ppcd & (1 << i)))
7785a9cdf33SAlek Du 				continue;
7795a9cdf33SAlek Du 			pstatus = ehci_readl(ehci,
780083522d7SBenjamin Herrenschmidt 					 &ehci->regs->port_status[i]);
781b972b68cSDavid Brownell 
782b972b68cSDavid Brownell 			if (pstatus & PORT_OWNER)
7831da177e4SLinus Torvalds 				continue;
784eafe5b99SAlan Stern 			if (!(test_bit(i, &ehci->suspended_ports) &&
785eafe5b99SAlan Stern 					((pstatus & PORT_RESUME) ||
786eafe5b99SAlan Stern 						!(pstatus & PORT_SUSPEND)) &&
787eafe5b99SAlan Stern 					(pstatus & PORT_PE) &&
788eafe5b99SAlan Stern 					ehci->reset_done[i] == 0))
7891da177e4SLinus Torvalds 				continue;
7901da177e4SLinus Torvalds 
7911da177e4SLinus Torvalds 			/* start 20 msec resume signaling from this port,
7921da177e4SLinus Torvalds 			 * and make khubd collect PORT_STAT_C_SUSPEND to
79349d0f078SAlan Stern 			 * stop that signaling.  Use 5 ms extra for safety,
79449d0f078SAlan Stern 			 * like usb_port_resume() does.
7951da177e4SLinus Torvalds 			 */
79649d0f078SAlan Stern 			ehci->reset_done[i] = jiffies + msecs_to_jiffies(25);
797a448e4dcSAlan Stern 			set_bit(i, &ehci->resuming_ports);
7981da177e4SLinus Torvalds 			ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
799f292e7f9SAlan Stern 			usb_hcd_start_port_resume(&hcd->self, i);
80061e8b858SAlan Stern 			mod_timer(&hcd->rh_timer, ehci->reset_done[i]);
8011da177e4SLinus Torvalds 		}
8021da177e4SLinus Torvalds 	}
8031da177e4SLinus Torvalds 
8041da177e4SLinus Torvalds 	/* PCI errors [4.15.2.4] */
8051da177e4SLinus Torvalds 	if (unlikely ((status & STS_FATAL) != 0)) {
80667b2e029SAlan Stern 		ehci_err(ehci, "fatal error\n");
807eafe5b99SAlan Stern 		dbg_cmd(ehci, "fatal", cmd);
8081da177e4SLinus Torvalds 		dbg_status(ehci, "fatal", status);
8091da177e4SLinus Torvalds dead:
81069fff59dSAlan Stern 		usb_hc_died(hcd);
811bf6387bcSAlan Stern 
812bf6387bcSAlan Stern 		/* Don't let the controller do anything more */
81343fe3a99SAlan Stern 		ehci->shutdown = true;
814bf6387bcSAlan Stern 		ehci->rh_state = EHCI_RH_STOPPING;
815bf6387bcSAlan Stern 		ehci->command &= ~(CMD_RUN | CMD_ASE | CMD_PSE);
816bf6387bcSAlan Stern 		ehci_writel(ehci, ehci->command, &ehci->regs->command);
817bf6387bcSAlan Stern 		ehci_writel(ehci, 0, &ehci->regs->intr_enable);
818bf6387bcSAlan Stern 		ehci_handle_controller_death(ehci);
819bf6387bcSAlan Stern 
820bf6387bcSAlan Stern 		/* Handle completions when the controller stops */
821bf6387bcSAlan Stern 		bh = 0;
8221da177e4SLinus Torvalds 	}
8231da177e4SLinus Torvalds 
8241da177e4SLinus Torvalds 	if (bh)
8257d12e780SDavid Howells 		ehci_work (ehci);
8261da177e4SLinus Torvalds 	spin_unlock (&ehci->lock);
827d1b1842cSDavid Brownell 	if (pcd_status)
8281d619f12SMarcelo Tosatti 		usb_hcd_poll_rh_status(hcd);
8291da177e4SLinus Torvalds 	return IRQ_HANDLED;
8301da177e4SLinus Torvalds }
8311da177e4SLinus Torvalds 
8321da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
8331da177e4SLinus Torvalds 
8341da177e4SLinus Torvalds /*
8351da177e4SLinus Torvalds  * non-error returns are a promise to giveback() the urb later
8361da177e4SLinus Torvalds  * we drop ownership so next owner (or urb unlink) can get it
8371da177e4SLinus Torvalds  *
8381da177e4SLinus Torvalds  * urb + dev is in hcd.self.controller.urb_list
8391da177e4SLinus Torvalds  * we're queueing TDs onto software and hardware lists
8401da177e4SLinus Torvalds  *
8411da177e4SLinus Torvalds  * hcd-specific init for hcpriv hasn't been done yet
8421da177e4SLinus Torvalds  *
8431da177e4SLinus Torvalds  * NOTE:  control, bulk, and interrupt share the same code to append TDs
8441da177e4SLinus Torvalds  * to a (possibly active) QH, and the same QH scanning code.
8451da177e4SLinus Torvalds  */
8461da177e4SLinus Torvalds static int ehci_urb_enqueue (
8471da177e4SLinus Torvalds 	struct usb_hcd	*hcd,
8481da177e4SLinus Torvalds 	struct urb	*urb,
84955016f10SAl Viro 	gfp_t		mem_flags
8501da177e4SLinus Torvalds ) {
8511da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
8521da177e4SLinus Torvalds 	struct list_head	qtd_list;
8531da177e4SLinus Torvalds 
8541da177e4SLinus Torvalds 	INIT_LIST_HEAD (&qtd_list);
8551da177e4SLinus Torvalds 
8561da177e4SLinus Torvalds 	switch (usb_pipetype (urb->pipe)) {
85725b70a86SDavid Brownell 	case PIPE_CONTROL:
85825b70a86SDavid Brownell 		/* qh_completions() code doesn't handle all the fault cases
85925b70a86SDavid Brownell 		 * in multi-TD control transfers.  Even 1KB is rare anyway.
86025b70a86SDavid Brownell 		 */
86125b70a86SDavid Brownell 		if (urb->transfer_buffer_length > (16 * 1024))
86225b70a86SDavid Brownell 			return -EMSGSIZE;
86325b70a86SDavid Brownell 		/* FALLTHROUGH */
86425b70a86SDavid Brownell 	/* case PIPE_BULK: */
8651da177e4SLinus Torvalds 	default:
8661da177e4SLinus Torvalds 		if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
8671da177e4SLinus Torvalds 			return -ENOMEM;
868e9df41c5SAlan Stern 		return submit_async(ehci, urb, &qtd_list, mem_flags);
8691da177e4SLinus Torvalds 
8701da177e4SLinus Torvalds 	case PIPE_INTERRUPT:
8711da177e4SLinus Torvalds 		if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
8721da177e4SLinus Torvalds 			return -ENOMEM;
873e9df41c5SAlan Stern 		return intr_submit(ehci, urb, &qtd_list, mem_flags);
8741da177e4SLinus Torvalds 
8751da177e4SLinus Torvalds 	case PIPE_ISOCHRONOUS:
8761da177e4SLinus Torvalds 		if (urb->dev->speed == USB_SPEED_HIGH)
8771da177e4SLinus Torvalds 			return itd_submit (ehci, urb, mem_flags);
8781da177e4SLinus Torvalds 		else
8791da177e4SLinus Torvalds 			return sitd_submit (ehci, urb, mem_flags);
8801da177e4SLinus Torvalds 	}
8811da177e4SLinus Torvalds }
8821da177e4SLinus Torvalds 
8831da177e4SLinus Torvalds /* remove from hardware lists
8841da177e4SLinus Torvalds  * completions normally happen asynchronously
8851da177e4SLinus Torvalds  */
8861da177e4SLinus Torvalds 
887e9df41c5SAlan Stern static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
8881da177e4SLinus Torvalds {
8891da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
8901da177e4SLinus Torvalds 	struct ehci_qh		*qh;
8911da177e4SLinus Torvalds 	unsigned long		flags;
892e9df41c5SAlan Stern 	int			rc;
8931da177e4SLinus Torvalds 
8941da177e4SLinus Torvalds 	spin_lock_irqsave (&ehci->lock, flags);
895e9df41c5SAlan Stern 	rc = usb_hcd_check_unlink_urb(hcd, urb, status);
896e9df41c5SAlan Stern 	if (rc)
897e9df41c5SAlan Stern 		goto done;
898e9df41c5SAlan Stern 
8997655e316SAlan Stern 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) {
9007655e316SAlan Stern 		/*
9017655e316SAlan Stern 		 * We don't expedite dequeue for isochronous URBs.
9027655e316SAlan Stern 		 * Just wait until they complete normally or their
9037655e316SAlan Stern 		 * time slot expires.
9047655e316SAlan Stern 		 */
9057655e316SAlan Stern 	} else {
9061da177e4SLinus Torvalds 		qh = (struct ehci_qh *) urb->hcpriv;
9077bc782d7SAlan Stern 		qh->exception = 1;
90807d29b63SAlan Stern 		switch (qh->qh_state) {
90907d29b63SAlan Stern 		case QH_STATE_LINKED:
9107655e316SAlan Stern 			if (usb_pipetype(urb->pipe) == PIPE_INTERRUPT)
9117655e316SAlan Stern 				start_unlink_intr(ehci, qh);
9127655e316SAlan Stern 			else
9133c273a05SAlan Stern 				start_unlink_async(ehci, qh);
9141da177e4SLinus Torvalds 			break;
9157bc782d7SAlan Stern 		case QH_STATE_COMPLETING:
9167bc782d7SAlan Stern 			qh->dequeue_during_giveback = 1;
9177bc782d7SAlan Stern 			break;
91807d29b63SAlan Stern 		case QH_STATE_UNLINK:
91907d29b63SAlan Stern 		case QH_STATE_UNLINK_WAIT:
92007d29b63SAlan Stern 			/* already started */
92107d29b63SAlan Stern 			break;
92207d29b63SAlan Stern 		case QH_STATE_IDLE:
9237a0f0d95SAlan Stern 			/* QH might be waiting for a Clear-TT-Buffer */
9247a0f0d95SAlan Stern 			qh_completions(ehci, qh);
92507d29b63SAlan Stern 			break;
92607d29b63SAlan Stern 		}
9271da177e4SLinus Torvalds 	}
9281da177e4SLinus Torvalds done:
9291da177e4SLinus Torvalds 	spin_unlock_irqrestore (&ehci->lock, flags);
930e9df41c5SAlan Stern 	return rc;
9311da177e4SLinus Torvalds }
9321da177e4SLinus Torvalds 
9331da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
9341da177e4SLinus Torvalds 
9351da177e4SLinus Torvalds // bulk qh holds the data toggle
9361da177e4SLinus Torvalds 
9371da177e4SLinus Torvalds static void
9381da177e4SLinus Torvalds ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
9391da177e4SLinus Torvalds {
9401da177e4SLinus Torvalds 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
9411da177e4SLinus Torvalds 	unsigned long		flags;
94235371e4fSMing Lei 	struct ehci_qh		*qh;
9431da177e4SLinus Torvalds 
9441da177e4SLinus Torvalds 	/* ASSERT:  any requests/urbs are being unlinked */
9451da177e4SLinus Torvalds 	/* ASSERT:  nobody can be submitting urbs for this any more */
9461da177e4SLinus Torvalds 
9471da177e4SLinus Torvalds rescan:
9481da177e4SLinus Torvalds 	spin_lock_irqsave (&ehci->lock, flags);
9491da177e4SLinus Torvalds 	qh = ep->hcpriv;
9501da177e4SLinus Torvalds 	if (!qh)
9511da177e4SLinus Torvalds 		goto done;
9521da177e4SLinus Torvalds 
9531da177e4SLinus Torvalds 	/* endpoints can be iso streams.  for now, we don't
9541da177e4SLinus Torvalds 	 * accelerate iso completions ... so spin a while.
9551da177e4SLinus Torvalds 	 */
9561082f57aSClemens Ladisch 	if (qh->hw == NULL) {
9578c5bf7beSAlan Stern 		struct ehci_iso_stream	*stream = ep->hcpriv;
9588c5bf7beSAlan Stern 
9598c5bf7beSAlan Stern 		if (!list_empty(&stream->td_list))
9601da177e4SLinus Torvalds 			goto idle_timeout;
9618c5bf7beSAlan Stern 
9628c5bf7beSAlan Stern 		/* BUG_ON(!list_empty(&stream->free_list)); */
963d0ce5c6bSAlan Stern 		reserve_release_iso_bandwidth(ehci, stream, -1);
9648c5bf7beSAlan Stern 		kfree(stream);
9658c5bf7beSAlan Stern 		goto done;
9661da177e4SLinus Torvalds 	}
9671da177e4SLinus Torvalds 
9687bc782d7SAlan Stern 	qh->exception = 1;
969c0c53dbcSAlan Stern 	if (ehci->rh_state < EHCI_RH_RUNNING)
9701da177e4SLinus Torvalds 		qh->qh_state = QH_STATE_IDLE;
9711da177e4SLinus Torvalds 	switch (qh->qh_state) {
9721da177e4SLinus Torvalds 	case QH_STATE_LINKED:
97335371e4fSMing Lei 		WARN_ON(!list_empty(&qh->qtd_list));
97435371e4fSMing Lei 		if (usb_endpoint_type(&ep->desc) != USB_ENDPOINT_XFER_INT)
9753c273a05SAlan Stern 			start_unlink_async(ehci, qh);
97635371e4fSMing Lei 		else
97735371e4fSMing Lei 			start_unlink_intr(ehci, qh);
9781da177e4SLinus Torvalds 		/* FALL THROUGH */
97935371e4fSMing Lei 	case QH_STATE_COMPLETING:	/* already in unlinking */
9801da177e4SLinus Torvalds 	case QH_STATE_UNLINK:		/* wait for hw to finish? */
98107d29b63SAlan Stern 	case QH_STATE_UNLINK_WAIT:
9821da177e4SLinus Torvalds idle_timeout:
9831da177e4SLinus Torvalds 		spin_unlock_irqrestore (&ehci->lock, flags);
98422c43863SNishanth Aravamudan 		schedule_timeout_uninterruptible(1);
9851da177e4SLinus Torvalds 		goto rescan;
9861da177e4SLinus Torvalds 	case QH_STATE_IDLE:		/* fully unlinked */
987914b7012SAlan Stern 		if (qh->clearing_tt)
988914b7012SAlan Stern 			goto idle_timeout;
9891da177e4SLinus Torvalds 		if (list_empty (&qh->qtd_list)) {
990d0ce5c6bSAlan Stern 			if (qh->ps.bw_uperiod)
991d0ce5c6bSAlan Stern 				reserve_release_intr_bandwidth(ehci, qh, -1);
992c83e1a9fSAlan Stern 			qh_destroy(ehci, qh);
9931da177e4SLinus Torvalds 			break;
9941da177e4SLinus Torvalds 		}
9951da177e4SLinus Torvalds 		/* else FALL THROUGH */
9961da177e4SLinus Torvalds 	default:
9971da177e4SLinus Torvalds 		/* caller was supposed to have unlinked any requests;
9981da177e4SLinus Torvalds 		 * that's not our job.  just leak this memory.
9991da177e4SLinus Torvalds 		 */
10001da177e4SLinus Torvalds 		ehci_err (ehci, "qh %p (#%02x) state %d%s\n",
10011da177e4SLinus Torvalds 			qh, ep->desc.bEndpointAddress, qh->qh_state,
10021da177e4SLinus Torvalds 			list_empty (&qh->qtd_list) ? "" : "(has tds)");
10031da177e4SLinus Torvalds 		break;
10041da177e4SLinus Torvalds 	}
10051da177e4SLinus Torvalds  done:
10068c5bf7beSAlan Stern 	ep->hcpriv = NULL;
10071da177e4SLinus Torvalds 	spin_unlock_irqrestore (&ehci->lock, flags);
10081da177e4SLinus Torvalds }
10091da177e4SLinus Torvalds 
1010b18ffd49SAlan Stern static void
1011b18ffd49SAlan Stern ehci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep)
1012b18ffd49SAlan Stern {
1013b18ffd49SAlan Stern 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
1014b18ffd49SAlan Stern 	struct ehci_qh		*qh;
1015b18ffd49SAlan Stern 	int			eptype = usb_endpoint_type(&ep->desc);
1016a455212dSAlan Stern 	int			epnum = usb_endpoint_num(&ep->desc);
1017a455212dSAlan Stern 	int			is_out = usb_endpoint_dir_out(&ep->desc);
1018a455212dSAlan Stern 	unsigned long		flags;
1019b18ffd49SAlan Stern 
1020b18ffd49SAlan Stern 	if (eptype != USB_ENDPOINT_XFER_BULK && eptype != USB_ENDPOINT_XFER_INT)
1021b18ffd49SAlan Stern 		return;
1022b18ffd49SAlan Stern 
1023a455212dSAlan Stern 	spin_lock_irqsave(&ehci->lock, flags);
1024b18ffd49SAlan Stern 	qh = ep->hcpriv;
1025b18ffd49SAlan Stern 
1026b18ffd49SAlan Stern 	/* For Bulk and Interrupt endpoints we maintain the toggle state
1027b18ffd49SAlan Stern 	 * in the hardware; the toggle bits in udev aren't used at all.
1028b18ffd49SAlan Stern 	 * When an endpoint is reset by usb_clear_halt() we must reset
1029b18ffd49SAlan Stern 	 * the toggle bit in the QH.
1030b18ffd49SAlan Stern 	 */
1031b18ffd49SAlan Stern 	if (qh) {
1032b18ffd49SAlan Stern 		if (!list_empty(&qh->qtd_list)) {
1033b18ffd49SAlan Stern 			WARN_ONCE(1, "clear_halt for a busy endpoint\n");
10347bc782d7SAlan Stern 		} else {
1035a455212dSAlan Stern 			/* The toggle value in the QH can't be updated
1036a455212dSAlan Stern 			 * while the QH is active.  Unlink it now;
1037a455212dSAlan Stern 			 * re-linking will call qh_refresh().
1038b18ffd49SAlan Stern 			 */
1039ffa0248eSAlan Stern 			usb_settoggle(qh->ps.udev, epnum, is_out, 0);
10407bc782d7SAlan Stern 			qh->exception = 1;
1041a448c9d8SAlan Stern 			if (eptype == USB_ENDPOINT_XFER_BULK)
10423c273a05SAlan Stern 				start_unlink_async(ehci, qh);
1043a448c9d8SAlan Stern 			else
1044df202255SAlan Stern 				start_unlink_intr(ehci, qh);
1045b18ffd49SAlan Stern 		}
1046b18ffd49SAlan Stern 	}
1047a455212dSAlan Stern 	spin_unlock_irqrestore(&ehci->lock, flags);
1048b18ffd49SAlan Stern }
1049b18ffd49SAlan Stern 
10507ff71d6aSMatt Porter static int ehci_get_frame (struct usb_hcd *hcd)
10517ff71d6aSMatt Porter {
10527ff71d6aSMatt Porter 	struct ehci_hcd		*ehci = hcd_to_ehci (hcd);
105368aa95d5SAlan Stern 	return (ehci_read_frame_index(ehci) >> 3) % ehci->periodic_size;
10547ff71d6aSMatt Porter }
10551da177e4SLinus Torvalds 
10561da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/
1057c5cf9212SAlan Stern 
1058b35c5009SAlan Stern /* Device addition and removal */
1059b35c5009SAlan Stern 
1060b35c5009SAlan Stern static void ehci_remove_device(struct usb_hcd *hcd, struct usb_device *udev)
1061b35c5009SAlan Stern {
1062b35c5009SAlan Stern 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
1063b35c5009SAlan Stern 
1064b35c5009SAlan Stern 	spin_lock_irq(&ehci->lock);
1065b35c5009SAlan Stern 	drop_tt(udev);
1066b35c5009SAlan Stern 	spin_unlock_irq(&ehci->lock);
1067b35c5009SAlan Stern }
1068b35c5009SAlan Stern 
1069b35c5009SAlan Stern /*-------------------------------------------------------------------------*/
1070b35c5009SAlan Stern 
1071c5cf9212SAlan Stern #ifdef	CONFIG_PM
1072c5cf9212SAlan Stern 
1073c5cf9212SAlan Stern /* suspend/resume, section 4.3 */
1074c5cf9212SAlan Stern 
1075c5cf9212SAlan Stern /* These routines handle the generic parts of controller suspend/resume */
1076c5cf9212SAlan Stern 
10773e023203SAlan Stern int ehci_suspend(struct usb_hcd *hcd, bool do_wakeup)
1078c5cf9212SAlan Stern {
1079c5cf9212SAlan Stern 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
1080c5cf9212SAlan Stern 
1081c5cf9212SAlan Stern 	if (time_before(jiffies, ehci->next_statechange))
1082c5cf9212SAlan Stern 		msleep(10);
1083c5cf9212SAlan Stern 
1084c5cf9212SAlan Stern 	/*
1085c5cf9212SAlan Stern 	 * Root hub was already suspended.  Disable IRQ emission and
1086c5cf9212SAlan Stern 	 * mark HW unaccessible.  The PM and USB cores make sure that
1087c5cf9212SAlan Stern 	 * the root hub is either suspended or stopped.
1088c5cf9212SAlan Stern 	 */
1089c5cf9212SAlan Stern 	ehci_prepare_ports_for_controller_suspend(ehci, do_wakeup);
1090c5cf9212SAlan Stern 
1091c5cf9212SAlan Stern 	spin_lock_irq(&ehci->lock);
1092c5cf9212SAlan Stern 	ehci_writel(ehci, 0, &ehci->regs->intr_enable);
1093c5cf9212SAlan Stern 	(void) ehci_readl(ehci, &ehci->regs->intr_enable);
1094c5cf9212SAlan Stern 
1095c5cf9212SAlan Stern 	clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1096c5cf9212SAlan Stern 	spin_unlock_irq(&ehci->lock);
1097c5cf9212SAlan Stern 
1098*b8efdafbSAlan Stern 	synchronize_irq(hcd->irq);
1099*b8efdafbSAlan Stern 
1100*b8efdafbSAlan Stern 	/* Check for race with a wakeup request */
1101*b8efdafbSAlan Stern 	if (do_wakeup && HCD_WAKEUP_PENDING(hcd)) {
1102*b8efdafbSAlan Stern 		ehci_resume(hcd, false);
1103*b8efdafbSAlan Stern 		return -EBUSY;
1104*b8efdafbSAlan Stern 	}
1105*b8efdafbSAlan Stern 
1106c5cf9212SAlan Stern 	return 0;
1107c5cf9212SAlan Stern }
11083e023203SAlan Stern EXPORT_SYMBOL_GPL(ehci_suspend);
1109c5cf9212SAlan Stern 
1110c5cf9212SAlan Stern /* Returns 0 if power was preserved, 1 if power was lost */
11113e023203SAlan Stern int ehci_resume(struct usb_hcd *hcd, bool hibernated)
1112c5cf9212SAlan Stern {
1113c5cf9212SAlan Stern 	struct ehci_hcd		*ehci = hcd_to_ehci(hcd);
1114c5cf9212SAlan Stern 
1115c5cf9212SAlan Stern 	if (time_before(jiffies, ehci->next_statechange))
1116c5cf9212SAlan Stern 		msleep(100);
1117c5cf9212SAlan Stern 
1118c5cf9212SAlan Stern 	/* Mark hardware accessible again as we are back to full power by now */
1119c5cf9212SAlan Stern 	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1120c5cf9212SAlan Stern 
112143fe3a99SAlan Stern 	if (ehci->shutdown)
112243fe3a99SAlan Stern 		return 0;		/* Controller is dead */
112343fe3a99SAlan Stern 
1124c5cf9212SAlan Stern 	/*
1125c5cf9212SAlan Stern 	 * If CF is still set and we aren't resuming from hibernation
1126c5cf9212SAlan Stern 	 * then we maintained suspend power.
1127c5cf9212SAlan Stern 	 * Just undo the effect of ehci_suspend().
1128c5cf9212SAlan Stern 	 */
1129c5cf9212SAlan Stern 	if (ehci_readl(ehci, &ehci->regs->configured_flag) == FLAG_CF &&
1130c5cf9212SAlan Stern 			!hibernated) {
1131c5cf9212SAlan Stern 		int	mask = INTR_MASK;
1132c5cf9212SAlan Stern 
1133c5cf9212SAlan Stern 		ehci_prepare_ports_for_controller_resume(ehci);
113443fe3a99SAlan Stern 
113543fe3a99SAlan Stern 		spin_lock_irq(&ehci->lock);
113643fe3a99SAlan Stern 		if (ehci->shutdown)
113743fe3a99SAlan Stern 			goto skip;
113843fe3a99SAlan Stern 
1139c5cf9212SAlan Stern 		if (!hcd->self.root_hub->do_remote_wakeup)
1140c5cf9212SAlan Stern 			mask &= ~STS_PCD;
1141c5cf9212SAlan Stern 		ehci_writel(ehci, mask, &ehci->regs->intr_enable);
1142c5cf9212SAlan Stern 		ehci_readl(ehci, &ehci->regs->intr_enable);
114343fe3a99SAlan Stern  skip:
114443fe3a99SAlan Stern 		spin_unlock_irq(&ehci->lock);
1145c5cf9212SAlan Stern 		return 0;
1146c5cf9212SAlan Stern 	}
1147c5cf9212SAlan Stern 
1148c5cf9212SAlan Stern 	/*
1149c5cf9212SAlan Stern 	 * Else reset, to cope with power loss or resume from hibernation
1150c5cf9212SAlan Stern 	 * having let the firmware kick in during reboot.
1151c5cf9212SAlan Stern 	 */
1152c5cf9212SAlan Stern 	usb_root_hub_lost_power(hcd->self.root_hub);
1153c5cf9212SAlan Stern 	(void) ehci_halt(ehci);
1154c5cf9212SAlan Stern 	(void) ehci_reset(ehci);
1155c5cf9212SAlan Stern 
115643fe3a99SAlan Stern 	spin_lock_irq(&ehci->lock);
115743fe3a99SAlan Stern 	if (ehci->shutdown)
115843fe3a99SAlan Stern 		goto skip;
115943fe3a99SAlan Stern 
1160c5cf9212SAlan Stern 	ehci_writel(ehci, ehci->command, &ehci->regs->command);
1161c5cf9212SAlan Stern 	ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
1162c5cf9212SAlan Stern 	ehci_readl(ehci, &ehci->regs->command);	/* unblock posted writes */
1163c5cf9212SAlan Stern 
116443fe3a99SAlan Stern 	ehci->rh_state = EHCI_RH_SUSPENDED;
116543fe3a99SAlan Stern 	spin_unlock_irq(&ehci->lock);
116643fe3a99SAlan Stern 
1167c5cf9212SAlan Stern 	return 1;
1168c5cf9212SAlan Stern }
11693e023203SAlan Stern EXPORT_SYMBOL_GPL(ehci_resume);
1170c5cf9212SAlan Stern 
1171c5cf9212SAlan Stern #endif
1172c5cf9212SAlan Stern 
1173c5cf9212SAlan Stern /*-------------------------------------------------------------------------*/
1174c5cf9212SAlan Stern 
1175eb70e5abSAlexander Shishkin /*
11763e023203SAlan Stern  * Generic structure: This gets copied for platform drivers so that
11773e023203SAlan Stern  * individual entries can be overridden as needed.
11783e023203SAlan Stern  */
11793e023203SAlan Stern 
11803e023203SAlan Stern static const struct hc_driver ehci_hc_driver = {
11813e023203SAlan Stern 	.description =		hcd_name,
11823e023203SAlan Stern 	.product_desc =		"EHCI Host Controller",
11833e023203SAlan Stern 	.hcd_priv_size =	sizeof(struct ehci_hcd),
11843e023203SAlan Stern 
11853e023203SAlan Stern 	/*
11863e023203SAlan Stern 	 * generic hardware linkage
11873e023203SAlan Stern 	 */
11883e023203SAlan Stern 	.irq =			ehci_irq,
1189c04ee4b1SGreg Kroah-Hartman 	.flags =		HCD_MEMORY | HCD_USB2 | HCD_BH,
11903e023203SAlan Stern 
11913e023203SAlan Stern 	/*
11923e023203SAlan Stern 	 * basic lifecycle operations
11933e023203SAlan Stern 	 */
11943e023203SAlan Stern 	.reset =		ehci_setup,
11953e023203SAlan Stern 	.start =		ehci_run,
11963e023203SAlan Stern 	.stop =			ehci_stop,
11973e023203SAlan Stern 	.shutdown =		ehci_shutdown,
11983e023203SAlan Stern 
11993e023203SAlan Stern 	/*
12003e023203SAlan Stern 	 * managing i/o requests and associated device resources
12013e023203SAlan Stern 	 */
12023e023203SAlan Stern 	.urb_enqueue =		ehci_urb_enqueue,
12033e023203SAlan Stern 	.urb_dequeue =		ehci_urb_dequeue,
12043e023203SAlan Stern 	.endpoint_disable =	ehci_endpoint_disable,
12053e023203SAlan Stern 	.endpoint_reset =	ehci_endpoint_reset,
12063e023203SAlan Stern 	.clear_tt_buffer_complete =	ehci_clear_tt_buffer_complete,
12073e023203SAlan Stern 
12083e023203SAlan Stern 	/*
12093e023203SAlan Stern 	 * scheduling support
12103e023203SAlan Stern 	 */
12113e023203SAlan Stern 	.get_frame_number =	ehci_get_frame,
12123e023203SAlan Stern 
12133e023203SAlan Stern 	/*
12143e023203SAlan Stern 	 * root hub support
12153e023203SAlan Stern 	 */
12163e023203SAlan Stern 	.hub_status_data =	ehci_hub_status_data,
12173e023203SAlan Stern 	.hub_control =		ehci_hub_control,
12183e023203SAlan Stern 	.bus_suspend =		ehci_bus_suspend,
12193e023203SAlan Stern 	.bus_resume =		ehci_bus_resume,
12203e023203SAlan Stern 	.relinquish_port =	ehci_relinquish_port,
12213e023203SAlan Stern 	.port_handed_over =	ehci_port_handed_over,
1222b35c5009SAlan Stern 
1223b35c5009SAlan Stern 	/*
1224b35c5009SAlan Stern 	 * device support
1225b35c5009SAlan Stern 	 */
1226b35c5009SAlan Stern 	.free_dev =		ehci_remove_device,
12273e023203SAlan Stern };
12283e023203SAlan Stern 
12293e023203SAlan Stern void ehci_init_driver(struct hc_driver *drv,
12303e023203SAlan Stern 		const struct ehci_driver_overrides *over)
12313e023203SAlan Stern {
12323e023203SAlan Stern 	/* Copy the generic table to drv and then apply the overrides */
12333e023203SAlan Stern 	*drv = ehci_hc_driver;
12343e023203SAlan Stern 
12351b36810eSAlan Stern 	if (over) {
12363e023203SAlan Stern 		drv->hcd_priv_size += over->extra_priv_size;
12373e023203SAlan Stern 		if (over->reset)
12383e023203SAlan Stern 			drv->reset = over->reset;
12393e023203SAlan Stern 	}
12401b36810eSAlan Stern }
12413e023203SAlan Stern EXPORT_SYMBOL_GPL(ehci_init_driver);
12423e023203SAlan Stern 
12433e023203SAlan Stern /*-------------------------------------------------------------------------*/
12443e023203SAlan Stern 
12452b70f073SAlan Stern MODULE_DESCRIPTION(DRIVER_DESC);
12461da177e4SLinus Torvalds MODULE_AUTHOR (DRIVER_AUTHOR);
12471da177e4SLinus Torvalds MODULE_LICENSE ("GPL");
12481da177e4SLinus Torvalds 
1249ba02978aSLi Yang #ifdef CONFIG_USB_EHCI_FSL
125080cb9aeeSRandy Vinson #include "ehci-fsl.c"
125101cced25SKumar Gala #define	PLATFORM_DRIVER		ehci_fsl_driver
125280cb9aeeSRandy Vinson #endif
125380cb9aeeSRandy Vinson 
125460b0bf0fSYoshihiro Shimoda #ifdef CONFIG_USB_EHCI_SH
125563c84552SPaul Mundt #include "ehci-sh.c"
125663c84552SPaul Mundt #define PLATFORM_DRIVER		ehci_hcd_sh_driver
125763c84552SPaul Mundt #endif
125863c84552SPaul Mundt 
1259ad75a410SGeoff Levand #ifdef CONFIG_PPC_PS3
1260ad75a410SGeoff Levand #include "ehci-ps3.c"
12617a4eb7fdSGeoff Levand #define	PS3_SYSTEM_BUS_DRIVER	ps3_ehci_driver
1262ad75a410SGeoff Levand #endif
1263ad75a410SGeoff Levand 
1264da0e8fb0SValentine Barshak #ifdef CONFIG_USB_EHCI_HCD_PPC_OF
1265da0e8fb0SValentine Barshak #include "ehci-ppc-of.c"
1266da0e8fb0SValentine Barshak #define OF_PLATFORM_DRIVER	ehci_hcd_ppc_of_driver
1267da0e8fb0SValentine Barshak #endif
1268da0e8fb0SValentine Barshak 
126908d3c18eSJulie Zhu #ifdef CONFIG_XPS_USB_HCD_XILINX
127008d3c18eSJulie Zhu #include "ehci-xilinx-of.c"
12711f23b2d9SGrant Likely #define XILINX_OF_PLATFORM_DRIVER	ehci_hcd_xilinx_of_driver
127208d3c18eSJulie Zhu #endif
127308d3c18eSJulie Zhu 
12741643accdSDavid Daney #ifdef CONFIG_USB_OCTEON_EHCI
12751643accdSDavid Daney #include "ehci-octeon.c"
12761643accdSDavid Daney #define PLATFORM_DRIVER		ehci_octeon_driver
12771643accdSDavid Daney #endif
12781643accdSDavid Daney 
127947fc28bfSChris Metcalf #ifdef CONFIG_TILE_USB
128047fc28bfSChris Metcalf #include "ehci-tilegx.c"
128147fc28bfSChris Metcalf #define	PLATFORM_DRIVER		ehci_hcd_tilegx_driver
128247fc28bfSChris Metcalf #endif
128347fc28bfSChris Metcalf 
128422ced687SAnoop #ifdef CONFIG_USB_EHCI_HCD_PMC_MSP
128522ced687SAnoop #include "ehci-pmcmsp.c"
128622ced687SAnoop #define	PLATFORM_DRIVER		ehci_hcd_msp_driver
128722ced687SAnoop #endif
128822ced687SAnoop 
12899be03929SJan Andersson #ifdef CONFIG_SPARC_LEON
12909be03929SJan Andersson #include "ehci-grlib.c"
12919be03929SJan Andersson #define PLATFORM_DRIVER		ehci_grlib_driver
12929be03929SJan Andersson #endif
12939be03929SJan Andersson 
12943a082ec9SNeil Zhang #ifdef CONFIG_USB_EHCI_MV
12953a082ec9SNeil Zhang #include "ehci-mv.c"
12963a082ec9SNeil Zhang #define        PLATFORM_DRIVER         ehci_mv_driver
12973a082ec9SNeil Zhang #endif
12983a082ec9SNeil Zhang 
1299c256667fSSteven J. Hill #ifdef CONFIG_MIPS_SEAD3
1300c256667fSSteven J. Hill #include "ehci-sead3.c"
1301c256667fSSteven J. Hill #define	PLATFORM_DRIVER		ehci_hcd_sead3_driver
1302c256667fSSteven J. Hill #endif
1303c256667fSSteven J. Hill 
130401cced25SKumar Gala static int __init ehci_hcd_init(void)
130501cced25SKumar Gala {
130601cced25SKumar Gala 	int retval = 0;
130701cced25SKumar Gala 
13082b70f073SAlan Stern 	if (usb_disabled())
13092b70f073SAlan Stern 		return -ENODEV;
13102b70f073SAlan Stern 
13112b70f073SAlan Stern 	printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
13129beeee65SAlan Stern 	set_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
13139beeee65SAlan Stern 	if (test_bit(USB_UHCI_LOADED, &usb_hcds_loaded) ||
13149beeee65SAlan Stern 			test_bit(USB_OHCI_LOADED, &usb_hcds_loaded))
13159beeee65SAlan Stern 		printk(KERN_WARNING "Warning! ehci_hcd should always be loaded"
13169beeee65SAlan Stern 				" before uhci_hcd and ohci_hcd, not after\n");
13179beeee65SAlan Stern 
131801cced25SKumar Gala 	pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
131901cced25SKumar Gala 		 hcd_name,
132001cced25SKumar Gala 		 sizeof(struct ehci_qh), sizeof(struct ehci_qtd),
132101cced25SKumar Gala 		 sizeof(struct ehci_itd), sizeof(struct ehci_sitd));
132201cced25SKumar Gala 
13231512c91fSXenia Ragiadakou #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
132408f4e586SGreg Kroah-Hartman 	ehci_debug_root = debugfs_create_dir("ehci", usb_debug_root);
13259beeee65SAlan Stern 	if (!ehci_debug_root) {
13269beeee65SAlan Stern 		retval = -ENOENT;
13279beeee65SAlan Stern 		goto err_debug;
13289beeee65SAlan Stern 	}
1329694cc208STony Jones #endif
1330694cc208STony Jones 
133101cced25SKumar Gala #ifdef PLATFORM_DRIVER
133201cced25SKumar Gala 	retval = platform_driver_register(&PLATFORM_DRIVER);
1333da0e8fb0SValentine Barshak 	if (retval < 0)
1334da0e8fb0SValentine Barshak 		goto clean0;
133501cced25SKumar Gala #endif
133601cced25SKumar Gala 
1337ad75a410SGeoff Levand #ifdef PS3_SYSTEM_BUS_DRIVER
13387a4eb7fdSGeoff Levand 	retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
1339da0e8fb0SValentine Barshak 	if (retval < 0)
1340da0e8fb0SValentine Barshak 		goto clean2;
1341da0e8fb0SValentine Barshak #endif
1342da0e8fb0SValentine Barshak 
1343da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER
1344d35fb641SGrant Likely 	retval = platform_driver_register(&OF_PLATFORM_DRIVER);
1345da0e8fb0SValentine Barshak 	if (retval < 0)
1346da0e8fb0SValentine Barshak 		goto clean3;
1347da0e8fb0SValentine Barshak #endif
13481f23b2d9SGrant Likely 
13491f23b2d9SGrant Likely #ifdef XILINX_OF_PLATFORM_DRIVER
1350d35fb641SGrant Likely 	retval = platform_driver_register(&XILINX_OF_PLATFORM_DRIVER);
13511f23b2d9SGrant Likely 	if (retval < 0)
13521f23b2d9SGrant Likely 		goto clean4;
13531f23b2d9SGrant Likely #endif
1354da0e8fb0SValentine Barshak 	return retval;
1355da0e8fb0SValentine Barshak 
13561f23b2d9SGrant Likely #ifdef XILINX_OF_PLATFORM_DRIVER
1357d35fb641SGrant Likely 	/* platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER); */
13581f23b2d9SGrant Likely clean4:
13591f23b2d9SGrant Likely #endif
1360da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER
1361d35fb641SGrant Likely 	platform_driver_unregister(&OF_PLATFORM_DRIVER);
1362da0e8fb0SValentine Barshak clean3:
1363da0e8fb0SValentine Barshak #endif
1364da0e8fb0SValentine Barshak #ifdef PS3_SYSTEM_BUS_DRIVER
1365da0e8fb0SValentine Barshak 	ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1366da0e8fb0SValentine Barshak clean2:
1367da0e8fb0SValentine Barshak #endif
1368da0e8fb0SValentine Barshak #ifdef PLATFORM_DRIVER
1369da0e8fb0SValentine Barshak 	platform_driver_unregister(&PLATFORM_DRIVER);
1370da0e8fb0SValentine Barshak clean0:
1371da0e8fb0SValentine Barshak #endif
13721512c91fSXenia Ragiadakou #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
1373694cc208STony Jones 	debugfs_remove(ehci_debug_root);
1374694cc208STony Jones 	ehci_debug_root = NULL;
13759beeee65SAlan Stern err_debug:
1376a9b6148dSLinus Torvalds #endif
13779beeee65SAlan Stern 	clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
137801cced25SKumar Gala 	return retval;
137901cced25SKumar Gala }
138001cced25SKumar Gala module_init(ehci_hcd_init);
138101cced25SKumar Gala 
138201cced25SKumar Gala static void __exit ehci_hcd_cleanup(void)
138301cced25SKumar Gala {
13841f23b2d9SGrant Likely #ifdef XILINX_OF_PLATFORM_DRIVER
1385d35fb641SGrant Likely 	platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER);
13861f23b2d9SGrant Likely #endif
1387da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER
1388d35fb641SGrant Likely 	platform_driver_unregister(&OF_PLATFORM_DRIVER);
1389da0e8fb0SValentine Barshak #endif
139001cced25SKumar Gala #ifdef PLATFORM_DRIVER
139101cced25SKumar Gala 	platform_driver_unregister(&PLATFORM_DRIVER);
139201cced25SKumar Gala #endif
1393ad75a410SGeoff Levand #ifdef PS3_SYSTEM_BUS_DRIVER
13947a4eb7fdSGeoff Levand 	ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1395ad75a410SGeoff Levand #endif
13961512c91fSXenia Ragiadakou #if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
1397694cc208STony Jones 	debugfs_remove(ehci_debug_root);
1398694cc208STony Jones #endif
13999beeee65SAlan Stern 	clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
140001cced25SKumar Gala }
140101cced25SKumar Gala module_exit(ehci_hcd_cleanup);
1402