1 // SPDX-License-Identifier: GPL-1.0+
3 * Open Host Controller Interface (OHCI) driver for USB.
10 * [ Initialisation is based on Linus' ]
11 * [ uhci code and gregs ohci fragments ]
12 * [ (C) Copyright 1999 Linus Torvalds ]
13 * [ (C) Copyright 1999 Gregory P. Smith]
16 * OHCI is the main "non-Intel/VIA" standard for USB 1.1 host controller
17 * interfaces (though some non-x86 Intel chips use it). It supports
18 * smarter hardware than UHCI. A download link for the spec available
19 * through the https://www.usb.org website.
21 * This file is licenced under the GPL.
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/pci.h>
27 #include <linux/kernel.h>
28 #include <linux/delay.h>
29 #include <linux/ioport.h>
30 #include <linux/sched.h>
31 #include <linux/slab.h>
32 #include <linux/errno.h>
33 #include <linux/init.h>
34 #include <linux/timer.h>
35 #include <linux/list.h>
36 #include <linux/usb.h>
37 #include <linux/usb/otg.h>
38 #include <linux/usb/hcd.h>
39 #include <linux/dma-mapping.h>
40 #include <linux/dmapool.h>
41 #include <linux/workqueue.h>
42 #include <linux/debugfs.h>
43 #include <linux/genalloc.h>
47 #include <asm/unaligned.h>
48 #include <asm/byteorder.h>
51 #define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell"
52 #define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver"
54 /*-------------------------------------------------------------------------*/
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)
77 #define IO_WATCHDOG_DELAY msecs_to_jiffies(275)
78 #define IO_WATCHDOG_OFF 0xffffff00
81 #include "pci-quirks.h"
83 static void ohci_dump(struct ohci_hcd *ohci);
84 static void ohci_stop(struct usb_hcd *hcd);
85 static void io_watchdog_func(struct timer_list *t);
94 * On architectures with edge-triggered interrupts we must never return
97 #if defined(CONFIG_SA1111) /* ... or other edge-triggered systems */
98 #define IRQ_NOTMINE IRQ_HANDLED
100 #define IRQ_NOTMINE IRQ_NONE
104 /* Some boards misreport power switching/overcurrent */
105 static bool distrust_firmware;
106 module_param (distrust_firmware, bool, 0);
107 MODULE_PARM_DESC (distrust_firmware,
108 "true to distrust firmware power/overcurrent setup");
110 /* Some boards leave IR set wrongly, since they fail BIOS/SMM handshakes */
111 static bool no_handshake;
112 module_param (no_handshake, bool, 0);
113 MODULE_PARM_DESC (no_handshake, "true (not default) disables BIOS handshake");
115 /*-------------------------------------------------------------------------*/
117 static int number_of_tds(struct urb *urb)
119 int len, i, num, this_sg_len;
120 struct scatterlist *sg;
122 len = urb->transfer_buffer_length;
123 i = urb->num_mapped_sgs;
125 if (len > 0 && i > 0) { /* Scatter-gather transfer */
129 this_sg_len = min_t(int, sg_dma_len(sg), len);
130 num += DIV_ROUND_UP(this_sg_len, 4096);
132 if (--i <= 0 || len <= 0)
137 } else { /* Non-SG transfer */
138 /* one TD for every 4096 Bytes (could be up to 8K) */
139 num = DIV_ROUND_UP(len, 4096);
145 * queue up an urb for anything except the root hub
147 static int ohci_urb_enqueue (
152 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
154 urb_priv_t *urb_priv;
155 unsigned int pipe = urb->pipe;
160 /* every endpoint has a ed, locate and maybe (re)initialize it */
161 ed = ed_get(ohci, urb->ep, urb->dev, pipe, urb->interval);
165 /* for the private part of the URB we need the number of TDs (size) */
168 /* td_submit_urb() doesn't yet handle these */
169 if (urb->transfer_buffer_length > 4096)
172 /* 1 TD for setup, 1 for ACK, plus ... */
175 // case PIPE_INTERRUPT:
178 size += number_of_tds(urb);
179 /* maybe a zero-length packet to wrap it up */
182 else if ((urb->transfer_flags & URB_ZERO_PACKET) != 0
183 && (urb->transfer_buffer_length
184 % usb_maxpacket (urb->dev, pipe,
185 usb_pipeout (pipe))) == 0)
188 case PIPE_ISOCHRONOUS: /* number of packets from URB */
189 size = urb->number_of_packets;
193 /* allocate the private part of the URB */
194 urb_priv = kzalloc(struct_size(urb_priv, td, size), mem_flags);
197 INIT_LIST_HEAD (&urb_priv->pending);
198 urb_priv->length = size;
201 /* allocate the TDs (deferring hash chain updates) */
202 for (i = 0; i < size; i++) {
203 urb_priv->td [i] = td_alloc (ohci, mem_flags);
204 if (!urb_priv->td [i]) {
205 urb_priv->length = i;
206 urb_free_priv (ohci, urb_priv);
211 spin_lock_irqsave (&ohci->lock, flags);
213 /* don't submit to a dead HC */
214 if (!HCD_HW_ACCESSIBLE(hcd)) {
218 if (ohci->rh_state != OHCI_RH_RUNNING) {
222 retval = usb_hcd_link_urb_to_ep(hcd, urb);
226 /* schedule the ed if needed */
227 if (ed->state == ED_IDLE) {
228 retval = ed_schedule (ohci, ed);
230 usb_hcd_unlink_urb_from_ep(hcd, urb);
234 /* Start up the I/O watchdog timer, if it's not running */
235 if (ohci->prev_frame_no == IO_WATCHDOG_OFF &&
236 list_empty(&ohci->eds_in_use) &&
237 !(ohci->flags & OHCI_QUIRK_QEMU)) {
238 ohci->prev_frame_no = ohci_frame_no(ohci);
239 mod_timer(&ohci->io_watchdog,
240 jiffies + IO_WATCHDOG_DELAY);
242 list_add(&ed->in_use_list, &ohci->eds_in_use);
244 if (ed->type == PIPE_ISOCHRONOUS) {
245 u16 frame = ohci_frame_no(ohci);
247 /* delay a few frames before the first TD */
248 frame += max_t (u16, 8, ed->interval);
249 frame &= ~(ed->interval - 1);
251 urb->start_frame = frame;
252 ed->last_iso = frame + ed->interval * (size - 1);
254 } else if (ed->type == PIPE_ISOCHRONOUS) {
255 u16 next = ohci_frame_no(ohci) + 1;
256 u16 frame = ed->last_iso + ed->interval;
257 u16 length = ed->interval * (size - 1);
259 /* Behind the scheduling threshold? */
260 if (unlikely(tick_before(frame, next))) {
262 /* URB_ISO_ASAP: Round up to the first available slot */
263 if (urb->transfer_flags & URB_ISO_ASAP) {
264 frame += (next - frame + ed->interval - 1) &
268 * Not ASAP: Use the next slot in the stream,
273 * Some OHCI hardware doesn't handle late TDs
274 * correctly. After retiring them it proceeds
275 * to the next ED instead of the next TD.
276 * Therefore we have to omit the late TDs
279 urb_priv->td_cnt = DIV_ROUND_UP(
280 (u16) (next - frame),
282 if (urb_priv->td_cnt >= urb_priv->length) {
283 ++urb_priv->td_cnt; /* Mark it */
284 ohci_dbg(ohci, "iso underrun %p (%u+%u < %u)\n",
290 urb->start_frame = frame;
291 ed->last_iso = frame + length;
294 /* fill the TDs and link them to the ed; and
295 * enable that part of the schedule, if needed
296 * and update count of queued periodic urbs
298 urb->hcpriv = urb_priv;
299 td_submit_urb (ohci, urb);
303 urb_free_priv (ohci, urb_priv);
304 spin_unlock_irqrestore (&ohci->lock, flags);
309 * decouple the URB from the HC queues (TDs, urb_priv).
310 * reporting is always done
311 * asynchronously, and we might be dealing with an urb that's
312 * partially transferred, or an ED with other urbs being unlinked.
314 static int ohci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
316 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
319 urb_priv_t *urb_priv;
321 spin_lock_irqsave (&ohci->lock, flags);
322 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
325 /* Unless an IRQ completed the unlink while it was being
326 * handed to us, flag it for unlink and giveback, and force
327 * some upcoming INTR_SF to call finish_unlinks()
329 urb_priv = urb->hcpriv;
330 if (urb_priv->ed->state == ED_OPER)
331 start_ed_unlink(ohci, urb_priv->ed);
333 if (ohci->rh_state != OHCI_RH_RUNNING) {
334 /* With HC dead, we can clean up right away */
338 spin_unlock_irqrestore (&ohci->lock, flags);
342 /*-------------------------------------------------------------------------*/
344 /* frees config/altsetting state for endpoints,
345 * including ED memory, dummy TD, and bulk/intr data toggle
349 ohci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep)
351 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
353 struct ed *ed = ep->hcpriv;
354 unsigned limit = 1000;
356 /* ASSERT: any requests/urbs are being unlinked */
357 /* ASSERT: nobody can be submitting urbs for this any more */
363 spin_lock_irqsave (&ohci->lock, flags);
365 if (ohci->rh_state != OHCI_RH_RUNNING) {
372 case ED_UNLINK: /* wait for hw to finish? */
373 /* major IRQ delivery trouble loses INTR_SF too... */
375 ohci_warn(ohci, "ED unlink timeout\n");
378 spin_unlock_irqrestore (&ohci->lock, flags);
379 schedule_timeout_uninterruptible(1);
381 case ED_IDLE: /* fully unlinked */
382 if (list_empty (&ed->td_list)) {
383 td_free (ohci, ed->dummy);
389 /* caller was supposed to have unlinked any requests;
390 * that's not our job. can't recover; must leak ed.
392 ohci_err (ohci, "leak ed %p (#%02x) state %d%s\n",
393 ed, ep->desc.bEndpointAddress, ed->state,
394 list_empty (&ed->td_list) ? "" : " (has tds)");
395 td_free (ohci, ed->dummy);
399 spin_unlock_irqrestore (&ohci->lock, flags);
402 static int ohci_get_frame (struct usb_hcd *hcd)
404 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
406 return ohci_frame_no(ohci);
409 static void ohci_usb_reset (struct ohci_hcd *ohci)
411 ohci->hc_control = ohci_readl (ohci, &ohci->regs->control);
412 ohci->hc_control &= OHCI_CTRL_RWC;
413 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
414 ohci->rh_state = OHCI_RH_HALTED;
417 /* ohci_shutdown forcibly disables IRQs and DMA, helping kexec and
418 * other cases where the next software may expect clean state from the
419 * "firmware". this is bus-neutral, unlike shutdown() methods.
421 static void _ohci_shutdown(struct usb_hcd *hcd)
423 struct ohci_hcd *ohci;
425 ohci = hcd_to_ohci (hcd);
426 ohci_writel(ohci, (u32) ~0, &ohci->regs->intrdisable);
428 /* Software reset, after which the controller goes into SUSPEND */
429 ohci_writel(ohci, OHCI_HCR, &ohci->regs->cmdstatus);
430 ohci_readl(ohci, &ohci->regs->cmdstatus); /* flush the writes */
433 ohci_writel(ohci, ohci->fminterval, &ohci->regs->fminterval);
434 ohci->rh_state = OHCI_RH_HALTED;
437 static void ohci_shutdown(struct usb_hcd *hcd)
439 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
442 spin_lock_irqsave(&ohci->lock, flags);
444 spin_unlock_irqrestore(&ohci->lock, flags);
447 /*-------------------------------------------------------------------------*
449 *-------------------------------------------------------------------------*/
451 /* init memory, and kick BIOS/SMM off */
453 static int ohci_init (struct ohci_hcd *ohci)
456 struct usb_hcd *hcd = ohci_to_hcd(ohci);
458 /* Accept arbitrarily long scatter-gather lists */
459 if (!hcd->localmem_pool)
460 hcd->self.sg_tablesize = ~0;
462 if (distrust_firmware)
463 ohci->flags |= OHCI_QUIRK_HUB_POWER;
465 ohci->rh_state = OHCI_RH_HALTED;
466 ohci->regs = hcd->regs;
468 /* REVISIT this BIOS handshake is now moved into PCI "quirks", and
469 * was never needed for most non-PCI systems ... remove the code?
473 /* SMM owns the HC? not for long! */
474 if (!no_handshake && ohci_readl (ohci,
475 &ohci->regs->control) & OHCI_CTRL_IR) {
478 ohci_dbg (ohci, "USB HC TakeOver from BIOS/SMM\n");
480 /* this timeout is arbitrary. we make it long, so systems
481 * depending on usb keyboards may be usable even if the
482 * BIOS/SMM code seems pretty broken.
484 temp = 500; /* arbitrary: five seconds */
486 ohci_writel (ohci, OHCI_INTR_OC, &ohci->regs->intrenable);
487 ohci_writel (ohci, OHCI_OCR, &ohci->regs->cmdstatus);
488 while (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_IR) {
491 ohci_err (ohci, "USB HC takeover failed!"
492 " (BIOS/SMM bug)\n");
496 ohci_usb_reset (ohci);
500 /* Disable HC interrupts */
501 ohci_writel (ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
503 /* flush the writes, and save key bits like RWC */
504 if (ohci_readl (ohci, &ohci->regs->control) & OHCI_CTRL_RWC)
505 ohci->hc_control |= OHCI_CTRL_RWC;
507 /* Read the number of ports unless overridden */
508 if (ohci->num_ports == 0)
509 ohci->num_ports = roothub_a(ohci) & RH_A_NDP;
514 timer_setup(&ohci->io_watchdog, io_watchdog_func, 0);
515 ohci->prev_frame_no = IO_WATCHDOG_OFF;
517 if (hcd->localmem_pool)
518 ohci->hcca = gen_pool_dma_alloc_align(hcd->localmem_pool,
520 &ohci->hcca_dma, 256);
522 ohci->hcca = dma_alloc_coherent(hcd->self.controller,
529 if ((ret = ohci_mem_init (ohci)) < 0)
532 create_debug_files (ohci);
538 /*-------------------------------------------------------------------------*/
540 /* Start an OHCI controller, set the BUS operational
541 * resets USB and controller
544 static int ohci_run (struct ohci_hcd *ohci)
547 int first = ohci->fminterval == 0;
548 struct usb_hcd *hcd = ohci_to_hcd(ohci);
550 ohci->rh_state = OHCI_RH_HALTED;
552 /* boot firmware should have set this up (5.1.1.3.1) */
555 val = ohci_readl (ohci, &ohci->regs->fminterval);
556 ohci->fminterval = val & 0x3fff;
557 if (ohci->fminterval != FI)
558 ohci_dbg (ohci, "fminterval delta %d\n",
559 ohci->fminterval - FI);
560 ohci->fminterval |= FSMP (ohci->fminterval) << 16;
561 /* also: power/overcurrent flags in roothub.a */
564 /* Reset USB nearly "by the book". RemoteWakeupConnected has
565 * to be checked in case boot firmware (BIOS/SMM/...) has set up
566 * wakeup in a way the bus isn't aware of (e.g., legacy PCI PM).
567 * If the bus glue detected wakeup capability then it should
568 * already be enabled; if so we'll just enable it again.
570 if ((ohci->hc_control & OHCI_CTRL_RWC) != 0)
571 device_set_wakeup_capable(hcd->self.controller, 1);
573 switch (ohci->hc_control & OHCI_CTRL_HCFS) {
577 case OHCI_USB_SUSPEND:
578 case OHCI_USB_RESUME:
579 ohci->hc_control &= OHCI_CTRL_RWC;
580 ohci->hc_control |= OHCI_USB_RESUME;
581 val = 10 /* msec wait */;
583 // case OHCI_USB_RESET:
585 ohci->hc_control &= OHCI_CTRL_RWC;
586 ohci->hc_control |= OHCI_USB_RESET;
587 val = 50 /* msec wait */;
590 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
592 (void) ohci_readl (ohci, &ohci->regs->control);
595 memset (ohci->hcca, 0, sizeof (struct ohci_hcca));
597 /* 2msec timelimit here means no irqs/preempt */
598 spin_lock_irq (&ohci->lock);
601 /* HC Reset requires max 10 us delay */
602 ohci_writel (ohci, OHCI_HCR, &ohci->regs->cmdstatus);
603 val = 30; /* ... allow extra time */
604 while ((ohci_readl (ohci, &ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
606 spin_unlock_irq (&ohci->lock);
607 ohci_err (ohci, "USB HC reset timed out!\n");
613 /* now we're in the SUSPEND state ... must go OPERATIONAL
614 * within 2msec else HC enters RESUME
616 * ... but some hardware won't init fmInterval "by the book"
617 * (SiS, OPTi ...), so reset again instead. SiS doesn't need
618 * this if we write fmInterval after we're OPERATIONAL.
619 * Unclear about ALi, ServerWorks, and others ... this could
620 * easily be a longstanding bug in chip init on Linux.
622 if (ohci->flags & OHCI_QUIRK_INITRESET) {
623 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
624 // flush those writes
625 (void) ohci_readl (ohci, &ohci->regs->control);
628 /* Tell the controller where the control and bulk lists are
629 * The lists are empty now. */
630 ohci_writel (ohci, 0, &ohci->regs->ed_controlhead);
631 ohci_writel (ohci, 0, &ohci->regs->ed_bulkhead);
633 /* a reset clears this */
634 ohci_writel (ohci, (u32) ohci->hcca_dma, &ohci->regs->hcca);
636 periodic_reinit (ohci);
638 /* some OHCI implementations are finicky about how they init.
639 * bogus values here mean not even enumeration could work.
641 if ((ohci_readl (ohci, &ohci->regs->fminterval) & 0x3fff0000) == 0
642 || !ohci_readl (ohci, &ohci->regs->periodicstart)) {
643 if (!(ohci->flags & OHCI_QUIRK_INITRESET)) {
644 ohci->flags |= OHCI_QUIRK_INITRESET;
645 ohci_dbg (ohci, "enabling initreset quirk\n");
648 spin_unlock_irq (&ohci->lock);
649 ohci_err (ohci, "init err (%08x %04x)\n",
650 ohci_readl (ohci, &ohci->regs->fminterval),
651 ohci_readl (ohci, &ohci->regs->periodicstart));
655 /* use rhsc irqs after hub_wq is allocated */
656 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
657 hcd->uses_new_polling = 1;
659 /* start controller operations */
660 ohci->hc_control &= OHCI_CTRL_RWC;
661 ohci->hc_control |= OHCI_CONTROL_INIT | OHCI_USB_OPER;
662 ohci_writel (ohci, ohci->hc_control, &ohci->regs->control);
663 ohci->rh_state = OHCI_RH_RUNNING;
665 /* wake on ConnectStatusChange, matching external hubs */
666 ohci_writel (ohci, RH_HS_DRWE, &ohci->regs->roothub.status);
668 /* Choose the interrupts we care about now, others later on demand */
669 mask = OHCI_INTR_INIT;
670 ohci_writel (ohci, ~0, &ohci->regs->intrstatus);
671 ohci_writel (ohci, mask, &ohci->regs->intrenable);
673 /* handle root hub init quirks ... */
674 val = roothub_a (ohci);
675 /* Configure for per-port over-current protection by default */
678 if (ohci->flags & OHCI_QUIRK_SUPERIO) {
679 /* NSC 87560 and maybe others.
680 * Ganged power switching, no over-current protection.
683 val &= ~(RH_A_POTPGT | RH_A_NPS | RH_A_PSM | RH_A_OCPM);
684 } else if ((ohci->flags & OHCI_QUIRK_AMD756) ||
685 (ohci->flags & OHCI_QUIRK_HUB_POWER)) {
686 /* hub power always on; required for AMD-756 and some
691 ohci_writel(ohci, val, &ohci->regs->roothub.a);
693 ohci_writel (ohci, RH_HS_LPSC, &ohci->regs->roothub.status);
694 ohci_writel (ohci, (val & RH_A_NPS) ? 0 : RH_B_PPCM,
695 &ohci->regs->roothub.b);
696 // flush those writes
697 (void) ohci_readl (ohci, &ohci->regs->control);
699 ohci->next_statechange = jiffies + STATECHANGE_DELAY;
700 spin_unlock_irq (&ohci->lock);
702 // POTPGT delay is bits 24-31, in 2 ms units.
703 mdelay ((val >> 23) & 0x1fe);
710 /* ohci_setup routine for generic controller initialization */
712 int ohci_setup(struct usb_hcd *hcd)
714 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
718 return ohci_init(ohci);
720 EXPORT_SYMBOL_GPL(ohci_setup);
722 /* ohci_start routine for generic controller start of all OHCI bus glue */
723 static int ohci_start(struct usb_hcd *hcd)
725 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
728 ret = ohci_run(ohci);
730 ohci_err(ohci, "can't start\n");
736 /*-------------------------------------------------------------------------*/
739 * Some OHCI controllers are known to lose track of completed TDs. They
740 * don't add the TDs to the hardware done queue, which means we never see
741 * them as being completed.
743 * This watchdog routine checks for such problems. Without some way to
744 * tell when those TDs have completed, we would never take their EDs off
745 * the unlink list. As a result, URBs could never be dequeued and
746 * endpoints could never be released.
748 static void io_watchdog_func(struct timer_list *t)
750 struct ohci_hcd *ohci = from_timer(ohci, t, io_watchdog);
751 bool takeback_all_pending = false;
755 struct td *td, *td_start, *td_next;
756 unsigned frame_no, prev_frame_no = IO_WATCHDOG_OFF;
759 spin_lock_irqsave(&ohci->lock, flags);
762 * One way to lose track of completed TDs is if the controller
763 * never writes back the done queue head. If it hasn't been
764 * written back since the last time this function ran and if it
765 * was non-empty at that time, something is badly wrong with the
768 status = ohci_readl(ohci, &ohci->regs->intrstatus);
769 if (!(status & OHCI_INTR_WDH) && ohci->wdh_cnt == ohci->prev_wdh_cnt) {
770 if (ohci->prev_donehead) {
771 ohci_err(ohci, "HcDoneHead not written back; disabled\n");
773 usb_hc_died(ohci_to_hcd(ohci));
775 _ohci_shutdown(ohci_to_hcd(ohci));
778 /* No write back because the done queue was empty */
779 takeback_all_pending = true;
783 /* Check every ED which might have pending TDs */
784 list_for_each_entry(ed, &ohci->eds_in_use, in_use_list) {
785 if (ed->pending_td) {
786 if (takeback_all_pending ||
787 OKAY_TO_TAKEBACK(ohci, ed)) {
788 unsigned tmp = hc32_to_cpu(ohci, ed->hwINFO);
790 ohci_dbg(ohci, "takeback pending TD for dev %d ep 0x%x\n",
792 (0x000f & (tmp >> 7)) +
793 ((tmp & ED_IN) >> 5));
794 add_to_done_list(ohci, ed->pending_td);
798 /* Starting from the latest pending TD, */
801 /* or the last TD on the done list, */
803 list_for_each_entry(td_next, &ed->td_list, td_list) {
804 if (!td_next->next_dl_td)
810 /* find the last TD processed by the controller. */
811 head = hc32_to_cpu(ohci, READ_ONCE(ed->hwHeadP)) & TD_MASK;
813 td_next = list_prepare_entry(td, &ed->td_list, td_list);
814 list_for_each_entry_continue(td_next, &ed->td_list, td_list) {
815 if (head == (u32) td_next->td_dma)
817 td = td_next; /* head pointer has passed this TD */
819 if (td != td_start) {
821 * In case a WDH cycle is in progress, we will wait
822 * for the next two cycles to complete before assuming
823 * this TD will never get on the done queue.
825 ed->takeback_wdh_cnt = ohci->wdh_cnt + 2;
832 if (ohci->rh_state == OHCI_RH_RUNNING) {
835 * Sometimes a controller just stops working. We can tell
836 * by checking that the frame counter has advanced since
837 * the last time we ran.
839 * But be careful: Some controllers violate the spec by
840 * stopping their frame counter when no ports are active.
842 frame_no = ohci_frame_no(ohci);
843 if (frame_no == ohci->prev_frame_no) {
848 for (i = 0; i < ohci->num_ports; ++i) {
849 tmp = roothub_portstatus(ohci, i);
850 /* Enabled and not suspended? */
851 if ((tmp & RH_PS_PES) && !(tmp & RH_PS_PSS))
855 if (active_cnt > 0) {
856 ohci_err(ohci, "frame counter not updating; disabled\n");
860 if (!list_empty(&ohci->eds_in_use)) {
861 prev_frame_no = frame_no;
862 ohci->prev_wdh_cnt = ohci->wdh_cnt;
863 ohci->prev_donehead = ohci_readl(ohci,
864 &ohci->regs->donehead);
865 mod_timer(&ohci->io_watchdog,
866 jiffies + IO_WATCHDOG_DELAY);
871 ohci->prev_frame_no = prev_frame_no;
872 spin_unlock_irqrestore(&ohci->lock, flags);
875 /* an interrupt happens */
877 static irqreturn_t ohci_irq (struct usb_hcd *hcd)
879 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
880 struct ohci_regs __iomem *regs = ohci->regs;
883 /* Read interrupt status (and flush pending writes). We ignore the
884 * optimization of checking the LSB of hcca->done_head; it doesn't
885 * work on all systems (edge triggering for OHCI can be a factor).
887 ints = ohci_readl(ohci, ®s->intrstatus);
889 /* Check for an all 1's result which is a typical consequence
890 * of dead, unclocked, or unplugged (CardBus...) devices
892 if (ints == ~(u32)0) {
893 ohci->rh_state = OHCI_RH_HALTED;
894 ohci_dbg (ohci, "device removed!\n");
899 /* We only care about interrupts that are enabled */
900 ints &= ohci_readl(ohci, ®s->intrenable);
902 /* interrupt for some other device? */
903 if (ints == 0 || unlikely(ohci->rh_state == OHCI_RH_HALTED))
906 if (ints & OHCI_INTR_UE) {
907 // e.g. due to PCI Master/Target Abort
908 if (quirk_nec(ohci)) {
909 /* Workaround for a silicon bug in some NEC chips used
910 * in Apple's PowerBooks. Adapted from Darwin code.
912 ohci_err (ohci, "OHCI Unrecoverable Error, scheduling NEC chip restart\n");
914 ohci_writel (ohci, OHCI_INTR_UE, ®s->intrdisable);
916 schedule_work (&ohci->nec_work);
918 ohci_err (ohci, "OHCI Unrecoverable Error, disabled\n");
919 ohci->rh_state = OHCI_RH_HALTED;
924 ohci_usb_reset (ohci);
927 if (ints & OHCI_INTR_RHSC) {
928 ohci_dbg(ohci, "rhsc\n");
929 ohci->next_statechange = jiffies + STATECHANGE_DELAY;
930 ohci_writel(ohci, OHCI_INTR_RD | OHCI_INTR_RHSC,
933 /* NOTE: Vendors didn't always make the same implementation
934 * choices for RHSC. Many followed the spec; RHSC triggers
935 * on an edge, like setting and maybe clearing a port status
936 * change bit. With others it's level-triggered, active
937 * until hub_wq clears all the port status change bits. We'll
938 * always disable it here and rely on polling until hub_wq
941 ohci_writel(ohci, OHCI_INTR_RHSC, ®s->intrdisable);
942 usb_hcd_poll_rh_status(hcd);
945 /* For connect and disconnect events, we expect the controller
946 * to turn on RHSC along with RD. But for remote wakeup events
947 * this might not happen.
949 else if (ints & OHCI_INTR_RD) {
950 ohci_dbg(ohci, "resume detect\n");
951 ohci_writel(ohci, OHCI_INTR_RD, ®s->intrstatus);
952 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
953 if (ohci->autostop) {
954 spin_lock (&ohci->lock);
955 ohci_rh_resume (ohci);
956 spin_unlock (&ohci->lock);
958 usb_hcd_resume_root_hub(hcd);
961 spin_lock(&ohci->lock);
962 if (ints & OHCI_INTR_WDH)
963 update_done_list(ohci);
965 /* could track INTR_SO to reduce available PCI/... bandwidth */
967 /* handle any pending URB/ED unlinks, leaving INTR_SF enabled
968 * when there's still unlinking to be done (next frame).
971 if ((ints & OHCI_INTR_SF) != 0 && !ohci->ed_rm_list
972 && ohci->rh_state == OHCI_RH_RUNNING)
973 ohci_writel (ohci, OHCI_INTR_SF, ®s->intrdisable);
975 if (ohci->rh_state == OHCI_RH_RUNNING) {
976 ohci_writel (ohci, ints, ®s->intrstatus);
977 if (ints & OHCI_INTR_WDH)
980 ohci_writel (ohci, OHCI_INTR_MIE, ®s->intrenable);
981 // flush those writes
982 (void) ohci_readl (ohci, &ohci->regs->control);
984 spin_unlock(&ohci->lock);
989 /*-------------------------------------------------------------------------*/
991 static void ohci_stop (struct usb_hcd *hcd)
993 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
998 flush_work(&ohci->nec_work);
999 del_timer_sync(&ohci->io_watchdog);
1000 ohci->prev_frame_no = IO_WATCHDOG_OFF;
1002 ohci_writel (ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
1003 ohci_usb_reset(ohci);
1004 free_irq(hcd->irq, hcd);
1007 if (quirk_amdiso(ohci))
1010 remove_debug_files (ohci);
1011 ohci_mem_cleanup (ohci);
1013 if (hcd->localmem_pool)
1014 gen_pool_free(hcd->localmem_pool,
1015 (unsigned long)ohci->hcca,
1016 sizeof(*ohci->hcca));
1018 dma_free_coherent(hcd->self.controller,
1019 sizeof(*ohci->hcca),
1020 ohci->hcca, ohci->hcca_dma);
1026 /*-------------------------------------------------------------------------*/
1028 #if defined(CONFIG_PM) || defined(CONFIG_USB_PCI)
1030 /* must not be called from interrupt context */
1031 int ohci_restart(struct ohci_hcd *ohci)
1035 struct urb_priv *priv;
1038 spin_lock_irq(&ohci->lock);
1039 ohci->rh_state = OHCI_RH_HALTED;
1041 /* Recycle any "live" eds/tds (and urbs). */
1042 if (!list_empty (&ohci->pending))
1043 ohci_dbg(ohci, "abort schedule...\n");
1044 list_for_each_entry (priv, &ohci->pending, pending) {
1045 struct urb *urb = priv->td[0]->urb;
1046 struct ed *ed = priv->ed;
1048 switch (ed->state) {
1050 ed->state = ED_UNLINK;
1051 ed->hwINFO |= cpu_to_hc32(ohci, ED_DEQUEUE);
1052 ed_deschedule (ohci, ed);
1054 ed->ed_next = ohci->ed_rm_list;
1056 ohci->ed_rm_list = ed;
1061 ohci_dbg(ohci, "bogus ed %p state %d\n",
1066 urb->unlinked = -ESHUTDOWN;
1069 spin_unlock_irq(&ohci->lock);
1071 /* paranoia, in case that didn't work: */
1073 /* empty the interrupt branches */
1074 for (i = 0; i < NUM_INTS; i++) ohci->load [i] = 0;
1075 for (i = 0; i < NUM_INTS; i++) ohci->hcca->int_table [i] = 0;
1077 /* no EDs to remove */
1078 ohci->ed_rm_list = NULL;
1080 /* empty control and bulk lists */
1081 ohci->ed_controltail = NULL;
1082 ohci->ed_bulktail = NULL;
1084 if ((temp = ohci_run (ohci)) < 0) {
1085 ohci_err (ohci, "can't restart, %d\n", temp);
1088 ohci_dbg(ohci, "restart complete\n");
1091 EXPORT_SYMBOL_GPL(ohci_restart);
1097 int ohci_suspend(struct usb_hcd *hcd, bool do_wakeup)
1099 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
1100 unsigned long flags;
1103 /* Disable irq emission and mark HW unaccessible. Use
1104 * the spinlock to properly synchronize with possible pending
1105 * RH suspend or resume activity.
1107 spin_lock_irqsave (&ohci->lock, flags);
1108 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
1109 (void)ohci_readl(ohci, &ohci->regs->intrdisable);
1111 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1112 spin_unlock_irqrestore (&ohci->lock, flags);
1114 synchronize_irq(hcd->irq);
1116 if (do_wakeup && HCD_WAKEUP_PENDING(hcd)) {
1117 ohci_resume(hcd, false);
1122 EXPORT_SYMBOL_GPL(ohci_suspend);
1125 int ohci_resume(struct usb_hcd *hcd, bool hibernated)
1127 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
1129 bool need_reinit = false;
1131 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1133 /* Make sure resume from hibernation re-enumerates everything */
1135 ohci_usb_reset(ohci);
1137 /* See if the controller is already running or has been reset */
1138 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
1139 if (ohci->hc_control & (OHCI_CTRL_IR | OHCI_SCHED_ENABLES)) {
1142 switch (ohci->hc_control & OHCI_CTRL_HCFS) {
1144 case OHCI_USB_RESET:
1149 /* If needed, reinitialize and suspend the root hub */
1151 spin_lock_irq(&ohci->lock);
1152 ohci_rh_resume(ohci);
1153 ohci_rh_suspend(ohci, 0);
1154 spin_unlock_irq(&ohci->lock);
1157 /* Normally just turn on port power and enable interrupts */
1159 ohci_dbg(ohci, "powerup ports\n");
1160 for (port = 0; port < ohci->num_ports; port++)
1161 ohci_writel(ohci, RH_PS_PPS,
1162 &ohci->regs->roothub.portstatus[port]);
1164 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrenable);
1165 ohci_readl(ohci, &ohci->regs->intrenable);
1169 usb_hcd_resume_root_hub(hcd);
1173 EXPORT_SYMBOL_GPL(ohci_resume);
1177 /*-------------------------------------------------------------------------*/
1180 * Generic structure: This gets copied for platform drivers so that
1181 * individual entries can be overridden as needed.
1184 static const struct hc_driver ohci_hc_driver = {
1185 .description = hcd_name,
1186 .product_desc = "OHCI Host Controller",
1187 .hcd_priv_size = sizeof(struct ohci_hcd),
1190 * generic hardware linkage
1193 .flags = HCD_MEMORY | HCD_DMA | HCD_USB11,
1196 * basic lifecycle operations
1198 .reset = ohci_setup,
1199 .start = ohci_start,
1201 .shutdown = ohci_shutdown,
1204 * managing i/o requests and associated device resources
1206 .urb_enqueue = ohci_urb_enqueue,
1207 .urb_dequeue = ohci_urb_dequeue,
1208 .endpoint_disable = ohci_endpoint_disable,
1211 * scheduling support
1213 .get_frame_number = ohci_get_frame,
1218 .hub_status_data = ohci_hub_status_data,
1219 .hub_control = ohci_hub_control,
1221 .bus_suspend = ohci_bus_suspend,
1222 .bus_resume = ohci_bus_resume,
1224 .start_port_reset = ohci_start_port_reset,
1227 void ohci_init_driver(struct hc_driver *drv,
1228 const struct ohci_driver_overrides *over)
1230 /* Copy the generic table to drv and then apply the overrides */
1231 *drv = ohci_hc_driver;
1234 drv->product_desc = over->product_desc;
1235 drv->hcd_priv_size += over->extra_priv_size;
1237 drv->reset = over->reset;
1240 EXPORT_SYMBOL_GPL(ohci_init_driver);
1242 /*-------------------------------------------------------------------------*/
1244 MODULE_AUTHOR (DRIVER_AUTHOR);
1245 MODULE_DESCRIPTION(DRIVER_DESC);
1246 MODULE_LICENSE ("GPL");
1248 #if defined(CONFIG_ARCH_SA1100) && defined(CONFIG_SA1111)
1249 #include "ohci-sa1111.c"
1250 #define SA1111_DRIVER ohci_hcd_sa1111_driver
1253 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF
1254 #include "ohci-ppc-of.c"
1255 #define OF_PLATFORM_DRIVER ohci_hcd_ppc_of_driver
1258 #ifdef CONFIG_PPC_PS3
1259 #include "ohci-ps3.c"
1260 #define PS3_SYSTEM_BUS_DRIVER ps3_ohci_driver
1263 #ifdef CONFIG_MFD_SM501
1264 #include "ohci-sm501.c"
1265 #define SM501_OHCI_DRIVER ohci_hcd_sm501_driver
1268 #ifdef CONFIG_MFD_TC6393XB
1269 #include "ohci-tmio.c"
1270 #define TMIO_OHCI_DRIVER ohci_hcd_tmio_driver
1273 static int __init ohci_hcd_mod_init(void)
1280 printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name);
1281 pr_debug ("%s: block sizes: ed %zd td %zd\n", hcd_name,
1282 sizeof (struct ed), sizeof (struct td));
1283 set_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
1285 ohci_debug_root = debugfs_create_dir("ohci", usb_debug_root);
1287 #ifdef PS3_SYSTEM_BUS_DRIVER
1288 retval = ps3_ohci_driver_register(&PS3_SYSTEM_BUS_DRIVER);
1293 #ifdef OF_PLATFORM_DRIVER
1294 retval = platform_driver_register(&OF_PLATFORM_DRIVER);
1296 goto error_of_platform;
1299 #ifdef SA1111_DRIVER
1300 retval = sa1111_driver_register(&SA1111_DRIVER);
1305 #ifdef SM501_OHCI_DRIVER
1306 retval = platform_driver_register(&SM501_OHCI_DRIVER);
1311 #ifdef TMIO_OHCI_DRIVER
1312 retval = platform_driver_register(&TMIO_OHCI_DRIVER);
1320 #ifdef TMIO_OHCI_DRIVER
1321 platform_driver_unregister(&TMIO_OHCI_DRIVER);
1324 #ifdef SM501_OHCI_DRIVER
1325 platform_driver_unregister(&SM501_OHCI_DRIVER);
1328 #ifdef SA1111_DRIVER
1329 sa1111_driver_unregister(&SA1111_DRIVER);
1332 #ifdef OF_PLATFORM_DRIVER
1333 platform_driver_unregister(&OF_PLATFORM_DRIVER);
1336 #ifdef PS3_SYSTEM_BUS_DRIVER
1337 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1340 debugfs_remove(ohci_debug_root);
1341 ohci_debug_root = NULL;
1343 clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
1346 module_init(ohci_hcd_mod_init);
1348 static void __exit ohci_hcd_mod_exit(void)
1350 #ifdef TMIO_OHCI_DRIVER
1351 platform_driver_unregister(&TMIO_OHCI_DRIVER);
1353 #ifdef SM501_OHCI_DRIVER
1354 platform_driver_unregister(&SM501_OHCI_DRIVER);
1356 #ifdef SA1111_DRIVER
1357 sa1111_driver_unregister(&SA1111_DRIVER);
1359 #ifdef OF_PLATFORM_DRIVER
1360 platform_driver_unregister(&OF_PLATFORM_DRIVER);
1362 #ifdef PS3_SYSTEM_BUS_DRIVER
1363 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER);
1365 debugfs_remove(ohci_debug_root);
1366 clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
1368 module_exit(ohci_hcd_mod_exit);