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