2 * OHCI HCD (Host Controller Driver) for USB.
4 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
5 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
7 * [ Initialisation is based on Linus' ]
8 * [ uhci code and gregs ohci fragments ]
9 * [ (C) Copyright 1999 Linus Torvalds ]
10 * [ (C) Copyright 1999 Gregory P. Smith]
13 * OHCI is the main "non-Intel/VIA" standard for USB 1.1 host controller
14 * interfaces (though some non-x86 Intel chips use it). It supports
15 * smarter hardware than UHCI. A download link for the spec available
16 * through the http://www.usb.org website.
18 * This file is licenced under the GPL.
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/pci.h>
24 #include <linux/kernel.h>
25 #include <linux/delay.h>
26 #include <linux/ioport.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/errno.h>
30 #include <linux/init.h>
31 #include <linux/timer.h>
32 #include <linux/list.h>
33 #include <linux/usb.h>
34 #include <linux/usb/otg.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/dmapool.h>
37 #include <linux/reboot.h>
38 #include <linux/workqueue.h>
42 #include <asm/system.h>
43 #include <asm/unaligned.h>
44 #include <asm/byteorder.h>
46 #include "../core/hcd.h"
48 #define DRIVER_VERSION "2006 August 04"
49 #define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell"
50 #define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver"
52 /*-------------------------------------------------------------------------*/
54 #undef OHCI_VERBOSE_DEBUG /* not always helpful */
56 /* For initializing controller (mask in an HCFS mode too) */
57 #define OHCI_CONTROL_INIT OHCI_CTRL_CBSR
58 #define OHCI_INTR_INIT \
59 (OHCI_INTR_MIE | OHCI_INTR_RHSC | OHCI_INTR_UE \
60 | OHCI_INTR_RD | OHCI_INTR_WDH)
63 /* On PA-RISC, PDC can leave IR set incorrectly; ignore it there. */
67 #ifdef CONFIG_ARCH_OMAP
68 /* OMAP doesn't support IR (no SMM; not needed) */
72 /*-------------------------------------------------------------------------*/
74 static const char hcd_name
[] = "ohci_hcd";
76 #define STATECHANGE_DELAY msecs_to_jiffies(300)
80 static void ohci_dump (struct ohci_hcd
*ohci
, int verbose
);
81 static int ohci_init (struct ohci_hcd
*ohci
);
82 static void ohci_stop (struct usb_hcd
*hcd
);
83 static int ohci_restart (struct ohci_hcd
*ohci
);
84 static void ohci_quirk_nec_worker (struct work_struct
*work
);
93 * On architectures with edge-triggered interrupts we must never return
96 #if defined(CONFIG_SA1111) /* ... or other edge-triggered systems */
97 #define IRQ_NOTMINE IRQ_HANDLED
99 #define IRQ_NOTMINE IRQ_NONE
103 /* Some boards misreport power switching/overcurrent */
104 static int distrust_firmware
= 1;
105 module_param (distrust_firmware
, bool, 0);
106 MODULE_PARM_DESC (distrust_firmware
,
107 "true to distrust firmware power/overcurrent setup");
109 /* Some boards leave IR set wrongly, since they fail BIOS/SMM handshakes */
110 static int no_handshake
= 0;
111 module_param (no_handshake
, bool, 0);
112 MODULE_PARM_DESC (no_handshake
, "true (not default) disables BIOS handshake");
114 /*-------------------------------------------------------------------------*/
117 * queue up an urb for anything except the root hub
119 static int ohci_urb_enqueue (
121 struct usb_host_endpoint
*ep
,
125 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
127 urb_priv_t
*urb_priv
;
128 unsigned int pipe
= urb
->pipe
;
133 #ifdef OHCI_VERBOSE_DEBUG
134 urb_print (urb
, "SUB", usb_pipein (pipe
));
137 /* every endpoint has a ed, locate and maybe (re)initialize it */
138 if (! (ed
= ed_get (ohci
, ep
, urb
->dev
, pipe
, urb
->interval
)))
141 /* for the private part of the URB we need the number of TDs (size) */
144 /* td_submit_urb() doesn't yet handle these */
145 if (urb
->transfer_buffer_length
> 4096)
148 /* 1 TD for setup, 1 for ACK, plus ... */
151 // case PIPE_INTERRUPT:
154 /* one TD for every 4096 Bytes (can be upto 8K) */
155 size
+= urb
->transfer_buffer_length
/ 4096;
156 /* ... and for any remaining bytes ... */
157 if ((urb
->transfer_buffer_length
% 4096) != 0)
159 /* ... and maybe a zero length packet to wrap it up */
162 else if ((urb
->transfer_flags
& URB_ZERO_PACKET
) != 0
163 && (urb
->transfer_buffer_length
164 % usb_maxpacket (urb
->dev
, pipe
,
165 usb_pipeout (pipe
))) == 0)
168 case PIPE_ISOCHRONOUS
: /* number of packets from URB */
169 size
= urb
->number_of_packets
;
173 /* allocate the private part of the URB */
174 urb_priv
= kmalloc (sizeof (urb_priv_t
) + size
* sizeof (struct td
*),
178 memset (urb_priv
, 0, sizeof (urb_priv_t
) + size
* sizeof (struct td
*));
179 INIT_LIST_HEAD (&urb_priv
->pending
);
180 urb_priv
->length
= size
;
183 /* allocate the TDs (deferring hash chain updates) */
184 for (i
= 0; i
< size
; i
++) {
185 urb_priv
->td
[i
] = td_alloc (ohci
, mem_flags
);
186 if (!urb_priv
->td
[i
]) {
187 urb_priv
->length
= i
;
188 urb_free_priv (ohci
, urb_priv
);
193 spin_lock_irqsave (&ohci
->lock
, flags
);
195 /* don't submit to a dead HC */
196 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
200 if (!HC_IS_RUNNING(hcd
->state
)) {
205 /* in case of unlink-during-submit */
206 spin_lock (&urb
->lock
);
207 if (urb
->status
!= -EINPROGRESS
) {
208 spin_unlock (&urb
->lock
);
209 urb
->hcpriv
= urb_priv
;
210 finish_urb (ohci
, urb
);
215 /* schedule the ed if needed */
216 if (ed
->state
== ED_IDLE
) {
217 retval
= ed_schedule (ohci
, ed
);
220 if (ed
->type
== PIPE_ISOCHRONOUS
) {
221 u16 frame
= ohci_frame_no(ohci
);
223 /* delay a few frames before the first TD */
224 frame
+= max_t (u16
, 8, ed
->interval
);
225 frame
&= ~(ed
->interval
- 1);
227 urb
->start_frame
= frame
;
229 /* yes, only URB_ISO_ASAP is supported, and
230 * urb->start_frame is never used as input.
233 } else if (ed
->type
== PIPE_ISOCHRONOUS
)
234 urb
->start_frame
= ed
->last_iso
+ ed
->interval
;
236 /* fill the TDs and link them to the ed; and
237 * enable that part of the schedule, if needed
238 * and update count of queued periodic urbs
240 urb
->hcpriv
= urb_priv
;
241 td_submit_urb (ohci
, urb
);
244 spin_unlock (&urb
->lock
);
247 urb_free_priv (ohci
, urb_priv
);
248 spin_unlock_irqrestore (&ohci
->lock
, flags
);
253 * decouple the URB from the HC queues (TDs, urb_priv); it's
254 * already marked using urb->status. reporting is always done
255 * asynchronously, and we might be dealing with an urb that's
256 * partially transferred, or an ED with other urbs being unlinked.
258 static int ohci_urb_dequeue (struct usb_hcd
*hcd
, struct urb
*urb
)
260 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
263 #ifdef OHCI_VERBOSE_DEBUG
264 urb_print (urb
, "UNLINK", 1);
267 spin_lock_irqsave (&ohci
->lock
, flags
);
268 if (HC_IS_RUNNING(hcd
->state
)) {
269 urb_priv_t
*urb_priv
;
271 /* Unless an IRQ completed the unlink while it was being
272 * handed to us, flag it for unlink and giveback, and force
273 * some upcoming INTR_SF to call finish_unlinks()
275 urb_priv
= urb
->hcpriv
;
277 if (urb_priv
->ed
->state
== ED_OPER
)
278 start_ed_unlink (ohci
, urb_priv
->ed
);
282 * with HC dead, we won't respect hc queue pointers
283 * any more ... just clean up every urb's memory.
286 finish_urb (ohci
, urb
);
288 spin_unlock_irqrestore (&ohci
->lock
, flags
);
292 /*-------------------------------------------------------------------------*/
294 /* frees config/altsetting state for endpoints,
295 * including ED memory, dummy TD, and bulk/intr data toggle
299 ohci_endpoint_disable (struct usb_hcd
*hcd
, struct usb_host_endpoint
*ep
)
301 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
303 struct ed
*ed
= ep
->hcpriv
;
304 unsigned limit
= 1000;
306 /* ASSERT: any requests/urbs are being unlinked */
307 /* ASSERT: nobody can be submitting urbs for this any more */
313 spin_lock_irqsave (&ohci
->lock
, flags
);
315 if (!HC_IS_RUNNING (hcd
->state
)) {
318 finish_unlinks (ohci
, 0);
322 case ED_UNLINK
: /* wait for hw to finish? */
323 /* major IRQ delivery trouble loses INTR_SF too... */
325 ohci_warn (ohci
, "IRQ INTR_SF lossage\n");
328 spin_unlock_irqrestore (&ohci
->lock
, flags
);
329 schedule_timeout_uninterruptible(1);
331 case ED_IDLE
: /* fully unlinked */
332 if (list_empty (&ed
->td_list
)) {
333 td_free (ohci
, ed
->dummy
);
337 /* else FALL THROUGH */
339 /* caller was supposed to have unlinked any requests;
340 * that's not our job. can't recover; must leak ed.
342 ohci_err (ohci
, "leak ed %p (#%02x) state %d%s\n",
343 ed
, ep
->desc
.bEndpointAddress
, ed
->state
,
344 list_empty (&ed
->td_list
) ? "" : " (has tds)");
345 td_free (ohci
, ed
->dummy
);
349 spin_unlock_irqrestore (&ohci
->lock
, flags
);
353 static int ohci_get_frame (struct usb_hcd
*hcd
)
355 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
357 return ohci_frame_no(ohci
);
360 static void ohci_usb_reset (struct ohci_hcd
*ohci
)
362 ohci
->hc_control
= ohci_readl (ohci
, &ohci
->regs
->control
);
363 ohci
->hc_control
&= OHCI_CTRL_RWC
;
364 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
367 /* ohci_shutdown forcibly disables IRQs and DMA, helping kexec and
368 * other cases where the next software may expect clean state from the
369 * "firmware". this is bus-neutral, unlike shutdown() methods.
372 ohci_shutdown (struct usb_hcd
*hcd
)
374 struct ohci_hcd
*ohci
;
376 ohci
= hcd_to_ohci (hcd
);
377 ohci_writel (ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
378 ohci_usb_reset (ohci
);
379 /* flush the writes */
380 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
383 /*-------------------------------------------------------------------------*
385 *-------------------------------------------------------------------------*/
387 /* init memory, and kick BIOS/SMM off */
389 static int ohci_init (struct ohci_hcd
*ohci
)
392 struct usb_hcd
*hcd
= ohci_to_hcd(ohci
);
395 ohci
->regs
= hcd
->regs
;
397 /* REVISIT this BIOS handshake is now moved into PCI "quirks", and
398 * was never needed for most non-PCI systems ... remove the code?
402 /* SMM owns the HC? not for long! */
403 if (!no_handshake
&& ohci_readl (ohci
,
404 &ohci
->regs
->control
) & OHCI_CTRL_IR
) {
407 ohci_dbg (ohci
, "USB HC TakeOver from BIOS/SMM\n");
409 /* this timeout is arbitrary. we make it long, so systems
410 * depending on usb keyboards may be usable even if the
411 * BIOS/SMM code seems pretty broken.
413 temp
= 500; /* arbitrary: five seconds */
415 ohci_writel (ohci
, OHCI_INTR_OC
, &ohci
->regs
->intrenable
);
416 ohci_writel (ohci
, OHCI_OCR
, &ohci
->regs
->cmdstatus
);
417 while (ohci_readl (ohci
, &ohci
->regs
->control
) & OHCI_CTRL_IR
) {
420 ohci_err (ohci
, "USB HC takeover failed!"
421 " (BIOS/SMM bug)\n");
425 ohci_usb_reset (ohci
);
429 /* Disable HC interrupts */
430 ohci_writel (ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
432 /* flush the writes, and save key bits like RWC */
433 if (ohci_readl (ohci
, &ohci
->regs
->control
) & OHCI_CTRL_RWC
)
434 ohci
->hc_control
|= OHCI_CTRL_RWC
;
436 /* Read the number of ports unless overridden */
437 if (ohci
->num_ports
== 0)
438 ohci
->num_ports
= roothub_a(ohci
) & RH_A_NDP
;
443 ohci
->hcca
= dma_alloc_coherent (hcd
->self
.controller
,
444 sizeof *ohci
->hcca
, &ohci
->hcca_dma
, 0);
448 if ((ret
= ohci_mem_init (ohci
)) < 0)
451 create_debug_files (ohci
);
457 /*-------------------------------------------------------------------------*/
459 /* Start an OHCI controller, set the BUS operational
460 * resets USB and controller
463 static int ohci_run (struct ohci_hcd
*ohci
)
466 int first
= ohci
->fminterval
== 0;
467 struct usb_hcd
*hcd
= ohci_to_hcd(ohci
);
471 /* boot firmware should have set this up (5.1.1.3.1) */
474 temp
= ohci_readl (ohci
, &ohci
->regs
->fminterval
);
475 ohci
->fminterval
= temp
& 0x3fff;
476 if (ohci
->fminterval
!= FI
)
477 ohci_dbg (ohci
, "fminterval delta %d\n",
478 ohci
->fminterval
- FI
);
479 ohci
->fminterval
|= FSMP (ohci
->fminterval
) << 16;
480 /* also: power/overcurrent flags in roothub.a */
483 /* Reset USB nearly "by the book". RemoteWakeupConnected was
484 * saved if boot firmware (BIOS/SMM/...) told us it's connected,
485 * or if bus glue did the same (e.g. for PCI add-in cards with
488 if ((ohci
->hc_control
& OHCI_CTRL_RWC
) != 0
489 && !device_may_wakeup(hcd
->self
.controller
))
490 device_init_wakeup(hcd
->self
.controller
, 1);
492 switch (ohci
->hc_control
& OHCI_CTRL_HCFS
) {
496 case OHCI_USB_SUSPEND
:
497 case OHCI_USB_RESUME
:
498 ohci
->hc_control
&= OHCI_CTRL_RWC
;
499 ohci
->hc_control
|= OHCI_USB_RESUME
;
500 temp
= 10 /* msec wait */;
502 // case OHCI_USB_RESET:
504 ohci
->hc_control
&= OHCI_CTRL_RWC
;
505 ohci
->hc_control
|= OHCI_USB_RESET
;
506 temp
= 50 /* msec wait */;
509 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
511 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
514 memset (ohci
->hcca
, 0, sizeof (struct ohci_hcca
));
516 /* 2msec timelimit here means no irqs/preempt */
517 spin_lock_irq (&ohci
->lock
);
520 /* HC Reset requires max 10 us delay */
521 ohci_writel (ohci
, OHCI_HCR
, &ohci
->regs
->cmdstatus
);
522 temp
= 30; /* ... allow extra time */
523 while ((ohci_readl (ohci
, &ohci
->regs
->cmdstatus
) & OHCI_HCR
) != 0) {
525 spin_unlock_irq (&ohci
->lock
);
526 ohci_err (ohci
, "USB HC reset timed out!\n");
532 /* now we're in the SUSPEND state ... must go OPERATIONAL
533 * within 2msec else HC enters RESUME
535 * ... but some hardware won't init fmInterval "by the book"
536 * (SiS, OPTi ...), so reset again instead. SiS doesn't need
537 * this if we write fmInterval after we're OPERATIONAL.
538 * Unclear about ALi, ServerWorks, and others ... this could
539 * easily be a longstanding bug in chip init on Linux.
541 if (ohci
->flags
& OHCI_QUIRK_INITRESET
) {
542 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
543 // flush those writes
544 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
547 /* Tell the controller where the control and bulk lists are
548 * The lists are empty now. */
549 ohci_writel (ohci
, 0, &ohci
->regs
->ed_controlhead
);
550 ohci_writel (ohci
, 0, &ohci
->regs
->ed_bulkhead
);
552 /* a reset clears this */
553 ohci_writel (ohci
, (u32
) ohci
->hcca_dma
, &ohci
->regs
->hcca
);
555 periodic_reinit (ohci
);
557 /* some OHCI implementations are finicky about how they init.
558 * bogus values here mean not even enumeration could work.
560 if ((ohci_readl (ohci
, &ohci
->regs
->fminterval
) & 0x3fff0000) == 0
561 || !ohci_readl (ohci
, &ohci
->regs
->periodicstart
)) {
562 if (!(ohci
->flags
& OHCI_QUIRK_INITRESET
)) {
563 ohci
->flags
|= OHCI_QUIRK_INITRESET
;
564 ohci_dbg (ohci
, "enabling initreset quirk\n");
567 spin_unlock_irq (&ohci
->lock
);
568 ohci_err (ohci
, "init err (%08x %04x)\n",
569 ohci_readl (ohci
, &ohci
->regs
->fminterval
),
570 ohci_readl (ohci
, &ohci
->regs
->periodicstart
));
574 /* use rhsc irqs after khubd is fully initialized */
576 hcd
->uses_new_polling
= 1;
578 /* start controller operations */
579 ohci
->hc_control
&= OHCI_CTRL_RWC
;
580 ohci
->hc_control
|= OHCI_CONTROL_INIT
| OHCI_USB_OPER
;
581 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
582 hcd
->state
= HC_STATE_RUNNING
;
584 /* wake on ConnectStatusChange, matching external hubs */
585 ohci_writel (ohci
, RH_HS_DRWE
, &ohci
->regs
->roothub
.status
);
587 /* Choose the interrupts we care about now, others later on demand */
588 mask
= OHCI_INTR_INIT
;
589 ohci_writel (ohci
, ~0, &ohci
->regs
->intrstatus
);
590 ohci_writel (ohci
, mask
, &ohci
->regs
->intrenable
);
592 /* handle root hub init quirks ... */
593 temp
= roothub_a (ohci
);
594 temp
&= ~(RH_A_PSM
| RH_A_OCPM
);
595 if (ohci
->flags
& OHCI_QUIRK_SUPERIO
) {
596 /* NSC 87560 and maybe others */
598 temp
&= ~(RH_A_POTPGT
| RH_A_NPS
);
599 ohci_writel (ohci
, temp
, &ohci
->regs
->roothub
.a
);
600 } else if ((ohci
->flags
& OHCI_QUIRK_AMD756
) || distrust_firmware
) {
601 /* hub power always on; required for AMD-756 and some
602 * Mac platforms. ganged overcurrent reporting, if any.
605 ohci_writel (ohci
, temp
, &ohci
->regs
->roothub
.a
);
607 ohci_writel (ohci
, RH_HS_LPSC
, &ohci
->regs
->roothub
.status
);
608 ohci_writel (ohci
, (temp
& RH_A_NPS
) ? 0 : RH_B_PPCM
,
609 &ohci
->regs
->roothub
.b
);
610 // flush those writes
611 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
613 ohci
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
614 spin_unlock_irq (&ohci
->lock
);
616 // POTPGT delay is bits 24-31, in 2 ms units.
617 mdelay ((temp
>> 23) & 0x1fe);
618 hcd
->state
= HC_STATE_RUNNING
;
625 /*-------------------------------------------------------------------------*/
627 /* an interrupt happens */
629 static irqreturn_t
ohci_irq (struct usb_hcd
*hcd
)
631 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
632 struct ohci_regs __iomem
*regs
= ohci
->regs
;
635 /* we can eliminate a (slow) ohci_readl()
636 if _only_ WDH caused this irq */
637 if ((ohci
->hcca
->done_head
!= 0)
638 && ! (hc32_to_cpup (ohci
, &ohci
->hcca
->done_head
)
640 ints
= OHCI_INTR_WDH
;
642 /* cardbus/... hardware gone before remove() */
643 } else if ((ints
= ohci_readl (ohci
, ®s
->intrstatus
)) == ~(u32
)0) {
645 ohci_dbg (ohci
, "device removed!\n");
648 /* interrupt for some other device? */
649 } else if ((ints
&= ohci_readl (ohci
, ®s
->intrenable
)) == 0) {
653 if (ints
& OHCI_INTR_UE
) {
654 // e.g. due to PCI Master/Target Abort
655 if (ohci
->flags
& OHCI_QUIRK_NEC
) {
656 /* Workaround for a silicon bug in some NEC chips used
657 * in Apple's PowerBooks. Adapted from Darwin code.
659 ohci_err (ohci
, "OHCI Unrecoverable Error, scheduling NEC chip restart\n");
661 ohci_writel (ohci
, OHCI_INTR_UE
, ®s
->intrdisable
);
663 schedule_work (&ohci
->nec_work
);
666 ohci_err (ohci
, "OHCI Unrecoverable Error, disabled\n");
670 ohci_usb_reset (ohci
);
673 if (ints
& OHCI_INTR_RHSC
) {
674 ohci_vdbg(ohci
, "rhsc\n");
675 ohci
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
676 ohci_writel(ohci
, OHCI_INTR_RD
| OHCI_INTR_RHSC
,
679 /* NOTE: Vendors didn't always make the same implementation
680 * choices for RHSC. Many followed the spec; RHSC triggers
681 * on an edge, like setting and maybe clearing a port status
682 * change bit. With others it's level-triggered, active
683 * until khubd clears all the port status change bits. We'll
684 * always disable it here and rely on polling until khubd
687 ohci_writel(ohci
, OHCI_INTR_RHSC
, ®s
->intrdisable
);
688 usb_hcd_poll_rh_status(hcd
);
691 /* For connect and disconnect events, we expect the controller
692 * to turn on RHSC along with RD. But for remote wakeup events
693 * this might not happen.
695 else if (ints
& OHCI_INTR_RD
) {
696 ohci_vdbg(ohci
, "resume detect\n");
697 ohci_writel(ohci
, OHCI_INTR_RD
, ®s
->intrstatus
);
699 if (ohci
->autostop
) {
700 spin_lock (&ohci
->lock
);
701 ohci_rh_resume (ohci
);
702 spin_unlock (&ohci
->lock
);
704 usb_hcd_resume_root_hub(hcd
);
707 if (ints
& OHCI_INTR_WDH
) {
708 if (HC_IS_RUNNING(hcd
->state
))
709 ohci_writel (ohci
, OHCI_INTR_WDH
, ®s
->intrdisable
);
710 spin_lock (&ohci
->lock
);
712 spin_unlock (&ohci
->lock
);
713 if (HC_IS_RUNNING(hcd
->state
))
714 ohci_writel (ohci
, OHCI_INTR_WDH
, ®s
->intrenable
);
717 /* could track INTR_SO to reduce available PCI/... bandwidth */
719 /* handle any pending URB/ED unlinks, leaving INTR_SF enabled
720 * when there's still unlinking to be done (next frame).
722 spin_lock (&ohci
->lock
);
723 if (ohci
->ed_rm_list
)
724 finish_unlinks (ohci
, ohci_frame_no(ohci
));
725 if ((ints
& OHCI_INTR_SF
) != 0 && !ohci
->ed_rm_list
726 && HC_IS_RUNNING(hcd
->state
))
727 ohci_writel (ohci
, OHCI_INTR_SF
, ®s
->intrdisable
);
728 spin_unlock (&ohci
->lock
);
730 if (HC_IS_RUNNING(hcd
->state
)) {
731 ohci_writel (ohci
, ints
, ®s
->intrstatus
);
732 ohci_writel (ohci
, OHCI_INTR_MIE
, ®s
->intrenable
);
733 // flush those writes
734 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
740 /*-------------------------------------------------------------------------*/
742 static void ohci_stop (struct usb_hcd
*hcd
)
744 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
748 flush_scheduled_work();
750 ohci_usb_reset (ohci
);
751 ohci_writel (ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
752 free_irq(hcd
->irq
, hcd
);
755 remove_debug_files (ohci
);
756 ohci_mem_cleanup (ohci
);
758 dma_free_coherent (hcd
->self
.controller
,
760 ohci
->hcca
, ohci
->hcca_dma
);
766 /*-------------------------------------------------------------------------*/
768 /* must not be called from interrupt context */
769 static int ohci_restart (struct ohci_hcd
*ohci
)
773 struct urb_priv
*priv
;
775 spin_lock_irq(&ohci
->lock
);
778 /* Recycle any "live" eds/tds (and urbs). */
779 if (!list_empty (&ohci
->pending
))
780 ohci_dbg(ohci
, "abort schedule...\n");
781 list_for_each_entry (priv
, &ohci
->pending
, pending
) {
782 struct urb
*urb
= priv
->td
[0]->urb
;
783 struct ed
*ed
= priv
->ed
;
787 ed
->state
= ED_UNLINK
;
788 ed
->hwINFO
|= cpu_to_hc32(ohci
, ED_DEQUEUE
);
789 ed_deschedule (ohci
, ed
);
791 ed
->ed_next
= ohci
->ed_rm_list
;
793 ohci
->ed_rm_list
= ed
;
798 ohci_dbg(ohci
, "bogus ed %p state %d\n",
802 spin_lock (&urb
->lock
);
803 urb
->status
= -ESHUTDOWN
;
804 spin_unlock (&urb
->lock
);
806 finish_unlinks (ohci
, 0);
807 spin_unlock_irq(&ohci
->lock
);
809 /* paranoia, in case that didn't work: */
811 /* empty the interrupt branches */
812 for (i
= 0; i
< NUM_INTS
; i
++) ohci
->load
[i
] = 0;
813 for (i
= 0; i
< NUM_INTS
; i
++) ohci
->hcca
->int_table
[i
] = 0;
815 /* no EDs to remove */
816 ohci
->ed_rm_list
= NULL
;
818 /* empty control and bulk lists */
819 ohci
->ed_controltail
= NULL
;
820 ohci
->ed_bulktail
= NULL
;
822 if ((temp
= ohci_run (ohci
)) < 0) {
823 ohci_err (ohci
, "can't restart, %d\n", temp
);
826 ohci_dbg(ohci
, "restart complete\n");
830 /*-------------------------------------------------------------------------*/
833 static void ohci_quirk_nec_worker(struct work_struct
*work
)
835 struct ohci_hcd
*ohci
= container_of(work
, struct ohci_hcd
, nec_work
);
838 status
= ohci_init(ohci
);
840 ohci_err(ohci
, "Restarting NEC controller failed "
841 "in ohci_init, %d\n", status
);
845 status
= ohci_restart(ohci
);
847 ohci_err(ohci
, "Restarting NEC controller failed "
848 "in ohci_restart, %d\n", status
);
851 /*-------------------------------------------------------------------------*/
853 #define DRIVER_INFO DRIVER_VERSION " " DRIVER_DESC
855 MODULE_AUTHOR (DRIVER_AUTHOR
);
856 MODULE_DESCRIPTION (DRIVER_INFO
);
857 MODULE_LICENSE ("GPL");
860 #include "ohci-pci.c"
861 #define PCI_DRIVER ohci_pci_driver
865 #include "ohci-sa1111.c"
866 #define SA1111_DRIVER ohci_hcd_sa1111_driver
869 #ifdef CONFIG_ARCH_S3C2410
870 #include "ohci-s3c2410.c"
871 #define PLATFORM_DRIVER ohci_hcd_s3c2410_driver
874 #ifdef CONFIG_ARCH_OMAP
875 #include "ohci-omap.c"
876 #define PLATFORM_DRIVER ohci_hcd_omap_driver
879 #ifdef CONFIG_ARCH_LH7A404
880 #include "ohci-lh7a404.c"
881 #define PLATFORM_DRIVER ohci_hcd_lh7a404_driver
885 #include "ohci-pxa27x.c"
886 #define PLATFORM_DRIVER ohci_hcd_pxa27x_driver
889 #ifdef CONFIG_ARCH_EP93XX
890 #include "ohci-ep93xx.c"
891 #define PLATFORM_DRIVER ohci_hcd_ep93xx_driver
894 #ifdef CONFIG_SOC_AU1X00
895 #include "ohci-au1xxx.c"
896 #define PLATFORM_DRIVER ohci_hcd_au1xxx_driver
899 #ifdef CONFIG_PNX8550
900 #include "ohci-pnx8550.c"
901 #define PLATFORM_DRIVER ohci_hcd_pnx8550_driver
904 #ifdef CONFIG_USB_OHCI_HCD_PPC_SOC
905 #include "ohci-ppc-soc.c"
906 #define PLATFORM_DRIVER ohci_hcd_ppc_soc_driver
909 #ifdef CONFIG_ARCH_AT91
910 #include "ohci-at91.c"
911 #define PLATFORM_DRIVER ohci_hcd_at91_driver
914 #ifdef CONFIG_ARCH_PNX4008
915 #include "ohci-pnx4008.c"
916 #define PLATFORM_DRIVER usb_hcd_pnx4008_driver
920 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF
921 #include "ohci-ppc-of.c"
922 #define OF_PLATFORM_DRIVER ohci_hcd_ppc_of_driver
925 #ifdef CONFIG_PPC_PS3
926 #include "ohci-ps3.c"
927 #define PS3_SYSTEM_BUS_DRIVER ps3_ohci_driver
930 #if !defined(PCI_DRIVER) && \
931 !defined(PLATFORM_DRIVER) && \
932 !defined(OF_PLATFORM_DRIVER) && \
933 !defined(SA1111_DRIVER) && \
934 !defined(PS3_SYSTEM_BUS_DRIVER)
935 #error "missing bus glue for ohci-hcd"
938 static int __init
ohci_hcd_mod_init(void)
945 printk (KERN_DEBUG
"%s: " DRIVER_INFO
"\n", hcd_name
);
946 pr_debug ("%s: block sizes: ed %Zd td %Zd\n", hcd_name
,
947 sizeof (struct ed
), sizeof (struct td
));
949 #ifdef PS3_SYSTEM_BUS_DRIVER
950 retval
= ps3_ohci_driver_register(&PS3_SYSTEM_BUS_DRIVER
);
955 #ifdef PLATFORM_DRIVER
956 retval
= platform_driver_register(&PLATFORM_DRIVER
);
961 #ifdef OF_PLATFORM_DRIVER
962 retval
= of_register_platform_driver(&OF_PLATFORM_DRIVER
);
964 goto error_of_platform
;
968 retval
= sa1111_driver_register(&SA1111_DRIVER
);
974 retval
= pci_register_driver(&PCI_DRIVER
);
986 sa1111_driver_unregister(&SA1111_DRIVER
);
989 #ifdef OF_PLATFORM_DRIVER
990 of_unregister_platform_driver(&OF_PLATFORM_DRIVER
);
993 #ifdef PLATFORM_DRIVER
994 platform_driver_unregister(&PLATFORM_DRIVER
);
997 #ifdef PS3_SYSTEM_BUS_DRIVER
998 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER
);
1003 module_init(ohci_hcd_mod_init
);
1005 static void __exit
ohci_hcd_mod_exit(void)
1008 pci_unregister_driver(&PCI_DRIVER
);
1010 #ifdef SA1111_DRIVER
1011 sa1111_driver_unregister(&SA1111_DRIVER
);
1013 #ifdef OF_PLATFORM_DRIVER
1014 of_unregister_platform_driver(&OF_PLATFORM_DRIVER
);
1016 #ifdef PLATFORM_DRIVER
1017 platform_driver_unregister(&PLATFORM_DRIVER
);
1019 #ifdef PS3_SYSTEM_BUS_DRIVER
1020 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER
);
1023 module_exit(ohci_hcd_mod_exit
);