USB: EHCI: Allow users to override 80% max periodic bandwidth
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / host / ehci-hcd.c
blob4ee62bef372375bd4088fd4592912d232c64229a
1 /*
2 * Copyright (c) 2000-2004 by David Brownell
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.
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.
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.
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/vmalloc.h>
27 #include <linux/errno.h>
28 #include <linux/init.h>
29 #include <linux/timer.h>
30 #include <linux/ktime.h>
31 #include <linux/list.h>
32 #include <linux/interrupt.h>
33 #include <linux/usb.h>
34 #include <linux/usb/hcd.h>
35 #include <linux/moduleparam.h>
36 #include <linux/dma-mapping.h>
37 #include <linux/debugfs.h>
38 #include <linux/slab.h>
39 #include <linux/uaccess.h>
41 #include <asm/byteorder.h>
42 #include <asm/io.h>
43 #include <asm/irq.h>
44 #include <asm/system.h>
45 #include <asm/unaligned.h>
47 /*-------------------------------------------------------------------------*/
50 * EHCI hc_driver implementation ... experimental, incomplete.
51 * Based on the final 1.0 register interface specification.
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.
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!
63 #define DRIVER_AUTHOR "David Brownell"
64 #define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver"
66 static const char hcd_name [] = "ehci_hcd";
69 #undef VERBOSE_DEBUG
70 #undef EHCI_URB_TRACE
72 #ifdef DEBUG
73 #define EHCI_STATS
74 #endif
76 /* magic numbers that can affect system performance */
77 #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
78 #define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */
79 #define EHCI_TUNE_RL_TT 0
80 #define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */
81 #define EHCI_TUNE_MULT_TT 1
83 * Some drivers think it's safe to schedule isochronous transfers more than
84 * 256 ms into the future (partly as a result of an old bug in the scheduling
85 * code). In an attempt to avoid trouble, we will use a minimum scheduling
86 * length of 512 frames instead of 256.
88 #define EHCI_TUNE_FLS 1 /* (medium) 512-frame schedule */
90 #define EHCI_IAA_MSECS 10 /* arbitrary */
91 #define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */
92 #define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */
93 #define EHCI_SHRINK_FRAMES 5 /* async qh unlink delay */
95 /* Initial IRQ latency: faster than hw default */
96 static int log2_irq_thresh = 0; // 0 to 6
97 module_param (log2_irq_thresh, int, S_IRUGO);
98 MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
100 /* initial park setting: slower than hw default */
101 static unsigned park = 0;
102 module_param (park, uint, S_IRUGO);
103 MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets");
105 /* for flakey hardware, ignore overcurrent indicators */
106 static int ignore_oc = 0;
107 module_param (ignore_oc, bool, S_IRUGO);
108 MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications");
110 /* for link power management(LPM) feature */
111 static unsigned int hird;
112 module_param(hird, int, S_IRUGO);
113 MODULE_PARM_DESC(hird, "host initiated resume duration, +1 for each 75us");
115 #define INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT)
117 /*-------------------------------------------------------------------------*/
119 #include "ehci.h"
120 #include "ehci-dbg.c"
121 #include "pci-quirks.h"
123 /*-------------------------------------------------------------------------*/
125 static void
126 timer_action(struct ehci_hcd *ehci, enum ehci_timer_action action)
128 /* Don't override timeouts which shrink or (later) disable
129 * the async ring; just the I/O watchdog. Note that if a
130 * SHRINK were pending, OFF would never be requested.
132 if (timer_pending(&ehci->watchdog)
133 && ((BIT(TIMER_ASYNC_SHRINK) | BIT(TIMER_ASYNC_OFF))
134 & ehci->actions))
135 return;
137 if (!test_and_set_bit(action, &ehci->actions)) {
138 unsigned long t;
140 switch (action) {
141 case TIMER_IO_WATCHDOG:
142 if (!ehci->need_io_watchdog)
143 return;
144 t = EHCI_IO_JIFFIES;
145 break;
146 case TIMER_ASYNC_OFF:
147 t = EHCI_ASYNC_JIFFIES;
148 break;
149 /* case TIMER_ASYNC_SHRINK: */
150 default:
151 /* add a jiffie since we synch against the
152 * 8 KHz uframe counter.
154 t = DIV_ROUND_UP(EHCI_SHRINK_FRAMES * HZ, 1000) + 1;
155 break;
157 mod_timer(&ehci->watchdog, t + jiffies);
161 /*-------------------------------------------------------------------------*/
164 * handshake - spin reading hc until handshake completes or fails
165 * @ptr: address of hc register to be read
166 * @mask: bits to look at in result of read
167 * @done: value of those bits when handshake succeeds
168 * @usec: timeout in microseconds
170 * Returns negative errno, or zero on success
172 * Success happens when the "mask" bits have the specified value (hardware
173 * handshake done). There are two failure modes: "usec" have passed (major
174 * hardware flakeout), or the register reads as all-ones (hardware removed).
176 * That last failure should_only happen in cases like physical cardbus eject
177 * before driver shutdown. But it also seems to be caused by bugs in cardbus
178 * bridge shutdown: shutting down the bridge before the devices using it.
180 static int handshake (struct ehci_hcd *ehci, void __iomem *ptr,
181 u32 mask, u32 done, int usec)
183 u32 result;
185 do {
186 result = ehci_readl(ehci, ptr);
187 if (result == ~(u32)0) /* card removed */
188 return -ENODEV;
189 result &= mask;
190 if (result == done)
191 return 0;
192 udelay (1);
193 usec--;
194 } while (usec > 0);
195 return -ETIMEDOUT;
198 /* check TDI/ARC silicon is in host mode */
199 static int tdi_in_host_mode (struct ehci_hcd *ehci)
201 u32 __iomem *reg_ptr;
202 u32 tmp;
204 reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE);
205 tmp = ehci_readl(ehci, reg_ptr);
206 return (tmp & 3) == USBMODE_CM_HC;
209 /* force HC to halt state from unknown (EHCI spec section 2.3) */
210 static int ehci_halt (struct ehci_hcd *ehci)
212 u32 temp = ehci_readl(ehci, &ehci->regs->status);
214 /* disable any irqs left enabled by previous code */
215 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
217 if (ehci_is_TDI(ehci) && tdi_in_host_mode(ehci) == 0) {
218 return 0;
221 if ((temp & STS_HALT) != 0)
222 return 0;
224 temp = ehci_readl(ehci, &ehci->regs->command);
225 temp &= ~CMD_RUN;
226 ehci_writel(ehci, temp, &ehci->regs->command);
227 return handshake (ehci, &ehci->regs->status,
228 STS_HALT, STS_HALT, 16 * 125);
231 static int handshake_on_error_set_halt(struct ehci_hcd *ehci, void __iomem *ptr,
232 u32 mask, u32 done, int usec)
234 int error;
236 error = handshake(ehci, ptr, mask, done, usec);
237 if (error) {
238 ehci_halt(ehci);
239 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
240 ehci_err(ehci, "force halt; handshake %p %08x %08x -> %d\n",
241 ptr, mask, done, error);
244 return error;
247 /* put TDI/ARC silicon into EHCI mode */
248 static void tdi_reset (struct ehci_hcd *ehci)
250 u32 __iomem *reg_ptr;
251 u32 tmp;
253 reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE);
254 tmp = ehci_readl(ehci, reg_ptr);
255 tmp |= USBMODE_CM_HC;
256 /* The default byte access to MMR space is LE after
257 * controller reset. Set the required endian mode
258 * for transfer buffers to match the host microprocessor
260 if (ehci_big_endian_mmio(ehci))
261 tmp |= USBMODE_BE;
262 ehci_writel(ehci, tmp, reg_ptr);
265 /* reset a non-running (STS_HALT == 1) controller */
266 static int ehci_reset (struct ehci_hcd *ehci)
268 int retval;
269 u32 command = ehci_readl(ehci, &ehci->regs->command);
271 /* If the EHCI debug controller is active, special care must be
272 * taken before and after a host controller reset */
273 if (ehci->debug && !dbgp_reset_prep())
274 ehci->debug = NULL;
276 command |= CMD_RESET;
277 dbg_cmd (ehci, "reset", command);
278 ehci_writel(ehci, command, &ehci->regs->command);
279 ehci_to_hcd(ehci)->state = HC_STATE_HALT;
280 ehci->next_statechange = jiffies;
281 retval = handshake (ehci, &ehci->regs->command,
282 CMD_RESET, 0, 250 * 1000);
284 if (ehci->has_hostpc) {
285 ehci_writel(ehci, USBMODE_EX_HC | USBMODE_EX_VBPS,
286 (u32 __iomem *)(((u8 *)ehci->regs) + USBMODE_EX));
287 ehci_writel(ehci, TXFIFO_DEFAULT,
288 (u32 __iomem *)(((u8 *)ehci->regs) + TXFILLTUNING));
290 if (retval)
291 return retval;
293 if (ehci_is_TDI(ehci))
294 tdi_reset (ehci);
296 if (ehci->debug)
297 dbgp_external_startup();
299 return retval;
302 /* idle the controller (from running) */
303 static void ehci_quiesce (struct ehci_hcd *ehci)
305 u32 temp;
307 #ifdef DEBUG
308 if (!HC_IS_RUNNING (ehci_to_hcd(ehci)->state))
309 BUG ();
310 #endif
312 /* wait for any schedule enables/disables to take effect */
313 temp = ehci_readl(ehci, &ehci->regs->command) << 10;
314 temp &= STS_ASS | STS_PSS;
315 if (handshake_on_error_set_halt(ehci, &ehci->regs->status,
316 STS_ASS | STS_PSS, temp, 16 * 125))
317 return;
319 /* then disable anything that's still active */
320 temp = ehci_readl(ehci, &ehci->regs->command);
321 temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE);
322 ehci_writel(ehci, temp, &ehci->regs->command);
324 /* hardware can take 16 microframes to turn off ... */
325 handshake_on_error_set_halt(ehci, &ehci->regs->status,
326 STS_ASS | STS_PSS, 0, 16 * 125);
329 /*-------------------------------------------------------------------------*/
331 static void end_unlink_async(struct ehci_hcd *ehci);
332 static void ehci_work(struct ehci_hcd *ehci);
334 #include "ehci-hub.c"
335 #include "ehci-lpm.c"
336 #include "ehci-mem.c"
337 #include "ehci-q.c"
338 #include "ehci-sched.c"
339 #include "ehci-sysfs.c"
341 /*-------------------------------------------------------------------------*/
343 static void ehci_iaa_watchdog(unsigned long param)
345 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
346 unsigned long flags;
348 spin_lock_irqsave (&ehci->lock, flags);
350 /* Lost IAA irqs wedge things badly; seen first with a vt8235.
351 * So we need this watchdog, but must protect it against both
352 * (a) SMP races against real IAA firing and retriggering, and
353 * (b) clean HC shutdown, when IAA watchdog was pending.
355 if (ehci->reclaim
356 && !timer_pending(&ehci->iaa_watchdog)
357 && HC_IS_RUNNING(ehci_to_hcd(ehci)->state)) {
358 u32 cmd, status;
360 /* If we get here, IAA is *REALLY* late. It's barely
361 * conceivable that the system is so busy that CMD_IAAD
362 * is still legitimately set, so let's be sure it's
363 * clear before we read STS_IAA. (The HC should clear
364 * CMD_IAAD when it sets STS_IAA.)
366 cmd = ehci_readl(ehci, &ehci->regs->command);
367 if (cmd & CMD_IAAD)
368 ehci_writel(ehci, cmd & ~CMD_IAAD,
369 &ehci->regs->command);
371 /* If IAA is set here it either legitimately triggered
372 * before we cleared IAAD above (but _way_ late, so we'll
373 * still count it as lost) ... or a silicon erratum:
374 * - VIA seems to set IAA without triggering the IRQ;
375 * - IAAD potentially cleared without setting IAA.
377 status = ehci_readl(ehci, &ehci->regs->status);
378 if ((status & STS_IAA) || !(cmd & CMD_IAAD)) {
379 COUNT (ehci->stats.lost_iaa);
380 ehci_writel(ehci, STS_IAA, &ehci->regs->status);
383 ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n",
384 status, cmd);
385 end_unlink_async(ehci);
388 spin_unlock_irqrestore(&ehci->lock, flags);
391 static void ehci_watchdog(unsigned long param)
393 struct ehci_hcd *ehci = (struct ehci_hcd *) param;
394 unsigned long flags;
396 spin_lock_irqsave(&ehci->lock, flags);
398 /* stop async processing after it's idled a bit */
399 if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
400 start_unlink_async (ehci, ehci->async);
402 /* ehci could run by timer, without IRQs ... */
403 ehci_work (ehci);
405 spin_unlock_irqrestore (&ehci->lock, flags);
408 /* On some systems, leaving remote wakeup enabled prevents system shutdown.
409 * The firmware seems to think that powering off is a wakeup event!
410 * This routine turns off remote wakeup and everything else, on all ports.
412 static void ehci_turn_off_all_ports(struct ehci_hcd *ehci)
414 int port = HCS_N_PORTS(ehci->hcs_params);
416 while (port--)
417 ehci_writel(ehci, PORT_RWC_BITS,
418 &ehci->regs->port_status[port]);
422 * Halt HC, turn off all ports, and let the BIOS use the companion controllers.
423 * Should be called with ehci->lock held.
425 static void ehci_silence_controller(struct ehci_hcd *ehci)
427 ehci_halt(ehci);
428 ehci_turn_off_all_ports(ehci);
430 /* make BIOS/etc use companion controller during reboot */
431 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
433 /* unblock posted writes */
434 ehci_readl(ehci, &ehci->regs->configured_flag);
437 /* ehci_shutdown kick in for silicon on any bus (not just pci, etc).
438 * This forcibly disables dma and IRQs, helping kexec and other cases
439 * where the next system software may expect clean state.
441 static void ehci_shutdown(struct usb_hcd *hcd)
443 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
445 del_timer_sync(&ehci->watchdog);
446 del_timer_sync(&ehci->iaa_watchdog);
448 spin_lock_irq(&ehci->lock);
449 ehci_silence_controller(ehci);
450 spin_unlock_irq(&ehci->lock);
453 static void ehci_port_power (struct ehci_hcd *ehci, int is_on)
455 unsigned port;
457 if (!HCS_PPC (ehci->hcs_params))
458 return;
460 ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down");
461 for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; )
462 (void) ehci_hub_control(ehci_to_hcd(ehci),
463 is_on ? SetPortFeature : ClearPortFeature,
464 USB_PORT_FEAT_POWER,
465 port--, NULL, 0);
466 /* Flush those writes */
467 ehci_readl(ehci, &ehci->regs->command);
468 msleep(20);
471 /*-------------------------------------------------------------------------*/
474 * ehci_work is called from some interrupts, timers, and so on.
475 * it calls driver completion functions, after dropping ehci->lock.
477 static void ehci_work (struct ehci_hcd *ehci)
479 timer_action_done (ehci, TIMER_IO_WATCHDOG);
481 /* another CPU may drop ehci->lock during a schedule scan while
482 * it reports urb completions. this flag guards against bogus
483 * attempts at re-entrant schedule scanning.
485 if (ehci->scanning)
486 return;
487 ehci->scanning = 1;
488 scan_async (ehci);
489 if (ehci->next_uframe != -1)
490 scan_periodic (ehci);
491 ehci->scanning = 0;
493 /* the IO watchdog guards against hardware or driver bugs that
494 * misplace IRQs, and should let us run completely without IRQs.
495 * such lossage has been observed on both VT6202 and VT8235.
497 if (HC_IS_RUNNING (ehci_to_hcd(ehci)->state) &&
498 (ehci->async->qh_next.ptr != NULL ||
499 ehci->periodic_sched != 0))
500 timer_action (ehci, TIMER_IO_WATCHDOG);
504 * Called when the ehci_hcd module is removed.
506 static void ehci_stop (struct usb_hcd *hcd)
508 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
510 ehci_dbg (ehci, "stop\n");
512 /* no more interrupts ... */
513 del_timer_sync (&ehci->watchdog);
514 del_timer_sync(&ehci->iaa_watchdog);
516 spin_lock_irq(&ehci->lock);
517 if (HC_IS_RUNNING (hcd->state))
518 ehci_quiesce (ehci);
520 ehci_silence_controller(ehci);
521 ehci_reset (ehci);
522 spin_unlock_irq(&ehci->lock);
524 remove_sysfs_files(ehci);
525 remove_debug_files (ehci);
527 /* root hub is shut down separately (first, when possible) */
528 spin_lock_irq (&ehci->lock);
529 if (ehci->async)
530 ehci_work (ehci);
531 spin_unlock_irq (&ehci->lock);
532 ehci_mem_cleanup (ehci);
534 if (ehci->amd_pll_fix == 1)
535 usb_amd_dev_put();
537 #ifdef EHCI_STATS
538 ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n",
539 ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim,
540 ehci->stats.lost_iaa);
541 ehci_dbg (ehci, "complete %ld unlink %ld\n",
542 ehci->stats.complete, ehci->stats.unlink);
543 #endif
545 dbg_status (ehci, "ehci_stop completed",
546 ehci_readl(ehci, &ehci->regs->status));
549 /* one-time init, only for memory state */
550 static int ehci_init(struct usb_hcd *hcd)
552 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
553 u32 temp;
554 int retval;
555 u32 hcc_params;
556 struct ehci_qh_hw *hw;
558 spin_lock_init(&ehci->lock);
561 * keep io watchdog by default, those good HCDs could turn off it later
563 ehci->need_io_watchdog = 1;
564 init_timer(&ehci->watchdog);
565 ehci->watchdog.function = ehci_watchdog;
566 ehci->watchdog.data = (unsigned long) ehci;
568 init_timer(&ehci->iaa_watchdog);
569 ehci->iaa_watchdog.function = ehci_iaa_watchdog;
570 ehci->iaa_watchdog.data = (unsigned long) ehci;
572 hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
575 * by default set standard 80% (== 100 usec/uframe) max periodic
576 * bandwidth as required by USB 2.0
578 ehci->uframe_periodic_max = 100;
581 * hw default: 1K periodic list heads, one per frame.
582 * periodic_size can shrink by USBCMD update if hcc_params allows.
584 ehci->periodic_size = DEFAULT_I_TDPS;
585 INIT_LIST_HEAD(&ehci->cached_itd_list);
586 INIT_LIST_HEAD(&ehci->cached_sitd_list);
588 if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
589 /* periodic schedule size can be smaller than default */
590 switch (EHCI_TUNE_FLS) {
591 case 0: ehci->periodic_size = 1024; break;
592 case 1: ehci->periodic_size = 512; break;
593 case 2: ehci->periodic_size = 256; break;
594 default: BUG();
597 if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0)
598 return retval;
600 /* controllers may cache some of the periodic schedule ... */
601 if (HCC_ISOC_CACHE(hcc_params)) // full frame cache
602 ehci->i_thresh = 2 + 8;
603 else // N microframes cached
604 ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
606 ehci->reclaim = NULL;
607 ehci->next_uframe = -1;
608 ehci->clock_frame = -1;
611 * dedicate a qh for the async ring head, since we couldn't unlink
612 * a 'real' qh without stopping the async schedule [4.8]. use it
613 * as the 'reclamation list head' too.
614 * its dummy is used in hw_alt_next of many tds, to prevent the qh
615 * from automatically advancing to the next td after short reads.
617 ehci->async->qh_next.qh = NULL;
618 hw = ehci->async->hw;
619 hw->hw_next = QH_NEXT(ehci, ehci->async->qh_dma);
620 hw->hw_info1 = cpu_to_hc32(ehci, QH_HEAD);
621 hw->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT);
622 hw->hw_qtd_next = EHCI_LIST_END(ehci);
623 ehci->async->qh_state = QH_STATE_LINKED;
624 hw->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma);
626 /* clear interrupt enables, set irq latency */
627 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
628 log2_irq_thresh = 0;
629 temp = 1 << (16 + log2_irq_thresh);
630 if (HCC_PER_PORT_CHANGE_EVENT(hcc_params)) {
631 ehci->has_ppcd = 1;
632 ehci_dbg(ehci, "enable per-port change event\n");
633 temp |= CMD_PPCEE;
635 if (HCC_CANPARK(hcc_params)) {
636 /* HW default park == 3, on hardware that supports it (like
637 * NVidia and ALI silicon), maximizes throughput on the async
638 * schedule by avoiding QH fetches between transfers.
640 * With fast usb storage devices and NForce2, "park" seems to
641 * make problems: throughput reduction (!), data errors...
643 if (park) {
644 park = min(park, (unsigned) 3);
645 temp |= CMD_PARK;
646 temp |= park << 8;
648 ehci_dbg(ehci, "park %d\n", park);
650 if (HCC_PGM_FRAMELISTLEN(hcc_params)) {
651 /* periodic schedule size can be smaller than default */
652 temp &= ~(3 << 2);
653 temp |= (EHCI_TUNE_FLS << 2);
655 if (HCC_LPM(hcc_params)) {
656 /* support link power management EHCI 1.1 addendum */
657 ehci_dbg(ehci, "support lpm\n");
658 ehci->has_lpm = 1;
659 if (hird > 0xf) {
660 ehci_dbg(ehci, "hird %d invalid, use default 0",
661 hird);
662 hird = 0;
664 temp |= hird << 24;
666 ehci->command = temp;
668 /* Accept arbitrarily long scatter-gather lists */
669 if (!(hcd->driver->flags & HCD_LOCAL_MEM))
670 hcd->self.sg_tablesize = ~0;
671 return 0;
674 /* start HC running; it's halted, ehci_init() has been run (once) */
675 static int ehci_run (struct usb_hcd *hcd)
677 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
678 int retval;
679 u32 temp;
680 u32 hcc_params;
682 hcd->uses_new_polling = 1;
684 /* EHCI spec section 4.1 */
686 * TDI driver does the ehci_reset in their reset callback.
687 * Don't reset here, because configuration settings will
688 * vanish.
690 if (!ehci_is_TDI(ehci) && (retval = ehci_reset(ehci)) != 0) {
691 ehci_mem_cleanup(ehci);
692 return retval;
694 ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list);
695 ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next);
698 * hcc_params controls whether ehci->regs->segment must (!!!)
699 * be used; it constrains QH/ITD/SITD and QTD locations.
700 * pci_pool consistent memory always uses segment zero.
701 * streaming mappings for I/O buffers, like pci_map_single(),
702 * can return segments above 4GB, if the device allows.
704 * NOTE: the dma mask is visible through dma_supported(), so
705 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
706 * Scsi_Host.highmem_io, and so forth. It's readonly to all
707 * host side drivers though.
709 hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params);
710 if (HCC_64BIT_ADDR(hcc_params)) {
711 ehci_writel(ehci, 0, &ehci->regs->segment);
712 #if 0
713 // this is deeply broken on almost all architectures
714 if (!dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64)))
715 ehci_info(ehci, "enabled 64bit DMA\n");
716 #endif
720 // Philips, Intel, and maybe others need CMD_RUN before the
721 // root hub will detect new devices (why?); NEC doesn't
722 ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
723 ehci->command |= CMD_RUN;
724 ehci_writel(ehci, ehci->command, &ehci->regs->command);
725 dbg_cmd (ehci, "init", ehci->command);
728 * Start, enabling full USB 2.0 functionality ... usb 1.1 devices
729 * are explicitly handed to companion controller(s), so no TT is
730 * involved with the root hub. (Except where one is integrated,
731 * and there's no companion controller unless maybe for USB OTG.)
733 * Turning on the CF flag will transfer ownership of all ports
734 * from the companions to the EHCI controller. If any of the
735 * companions are in the middle of a port reset at the time, it
736 * could cause trouble. Write-locking ehci_cf_port_reset_rwsem
737 * guarantees that no resets are in progress. After we set CF,
738 * a short delay lets the hardware catch up; new resets shouldn't
739 * be started before the port switching actions could complete.
741 down_write(&ehci_cf_port_reset_rwsem);
742 hcd->state = HC_STATE_RUNNING;
743 ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag);
744 ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */
745 msleep(5);
746 up_write(&ehci_cf_port_reset_rwsem);
747 ehci->last_periodic_enable = ktime_get_real();
749 temp = HC_VERSION(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
750 ehci_info (ehci,
751 "USB %x.%x started, EHCI %x.%02x%s\n",
752 ((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f),
753 temp >> 8, temp & 0xff,
754 ignore_oc ? ", overcurrent ignored" : "");
756 ehci_writel(ehci, INTR_MASK,
757 &ehci->regs->intr_enable); /* Turn On Interrupts */
759 /* GRR this is run-once init(), being done every time the HC starts.
760 * So long as they're part of class devices, we can't do it init()
761 * since the class device isn't created that early.
763 create_debug_files(ehci);
764 create_sysfs_files(ehci);
766 return 0;
769 /*-------------------------------------------------------------------------*/
771 static irqreturn_t ehci_irq (struct usb_hcd *hcd)
773 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
774 u32 status, masked_status, pcd_status = 0, cmd;
775 int bh;
777 spin_lock (&ehci->lock);
779 status = ehci_readl(ehci, &ehci->regs->status);
781 /* e.g. cardbus physical eject */
782 if (status == ~(u32) 0) {
783 ehci_dbg (ehci, "device removed\n");
784 goto dead;
787 /* Shared IRQ? */
788 masked_status = status & INTR_MASK;
789 if (!masked_status || unlikely(hcd->state == HC_STATE_HALT)) {
790 spin_unlock(&ehci->lock);
791 return IRQ_NONE;
794 /* clear (just) interrupts */
795 ehci_writel(ehci, masked_status, &ehci->regs->status);
796 cmd = ehci_readl(ehci, &ehci->regs->command);
797 bh = 0;
799 #ifdef VERBOSE_DEBUG
800 /* unrequested/ignored: Frame List Rollover */
801 dbg_status (ehci, "irq", status);
802 #endif
804 /* INT, ERR, and IAA interrupt rates can be throttled */
806 /* normal [4.15.1.2] or error [4.15.1.1] completion */
807 if (likely ((status & (STS_INT|STS_ERR)) != 0)) {
808 if (likely ((status & STS_ERR) == 0))
809 COUNT (ehci->stats.normal);
810 else
811 COUNT (ehci->stats.error);
812 bh = 1;
815 /* complete the unlinking of some qh [4.15.2.3] */
816 if (status & STS_IAA) {
817 /* guard against (alleged) silicon errata */
818 if (cmd & CMD_IAAD) {
819 ehci_writel(ehci, cmd & ~CMD_IAAD,
820 &ehci->regs->command);
821 ehci_dbg(ehci, "IAA with IAAD still set?\n");
823 if (ehci->reclaim) {
824 COUNT(ehci->stats.reclaim);
825 end_unlink_async(ehci);
826 } else
827 ehci_dbg(ehci, "IAA with nothing to reclaim?\n");
830 /* remote wakeup [4.3.1] */
831 if (status & STS_PCD) {
832 unsigned i = HCS_N_PORTS (ehci->hcs_params);
833 u32 ppcd = 0;
835 /* kick root hub later */
836 pcd_status = status;
838 /* resume root hub? */
839 if (!(cmd & CMD_RUN))
840 usb_hcd_resume_root_hub(hcd);
842 /* get per-port change detect bits */
843 if (ehci->has_ppcd)
844 ppcd = status >> 16;
846 while (i--) {
847 int pstatus;
849 /* leverage per-port change bits feature */
850 if (ehci->has_ppcd && !(ppcd & (1 << i)))
851 continue;
852 pstatus = ehci_readl(ehci,
853 &ehci->regs->port_status[i]);
855 if (pstatus & PORT_OWNER)
856 continue;
857 if (!(test_bit(i, &ehci->suspended_ports) &&
858 ((pstatus & PORT_RESUME) ||
859 !(pstatus & PORT_SUSPEND)) &&
860 (pstatus & PORT_PE) &&
861 ehci->reset_done[i] == 0))
862 continue;
864 /* start 20 msec resume signaling from this port,
865 * and make khubd collect PORT_STAT_C_SUSPEND to
866 * stop that signaling. Use 5 ms extra for safety,
867 * like usb_port_resume() does.
869 ehci->reset_done[i] = jiffies + msecs_to_jiffies(25);
870 ehci_dbg (ehci, "port %d remote wakeup\n", i + 1);
871 mod_timer(&hcd->rh_timer, ehci->reset_done[i]);
875 /* PCI errors [4.15.2.4] */
876 if (unlikely ((status & STS_FATAL) != 0)) {
877 ehci_err(ehci, "fatal error\n");
878 dbg_cmd(ehci, "fatal", cmd);
879 dbg_status(ehci, "fatal", status);
880 ehci_halt(ehci);
881 dead:
882 ehci_reset(ehci);
883 ehci_writel(ehci, 0, &ehci->regs->configured_flag);
884 usb_hc_died(hcd);
885 /* generic layer kills/unlinks all urbs, then
886 * uses ehci_stop to clean up the rest
888 bh = 1;
891 if (bh)
892 ehci_work (ehci);
893 spin_unlock (&ehci->lock);
894 if (pcd_status)
895 usb_hcd_poll_rh_status(hcd);
896 return IRQ_HANDLED;
899 /*-------------------------------------------------------------------------*/
902 * non-error returns are a promise to giveback() the urb later
903 * we drop ownership so next owner (or urb unlink) can get it
905 * urb + dev is in hcd.self.controller.urb_list
906 * we're queueing TDs onto software and hardware lists
908 * hcd-specific init for hcpriv hasn't been done yet
910 * NOTE: control, bulk, and interrupt share the same code to append TDs
911 * to a (possibly active) QH, and the same QH scanning code.
913 static int ehci_urb_enqueue (
914 struct usb_hcd *hcd,
915 struct urb *urb,
916 gfp_t mem_flags
918 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
919 struct list_head qtd_list;
921 INIT_LIST_HEAD (&qtd_list);
923 switch (usb_pipetype (urb->pipe)) {
924 case PIPE_CONTROL:
925 /* qh_completions() code doesn't handle all the fault cases
926 * in multi-TD control transfers. Even 1KB is rare anyway.
928 if (urb->transfer_buffer_length > (16 * 1024))
929 return -EMSGSIZE;
930 /* FALLTHROUGH */
931 /* case PIPE_BULK: */
932 default:
933 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
934 return -ENOMEM;
935 return submit_async(ehci, urb, &qtd_list, mem_flags);
937 case PIPE_INTERRUPT:
938 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags))
939 return -ENOMEM;
940 return intr_submit(ehci, urb, &qtd_list, mem_flags);
942 case PIPE_ISOCHRONOUS:
943 if (urb->dev->speed == USB_SPEED_HIGH)
944 return itd_submit (ehci, urb, mem_flags);
945 else
946 return sitd_submit (ehci, urb, mem_flags);
950 static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh)
952 /* failfast */
953 if (!HC_IS_RUNNING(ehci_to_hcd(ehci)->state) && ehci->reclaim)
954 end_unlink_async(ehci);
956 /* If the QH isn't linked then there's nothing we can do
957 * unless we were called during a giveback, in which case
958 * qh_completions() has to deal with it.
960 if (qh->qh_state != QH_STATE_LINKED) {
961 if (qh->qh_state == QH_STATE_COMPLETING)
962 qh->needs_rescan = 1;
963 return;
966 /* defer till later if busy */
967 if (ehci->reclaim) {
968 struct ehci_qh *last;
970 for (last = ehci->reclaim;
971 last->reclaim;
972 last = last->reclaim)
973 continue;
974 qh->qh_state = QH_STATE_UNLINK_WAIT;
975 last->reclaim = qh;
977 /* start IAA cycle */
978 } else
979 start_unlink_async (ehci, qh);
982 /* remove from hardware lists
983 * completions normally happen asynchronously
986 static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
988 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
989 struct ehci_qh *qh;
990 unsigned long flags;
991 int rc;
993 spin_lock_irqsave (&ehci->lock, flags);
994 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
995 if (rc)
996 goto done;
998 switch (usb_pipetype (urb->pipe)) {
999 // case PIPE_CONTROL:
1000 // case PIPE_BULK:
1001 default:
1002 qh = (struct ehci_qh *) urb->hcpriv;
1003 if (!qh)
1004 break;
1005 switch (qh->qh_state) {
1006 case QH_STATE_LINKED:
1007 case QH_STATE_COMPLETING:
1008 unlink_async(ehci, qh);
1009 break;
1010 case QH_STATE_UNLINK:
1011 case QH_STATE_UNLINK_WAIT:
1012 /* already started */
1013 break;
1014 case QH_STATE_IDLE:
1015 /* QH might be waiting for a Clear-TT-Buffer */
1016 qh_completions(ehci, qh);
1017 break;
1019 break;
1021 case PIPE_INTERRUPT:
1022 qh = (struct ehci_qh *) urb->hcpriv;
1023 if (!qh)
1024 break;
1025 switch (qh->qh_state) {
1026 case QH_STATE_LINKED:
1027 case QH_STATE_COMPLETING:
1028 intr_deschedule (ehci, qh);
1029 break;
1030 case QH_STATE_IDLE:
1031 qh_completions (ehci, qh);
1032 break;
1033 default:
1034 ehci_dbg (ehci, "bogus qh %p state %d\n",
1035 qh, qh->qh_state);
1036 goto done;
1038 break;
1040 case PIPE_ISOCHRONOUS:
1041 // itd or sitd ...
1043 // wait till next completion, do it then.
1044 // completion irqs can wait up to 1024 msec,
1045 break;
1047 done:
1048 spin_unlock_irqrestore (&ehci->lock, flags);
1049 return rc;
1052 /*-------------------------------------------------------------------------*/
1054 // bulk qh holds the data toggle
1056 static void
1057 ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
1059 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
1060 unsigned long flags;
1061 struct ehci_qh *qh, *tmp;
1063 /* ASSERT: any requests/urbs are being unlinked */
1064 /* ASSERT: nobody can be submitting urbs for this any more */
1066 rescan:
1067 spin_lock_irqsave (&ehci->lock, flags);
1068 qh = ep->hcpriv;
1069 if (!qh)
1070 goto done;
1072 /* endpoints can be iso streams. for now, we don't
1073 * accelerate iso completions ... so spin a while.
1075 if (qh->hw == NULL) {
1076 ehci_vdbg (ehci, "iso delay\n");
1077 goto idle_timeout;
1080 if (!HC_IS_RUNNING (hcd->state))
1081 qh->qh_state = QH_STATE_IDLE;
1082 switch (qh->qh_state) {
1083 case QH_STATE_LINKED:
1084 case QH_STATE_COMPLETING:
1085 for (tmp = ehci->async->qh_next.qh;
1086 tmp && tmp != qh;
1087 tmp = tmp->qh_next.qh)
1088 continue;
1089 /* periodic qh self-unlinks on empty, and a COMPLETING qh
1090 * may already be unlinked.
1092 if (tmp)
1093 unlink_async(ehci, qh);
1094 /* FALL THROUGH */
1095 case QH_STATE_UNLINK: /* wait for hw to finish? */
1096 case QH_STATE_UNLINK_WAIT:
1097 idle_timeout:
1098 spin_unlock_irqrestore (&ehci->lock, flags);
1099 schedule_timeout_uninterruptible(1);
1100 goto rescan;
1101 case QH_STATE_IDLE: /* fully unlinked */
1102 if (qh->clearing_tt)
1103 goto idle_timeout;
1104 if (list_empty (&qh->qtd_list)) {
1105 qh_put (qh);
1106 break;
1108 /* else FALL THROUGH */
1109 default:
1110 /* caller was supposed to have unlinked any requests;
1111 * that's not our job. just leak this memory.
1113 ehci_err (ehci, "qh %p (#%02x) state %d%s\n",
1114 qh, ep->desc.bEndpointAddress, qh->qh_state,
1115 list_empty (&qh->qtd_list) ? "" : "(has tds)");
1116 break;
1118 ep->hcpriv = NULL;
1119 done:
1120 spin_unlock_irqrestore (&ehci->lock, flags);
1123 static void
1124 ehci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep)
1126 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
1127 struct ehci_qh *qh;
1128 int eptype = usb_endpoint_type(&ep->desc);
1129 int epnum = usb_endpoint_num(&ep->desc);
1130 int is_out = usb_endpoint_dir_out(&ep->desc);
1131 unsigned long flags;
1133 if (eptype != USB_ENDPOINT_XFER_BULK && eptype != USB_ENDPOINT_XFER_INT)
1134 return;
1136 spin_lock_irqsave(&ehci->lock, flags);
1137 qh = ep->hcpriv;
1139 /* For Bulk and Interrupt endpoints we maintain the toggle state
1140 * in the hardware; the toggle bits in udev aren't used at all.
1141 * When an endpoint is reset by usb_clear_halt() we must reset
1142 * the toggle bit in the QH.
1144 if (qh) {
1145 usb_settoggle(qh->dev, epnum, is_out, 0);
1146 if (!list_empty(&qh->qtd_list)) {
1147 WARN_ONCE(1, "clear_halt for a busy endpoint\n");
1148 } else if (qh->qh_state == QH_STATE_LINKED ||
1149 qh->qh_state == QH_STATE_COMPLETING) {
1151 /* The toggle value in the QH can't be updated
1152 * while the QH is active. Unlink it now;
1153 * re-linking will call qh_refresh().
1155 if (eptype == USB_ENDPOINT_XFER_BULK)
1156 unlink_async(ehci, qh);
1157 else
1158 intr_deschedule(ehci, qh);
1161 spin_unlock_irqrestore(&ehci->lock, flags);
1164 static int ehci_get_frame (struct usb_hcd *hcd)
1166 struct ehci_hcd *ehci = hcd_to_ehci (hcd);
1167 return (ehci_readl(ehci, &ehci->regs->frame_index) >> 3) %
1168 ehci->periodic_size;
1171 /*-------------------------------------------------------------------------*/
1173 MODULE_DESCRIPTION(DRIVER_DESC);
1174 MODULE_AUTHOR (DRIVER_AUTHOR);
1175 MODULE_LICENSE ("GPL");
1177 #ifdef CONFIG_PCI
1178 #include "ehci-pci.c"
1179 #define PCI_DRIVER ehci_pci_driver
1180 #endif
1182 #ifdef CONFIG_USB_EHCI_FSL
1183 #include "ehci-fsl.c"
1184 #define PLATFORM_DRIVER ehci_fsl_driver
1185 #endif
1187 #ifdef CONFIG_USB_EHCI_MXC
1188 #include "ehci-mxc.c"
1189 #define PLATFORM_DRIVER ehci_mxc_driver
1190 #endif
1192 #ifdef CONFIG_USB_EHCI_SH
1193 #include "ehci-sh.c"
1194 #define PLATFORM_DRIVER ehci_hcd_sh_driver
1195 #endif
1197 #ifdef CONFIG_SOC_AU1200
1198 #include "ehci-au1xxx.c"
1199 #define PLATFORM_DRIVER ehci_hcd_au1xxx_driver
1200 #endif
1202 #ifdef CONFIG_USB_EHCI_HCD_OMAP
1203 #include "ehci-omap.c"
1204 #define PLATFORM_DRIVER ehci_hcd_omap_driver
1205 #endif
1207 #ifdef CONFIG_PPC_PS3
1208 #include "ehci-ps3.c"
1209 #define PS3_SYSTEM_BUS_DRIVER ps3_ehci_driver
1210 #endif
1212 #ifdef CONFIG_USB_EHCI_HCD_PPC_OF
1213 #include "ehci-ppc-of.c"
1214 #define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver
1215 #endif
1217 #ifdef CONFIG_XPS_USB_HCD_XILINX
1218 #include "ehci-xilinx-of.c"
1219 #define XILINX_OF_PLATFORM_DRIVER ehci_hcd_xilinx_of_driver
1220 #endif
1222 #ifdef CONFIG_PLAT_ORION
1223 #include "ehci-orion.c"
1224 #define PLATFORM_DRIVER ehci_orion_driver
1225 #endif
1227 #ifdef CONFIG_ARCH_IXP4XX
1228 #include "ehci-ixp4xx.c"
1229 #define PLATFORM_DRIVER ixp4xx_ehci_driver
1230 #endif
1232 #ifdef CONFIG_USB_W90X900_EHCI
1233 #include "ehci-w90x900.c"
1234 #define PLATFORM_DRIVER ehci_hcd_w90x900_driver
1235 #endif
1237 #ifdef CONFIG_ARCH_AT91
1238 #include "ehci-atmel.c"
1239 #define PLATFORM_DRIVER ehci_atmel_driver
1240 #endif
1242 #ifdef CONFIG_USB_OCTEON_EHCI
1243 #include "ehci-octeon.c"
1244 #define PLATFORM_DRIVER ehci_octeon_driver
1245 #endif
1247 #ifdef CONFIG_USB_CNS3XXX_EHCI
1248 #include "ehci-cns3xxx.c"
1249 #define PLATFORM_DRIVER cns3xxx_ehci_driver
1250 #endif
1252 #ifdef CONFIG_ARCH_VT8500
1253 #include "ehci-vt8500.c"
1254 #define PLATFORM_DRIVER vt8500_ehci_driver
1255 #endif
1257 #ifdef CONFIG_PLAT_SPEAR
1258 #include "ehci-spear.c"
1259 #define PLATFORM_DRIVER spear_ehci_hcd_driver
1260 #endif
1262 #ifdef CONFIG_USB_EHCI_MSM
1263 #include "ehci-msm.c"
1264 #define PLATFORM_DRIVER ehci_msm_driver
1265 #endif
1267 #ifdef CONFIG_USB_EHCI_HCD_PMC_MSP
1268 #include "ehci-pmcmsp.c"
1269 #define PLATFORM_DRIVER ehci_hcd_msp_driver
1270 #endif
1272 #ifdef CONFIG_USB_EHCI_TEGRA
1273 #include "ehci-tegra.c"
1274 #define PLATFORM_DRIVER tegra_ehci_driver
1275 #endif
1277 #ifdef CONFIG_USB_EHCI_S5P
1278 #include "ehci-s5p.c"
1279 #define PLATFORM_DRIVER s5p_ehci_driver
1280 #endif
1282 #ifdef CONFIG_USB_EHCI_ATH79
1283 #include "ehci-ath79.c"
1284 #define PLATFORM_DRIVER ehci_ath79_driver
1285 #endif
1287 #ifdef CONFIG_SPARC_LEON
1288 #include "ehci-grlib.c"
1289 #define PLATFORM_DRIVER ehci_grlib_driver
1290 #endif
1292 #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
1293 !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \
1294 !defined(XILINX_OF_PLATFORM_DRIVER)
1295 #error "missing bus glue for ehci-hcd"
1296 #endif
1298 static int __init ehci_hcd_init(void)
1300 int retval = 0;
1302 if (usb_disabled())
1303 return -ENODEV;
1305 printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
1306 set_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
1307 if (test_bit(USB_UHCI_LOADED, &usb_hcds_loaded) ||
1308 test_bit(USB_OHCI_LOADED, &usb_hcds_loaded))
1309 printk(KERN_WARNING "Warning! ehci_hcd should always be loaded"
1310 " before uhci_hcd and ohci_hcd, not after\n");
1312 pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n",
1313 hcd_name,
1314 sizeof(struct ehci_qh), sizeof(struct ehci_qtd),
1315 sizeof(struct ehci_itd), sizeof(struct ehci_sitd));
1317 #ifdef DEBUG
1318 ehci_debug_root = debugfs_create_dir("ehci", usb_debug_root);
1319 if (!ehci_debug_root) {
1320 retval = -ENOENT;
1321 goto err_debug;
1323 #endif
1325 #ifdef PLATFORM_DRIVER
1326 retval = platform_driver_register(&PLATFORM_DRIVER);
1327 if (retval < 0)
1328 goto clean0;
1329 #endif
1331 #ifdef PCI_DRIVER
1332 retval = pci_register_driver(&PCI_DRIVER);
1333 if (retval < 0)
1334 goto clean1;
1335 #endif
1337 #ifdef PS3_SYSTEM_BUS_DRIVER
1338 retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
1339 if (retval < 0)
1340 goto clean2;
1341 #endif
1343 #ifdef OF_PLATFORM_DRIVER
1344 retval = platform_driver_register(&OF_PLATFORM_DRIVER);
1345 if (retval < 0)
1346 goto clean3;
1347 #endif
1349 #ifdef XILINX_OF_PLATFORM_DRIVER
1350 retval = platform_driver_register(&XILINX_OF_PLATFORM_DRIVER);
1351 if (retval < 0)
1352 goto clean4;
1353 #endif
1354 return retval;
1356 #ifdef XILINX_OF_PLATFORM_DRIVER
1357 /* platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER); */
1358 clean4:
1359 #endif
1360 #ifdef OF_PLATFORM_DRIVER
1361 platform_driver_unregister(&OF_PLATFORM_DRIVER);
1362 clean3:
1363 #endif
1364 #ifdef PS3_SYSTEM_BUS_DRIVER
1365 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1366 clean2:
1367 #endif
1368 #ifdef PCI_DRIVER
1369 pci_unregister_driver(&PCI_DRIVER);
1370 clean1:
1371 #endif
1372 #ifdef PLATFORM_DRIVER
1373 platform_driver_unregister(&PLATFORM_DRIVER);
1374 clean0:
1375 #endif
1376 #ifdef DEBUG
1377 debugfs_remove(ehci_debug_root);
1378 ehci_debug_root = NULL;
1379 err_debug:
1380 #endif
1381 clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
1382 return retval;
1384 module_init(ehci_hcd_init);
1386 static void __exit ehci_hcd_cleanup(void)
1388 #ifdef XILINX_OF_PLATFORM_DRIVER
1389 platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER);
1390 #endif
1391 #ifdef OF_PLATFORM_DRIVER
1392 platform_driver_unregister(&OF_PLATFORM_DRIVER);
1393 #endif
1394 #ifdef PLATFORM_DRIVER
1395 platform_driver_unregister(&PLATFORM_DRIVER);
1396 #endif
1397 #ifdef PCI_DRIVER
1398 pci_unregister_driver(&PCI_DRIVER);
1399 #endif
1400 #ifdef PS3_SYSTEM_BUS_DRIVER
1401 ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1402 #endif
1403 #ifdef DEBUG
1404 debugfs_remove(ehci_debug_root);
1405 #endif
1406 clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded);
1408 module_exit(ehci_hcd_cleanup);