1 // SPDX-License-Identifier: GPL-1.0+
3 * Open Host Controller Interface (OHCI) driver for USB.
5 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
7 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
8 * (C) Copyright 2000-2004 David Brownell <dbrownell@users.sourceforge.net>
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 http://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>
46 #include <asm/unaligned.h>
47 #include <asm/byteorder.h>
50 #define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell"
51 #define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver"
53 /*-------------------------------------------------------------------------*/
55 /* For initializing controller (mask in an HCFS mode too) */
56 #define OHCI_CONTROL_INIT OHCI_CTRL_CBSR
57 #define OHCI_INTR_INIT \
58 (OHCI_INTR_MIE | OHCI_INTR_RHSC | OHCI_INTR_UE \
59 | OHCI_INTR_RD | OHCI_INTR_WDH)
62 /* On PA-RISC, PDC can leave IR set incorrectly; ignore it there. */
66 #ifdef CONFIG_ARCH_OMAP
67 /* OMAP doesn't support IR (no SMM; not needed) */
71 /*-------------------------------------------------------------------------*/
73 static const char hcd_name
[] = "ohci_hcd";
75 #define STATECHANGE_DELAY msecs_to_jiffies(300)
76 #define IO_WATCHDOG_DELAY msecs_to_jiffies(275)
77 #define IO_WATCHDOG_OFF 0xffffff00
80 #include "pci-quirks.h"
82 static void ohci_dump(struct ohci_hcd
*ohci
);
83 static void ohci_stop(struct usb_hcd
*hcd
);
84 static void io_watchdog_func(struct timer_list
*t
);
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 bool distrust_firmware
= true;
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 bool no_handshake
;
111 module_param (no_handshake
, bool, 0);
112 MODULE_PARM_DESC (no_handshake
, "true (not default) disables BIOS handshake");
114 /*-------------------------------------------------------------------------*/
116 static int number_of_tds(struct urb
*urb
)
118 int len
, i
, num
, this_sg_len
;
119 struct scatterlist
*sg
;
121 len
= urb
->transfer_buffer_length
;
122 i
= urb
->num_mapped_sgs
;
124 if (len
> 0 && i
> 0) { /* Scatter-gather transfer */
128 this_sg_len
= min_t(int, sg_dma_len(sg
), len
);
129 num
+= DIV_ROUND_UP(this_sg_len
, 4096);
131 if (--i
<= 0 || len
<= 0)
136 } else { /* Non-SG transfer */
137 /* one TD for every 4096 Bytes (could be up to 8K) */
138 num
= DIV_ROUND_UP(len
, 4096);
144 * queue up an urb for anything except the root hub
146 static int ohci_urb_enqueue (
151 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
153 urb_priv_t
*urb_priv
;
154 unsigned int pipe
= urb
->pipe
;
159 /* every endpoint has a ed, locate and maybe (re)initialize it */
160 ed
= ed_get(ohci
, urb
->ep
, urb
->dev
, pipe
, urb
->interval
);
164 /* for the private part of the URB we need the number of TDs (size) */
167 /* td_submit_urb() doesn't yet handle these */
168 if (urb
->transfer_buffer_length
> 4096)
171 /* 1 TD for setup, 1 for ACK, plus ... */
174 // case PIPE_INTERRUPT:
177 size
+= number_of_tds(urb
);
178 /* maybe a zero-length packet to wrap it up */
181 else if ((urb
->transfer_flags
& URB_ZERO_PACKET
) != 0
182 && (urb
->transfer_buffer_length
183 % usb_maxpacket (urb
->dev
, pipe
,
184 usb_pipeout (pipe
))) == 0)
187 case PIPE_ISOCHRONOUS
: /* number of packets from URB */
188 size
= urb
->number_of_packets
;
192 /* allocate the private part of the URB */
193 urb_priv
= kzalloc (sizeof (urb_priv_t
) + size
* sizeof (struct td
*),
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
->driver
->flags
& HCD_LOCAL_MEM
))
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 ohci
->hcca
= dma_alloc_coherent (hcd
->self
.controller
,
518 sizeof(*ohci
->hcca
), &ohci
->hcca_dma
, GFP_KERNEL
);
522 if ((ret
= ohci_mem_init (ohci
)) < 0)
525 create_debug_files (ohci
);
531 /*-------------------------------------------------------------------------*/
533 /* Start an OHCI controller, set the BUS operational
534 * resets USB and controller
537 static int ohci_run (struct ohci_hcd
*ohci
)
540 int first
= ohci
->fminterval
== 0;
541 struct usb_hcd
*hcd
= ohci_to_hcd(ohci
);
543 ohci
->rh_state
= OHCI_RH_HALTED
;
545 /* boot firmware should have set this up (5.1.1.3.1) */
548 val
= ohci_readl (ohci
, &ohci
->regs
->fminterval
);
549 ohci
->fminterval
= val
& 0x3fff;
550 if (ohci
->fminterval
!= FI
)
551 ohci_dbg (ohci
, "fminterval delta %d\n",
552 ohci
->fminterval
- FI
);
553 ohci
->fminterval
|= FSMP (ohci
->fminterval
) << 16;
554 /* also: power/overcurrent flags in roothub.a */
557 /* Reset USB nearly "by the book". RemoteWakeupConnected has
558 * to be checked in case boot firmware (BIOS/SMM/...) has set up
559 * wakeup in a way the bus isn't aware of (e.g., legacy PCI PM).
560 * If the bus glue detected wakeup capability then it should
561 * already be enabled; if so we'll just enable it again.
563 if ((ohci
->hc_control
& OHCI_CTRL_RWC
) != 0)
564 device_set_wakeup_capable(hcd
->self
.controller
, 1);
566 switch (ohci
->hc_control
& OHCI_CTRL_HCFS
) {
570 case OHCI_USB_SUSPEND
:
571 case OHCI_USB_RESUME
:
572 ohci
->hc_control
&= OHCI_CTRL_RWC
;
573 ohci
->hc_control
|= OHCI_USB_RESUME
;
574 val
= 10 /* msec wait */;
576 // case OHCI_USB_RESET:
578 ohci
->hc_control
&= OHCI_CTRL_RWC
;
579 ohci
->hc_control
|= OHCI_USB_RESET
;
580 val
= 50 /* msec wait */;
583 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
585 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
588 memset (ohci
->hcca
, 0, sizeof (struct ohci_hcca
));
590 /* 2msec timelimit here means no irqs/preempt */
591 spin_lock_irq (&ohci
->lock
);
594 /* HC Reset requires max 10 us delay */
595 ohci_writel (ohci
, OHCI_HCR
, &ohci
->regs
->cmdstatus
);
596 val
= 30; /* ... allow extra time */
597 while ((ohci_readl (ohci
, &ohci
->regs
->cmdstatus
) & OHCI_HCR
) != 0) {
599 spin_unlock_irq (&ohci
->lock
);
600 ohci_err (ohci
, "USB HC reset timed out!\n");
606 /* now we're in the SUSPEND state ... must go OPERATIONAL
607 * within 2msec else HC enters RESUME
609 * ... but some hardware won't init fmInterval "by the book"
610 * (SiS, OPTi ...), so reset again instead. SiS doesn't need
611 * this if we write fmInterval after we're OPERATIONAL.
612 * Unclear about ALi, ServerWorks, and others ... this could
613 * easily be a longstanding bug in chip init on Linux.
615 if (ohci
->flags
& OHCI_QUIRK_INITRESET
) {
616 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
617 // flush those writes
618 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
621 /* Tell the controller where the control and bulk lists are
622 * The lists are empty now. */
623 ohci_writel (ohci
, 0, &ohci
->regs
->ed_controlhead
);
624 ohci_writel (ohci
, 0, &ohci
->regs
->ed_bulkhead
);
626 /* a reset clears this */
627 ohci_writel (ohci
, (u32
) ohci
->hcca_dma
, &ohci
->regs
->hcca
);
629 periodic_reinit (ohci
);
631 /* some OHCI implementations are finicky about how they init.
632 * bogus values here mean not even enumeration could work.
634 if ((ohci_readl (ohci
, &ohci
->regs
->fminterval
) & 0x3fff0000) == 0
635 || !ohci_readl (ohci
, &ohci
->regs
->periodicstart
)) {
636 if (!(ohci
->flags
& OHCI_QUIRK_INITRESET
)) {
637 ohci
->flags
|= OHCI_QUIRK_INITRESET
;
638 ohci_dbg (ohci
, "enabling initreset quirk\n");
641 spin_unlock_irq (&ohci
->lock
);
642 ohci_err (ohci
, "init err (%08x %04x)\n",
643 ohci_readl (ohci
, &ohci
->regs
->fminterval
),
644 ohci_readl (ohci
, &ohci
->regs
->periodicstart
));
648 /* use rhsc irqs after hub_wq is allocated */
649 set_bit(HCD_FLAG_POLL_RH
, &hcd
->flags
);
650 hcd
->uses_new_polling
= 1;
652 /* start controller operations */
653 ohci
->hc_control
&= OHCI_CTRL_RWC
;
654 ohci
->hc_control
|= OHCI_CONTROL_INIT
| OHCI_USB_OPER
;
655 ohci_writel (ohci
, ohci
->hc_control
, &ohci
->regs
->control
);
656 ohci
->rh_state
= OHCI_RH_RUNNING
;
658 /* wake on ConnectStatusChange, matching external hubs */
659 ohci_writel (ohci
, RH_HS_DRWE
, &ohci
->regs
->roothub
.status
);
661 /* Choose the interrupts we care about now, others later on demand */
662 mask
= OHCI_INTR_INIT
;
663 ohci_writel (ohci
, ~0, &ohci
->regs
->intrstatus
);
664 ohci_writel (ohci
, mask
, &ohci
->regs
->intrenable
);
666 /* handle root hub init quirks ... */
667 val
= roothub_a (ohci
);
668 val
&= ~(RH_A_PSM
| RH_A_OCPM
);
669 if (ohci
->flags
& OHCI_QUIRK_SUPERIO
) {
670 /* NSC 87560 and maybe others */
672 val
&= ~(RH_A_POTPGT
| RH_A_NPS
);
673 ohci_writel (ohci
, val
, &ohci
->regs
->roothub
.a
);
674 } else if ((ohci
->flags
& OHCI_QUIRK_AMD756
) ||
675 (ohci
->flags
& OHCI_QUIRK_HUB_POWER
)) {
676 /* hub power always on; required for AMD-756 and some
677 * Mac platforms. ganged overcurrent reporting, if any.
680 ohci_writel (ohci
, val
, &ohci
->regs
->roothub
.a
);
682 ohci_writel (ohci
, RH_HS_LPSC
, &ohci
->regs
->roothub
.status
);
683 ohci_writel (ohci
, (val
& RH_A_NPS
) ? 0 : RH_B_PPCM
,
684 &ohci
->regs
->roothub
.b
);
685 // flush those writes
686 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
688 ohci
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
689 spin_unlock_irq (&ohci
->lock
);
691 // POTPGT delay is bits 24-31, in 2 ms units.
692 mdelay ((val
>> 23) & 0x1fe);
699 /* ohci_setup routine for generic controller initialization */
701 int ohci_setup(struct usb_hcd
*hcd
)
703 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
707 return ohci_init(ohci
);
709 EXPORT_SYMBOL_GPL(ohci_setup
);
711 /* ohci_start routine for generic controller start of all OHCI bus glue */
712 static int ohci_start(struct usb_hcd
*hcd
)
714 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
717 ret
= ohci_run(ohci
);
719 ohci_err(ohci
, "can't start\n");
725 /*-------------------------------------------------------------------------*/
728 * Some OHCI controllers are known to lose track of completed TDs. They
729 * don't add the TDs to the hardware done queue, which means we never see
730 * them as being completed.
732 * This watchdog routine checks for such problems. Without some way to
733 * tell when those TDs have completed, we would never take their EDs off
734 * the unlink list. As a result, URBs could never be dequeued and
735 * endpoints could never be released.
737 static void io_watchdog_func(struct timer_list
*t
)
739 struct ohci_hcd
*ohci
= from_timer(ohci
, t
, io_watchdog
);
740 bool takeback_all_pending
= false;
744 struct td
*td
, *td_start
, *td_next
;
745 unsigned frame_no
, prev_frame_no
= IO_WATCHDOG_OFF
;
748 spin_lock_irqsave(&ohci
->lock
, flags
);
751 * One way to lose track of completed TDs is if the controller
752 * never writes back the done queue head. If it hasn't been
753 * written back since the last time this function ran and if it
754 * was non-empty at that time, something is badly wrong with the
757 status
= ohci_readl(ohci
, &ohci
->regs
->intrstatus
);
758 if (!(status
& OHCI_INTR_WDH
) && ohci
->wdh_cnt
== ohci
->prev_wdh_cnt
) {
759 if (ohci
->prev_donehead
) {
760 ohci_err(ohci
, "HcDoneHead not written back; disabled\n");
762 usb_hc_died(ohci_to_hcd(ohci
));
764 _ohci_shutdown(ohci_to_hcd(ohci
));
767 /* No write back because the done queue was empty */
768 takeback_all_pending
= true;
772 /* Check every ED which might have pending TDs */
773 list_for_each_entry(ed
, &ohci
->eds_in_use
, in_use_list
) {
774 if (ed
->pending_td
) {
775 if (takeback_all_pending
||
776 OKAY_TO_TAKEBACK(ohci
, ed
)) {
777 unsigned tmp
= hc32_to_cpu(ohci
, ed
->hwINFO
);
779 ohci_dbg(ohci
, "takeback pending TD for dev %d ep 0x%x\n",
781 (0x000f & (tmp
>> 7)) +
782 ((tmp
& ED_IN
) >> 5));
783 add_to_done_list(ohci
, ed
->pending_td
);
787 /* Starting from the latest pending TD, */
790 /* or the last TD on the done list, */
792 list_for_each_entry(td_next
, &ed
->td_list
, td_list
) {
793 if (!td_next
->next_dl_td
)
799 /* find the last TD processed by the controller. */
800 head
= hc32_to_cpu(ohci
, READ_ONCE(ed
->hwHeadP
)) & TD_MASK
;
802 td_next
= list_prepare_entry(td
, &ed
->td_list
, td_list
);
803 list_for_each_entry_continue(td_next
, &ed
->td_list
, td_list
) {
804 if (head
== (u32
) td_next
->td_dma
)
806 td
= td_next
; /* head pointer has passed this TD */
808 if (td
!= td_start
) {
810 * In case a WDH cycle is in progress, we will wait
811 * for the next two cycles to complete before assuming
812 * this TD will never get on the done queue.
814 ed
->takeback_wdh_cnt
= ohci
->wdh_cnt
+ 2;
821 if (ohci
->rh_state
== OHCI_RH_RUNNING
) {
824 * Sometimes a controller just stops working. We can tell
825 * by checking that the frame counter has advanced since
826 * the last time we ran.
828 * But be careful: Some controllers violate the spec by
829 * stopping their frame counter when no ports are active.
831 frame_no
= ohci_frame_no(ohci
);
832 if (frame_no
== ohci
->prev_frame_no
) {
837 for (i
= 0; i
< ohci
->num_ports
; ++i
) {
838 tmp
= roothub_portstatus(ohci
, i
);
839 /* Enabled and not suspended? */
840 if ((tmp
& RH_PS_PES
) && !(tmp
& RH_PS_PSS
))
844 if (active_cnt
> 0) {
845 ohci_err(ohci
, "frame counter not updating; disabled\n");
849 if (!list_empty(&ohci
->eds_in_use
)) {
850 prev_frame_no
= frame_no
;
851 ohci
->prev_wdh_cnt
= ohci
->wdh_cnt
;
852 ohci
->prev_donehead
= ohci_readl(ohci
,
853 &ohci
->regs
->donehead
);
854 mod_timer(&ohci
->io_watchdog
,
855 jiffies
+ IO_WATCHDOG_DELAY
);
860 ohci
->prev_frame_no
= prev_frame_no
;
861 spin_unlock_irqrestore(&ohci
->lock
, flags
);
864 /* an interrupt happens */
866 static irqreturn_t
ohci_irq (struct usb_hcd
*hcd
)
868 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
869 struct ohci_regs __iomem
*regs
= ohci
->regs
;
872 /* Read interrupt status (and flush pending writes). We ignore the
873 * optimization of checking the LSB of hcca->done_head; it doesn't
874 * work on all systems (edge triggering for OHCI can be a factor).
876 ints
= ohci_readl(ohci
, ®s
->intrstatus
);
878 /* Check for an all 1's result which is a typical consequence
879 * of dead, unclocked, or unplugged (CardBus...) devices
881 if (ints
== ~(u32
)0) {
882 ohci
->rh_state
= OHCI_RH_HALTED
;
883 ohci_dbg (ohci
, "device removed!\n");
888 /* We only care about interrupts that are enabled */
889 ints
&= ohci_readl(ohci
, ®s
->intrenable
);
891 /* interrupt for some other device? */
892 if (ints
== 0 || unlikely(ohci
->rh_state
== OHCI_RH_HALTED
))
895 if (ints
& OHCI_INTR_UE
) {
896 // e.g. due to PCI Master/Target Abort
897 if (quirk_nec(ohci
)) {
898 /* Workaround for a silicon bug in some NEC chips used
899 * in Apple's PowerBooks. Adapted from Darwin code.
901 ohci_err (ohci
, "OHCI Unrecoverable Error, scheduling NEC chip restart\n");
903 ohci_writel (ohci
, OHCI_INTR_UE
, ®s
->intrdisable
);
905 schedule_work (&ohci
->nec_work
);
907 ohci_err (ohci
, "OHCI Unrecoverable Error, disabled\n");
908 ohci
->rh_state
= OHCI_RH_HALTED
;
913 ohci_usb_reset (ohci
);
916 if (ints
& OHCI_INTR_RHSC
) {
917 ohci_dbg(ohci
, "rhsc\n");
918 ohci
->next_statechange
= jiffies
+ STATECHANGE_DELAY
;
919 ohci_writel(ohci
, OHCI_INTR_RD
| OHCI_INTR_RHSC
,
922 /* NOTE: Vendors didn't always make the same implementation
923 * choices for RHSC. Many followed the spec; RHSC triggers
924 * on an edge, like setting and maybe clearing a port status
925 * change bit. With others it's level-triggered, active
926 * until hub_wq clears all the port status change bits. We'll
927 * always disable it here and rely on polling until hub_wq
930 ohci_writel(ohci
, OHCI_INTR_RHSC
, ®s
->intrdisable
);
931 usb_hcd_poll_rh_status(hcd
);
934 /* For connect and disconnect events, we expect the controller
935 * to turn on RHSC along with RD. But for remote wakeup events
936 * this might not happen.
938 else if (ints
& OHCI_INTR_RD
) {
939 ohci_dbg(ohci
, "resume detect\n");
940 ohci_writel(ohci
, OHCI_INTR_RD
, ®s
->intrstatus
);
941 set_bit(HCD_FLAG_POLL_RH
, &hcd
->flags
);
942 if (ohci
->autostop
) {
943 spin_lock (&ohci
->lock
);
944 ohci_rh_resume (ohci
);
945 spin_unlock (&ohci
->lock
);
947 usb_hcd_resume_root_hub(hcd
);
950 spin_lock(&ohci
->lock
);
951 if (ints
& OHCI_INTR_WDH
)
952 update_done_list(ohci
);
954 /* could track INTR_SO to reduce available PCI/... bandwidth */
956 /* handle any pending URB/ED unlinks, leaving INTR_SF enabled
957 * when there's still unlinking to be done (next frame).
960 if ((ints
& OHCI_INTR_SF
) != 0 && !ohci
->ed_rm_list
961 && ohci
->rh_state
== OHCI_RH_RUNNING
)
962 ohci_writel (ohci
, OHCI_INTR_SF
, ®s
->intrdisable
);
964 if (ohci
->rh_state
== OHCI_RH_RUNNING
) {
965 ohci_writel (ohci
, ints
, ®s
->intrstatus
);
966 if (ints
& OHCI_INTR_WDH
)
969 ohci_writel (ohci
, OHCI_INTR_MIE
, ®s
->intrenable
);
970 // flush those writes
971 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
973 spin_unlock(&ohci
->lock
);
978 /*-------------------------------------------------------------------------*/
980 static void ohci_stop (struct usb_hcd
*hcd
)
982 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
987 flush_work(&ohci
->nec_work
);
988 del_timer_sync(&ohci
->io_watchdog
);
989 ohci
->prev_frame_no
= IO_WATCHDOG_OFF
;
991 ohci_writel (ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
992 ohci_usb_reset(ohci
);
993 free_irq(hcd
->irq
, hcd
);
996 if (quirk_amdiso(ohci
))
999 remove_debug_files (ohci
);
1000 ohci_mem_cleanup (ohci
);
1002 dma_free_coherent (hcd
->self
.controller
,
1004 ohci
->hcca
, ohci
->hcca_dma
);
1010 /*-------------------------------------------------------------------------*/
1012 #if defined(CONFIG_PM) || defined(CONFIG_USB_PCI)
1014 /* must not be called from interrupt context */
1015 int ohci_restart(struct ohci_hcd
*ohci
)
1019 struct urb_priv
*priv
;
1022 spin_lock_irq(&ohci
->lock
);
1023 ohci
->rh_state
= OHCI_RH_HALTED
;
1025 /* Recycle any "live" eds/tds (and urbs). */
1026 if (!list_empty (&ohci
->pending
))
1027 ohci_dbg(ohci
, "abort schedule...\n");
1028 list_for_each_entry (priv
, &ohci
->pending
, pending
) {
1029 struct urb
*urb
= priv
->td
[0]->urb
;
1030 struct ed
*ed
= priv
->ed
;
1032 switch (ed
->state
) {
1034 ed
->state
= ED_UNLINK
;
1035 ed
->hwINFO
|= cpu_to_hc32(ohci
, ED_DEQUEUE
);
1036 ed_deschedule (ohci
, ed
);
1038 ed
->ed_next
= ohci
->ed_rm_list
;
1040 ohci
->ed_rm_list
= ed
;
1045 ohci_dbg(ohci
, "bogus ed %p state %d\n",
1050 urb
->unlinked
= -ESHUTDOWN
;
1053 spin_unlock_irq(&ohci
->lock
);
1055 /* paranoia, in case that didn't work: */
1057 /* empty the interrupt branches */
1058 for (i
= 0; i
< NUM_INTS
; i
++) ohci
->load
[i
] = 0;
1059 for (i
= 0; i
< NUM_INTS
; i
++) ohci
->hcca
->int_table
[i
] = 0;
1061 /* no EDs to remove */
1062 ohci
->ed_rm_list
= NULL
;
1064 /* empty control and bulk lists */
1065 ohci
->ed_controltail
= NULL
;
1066 ohci
->ed_bulktail
= NULL
;
1068 if ((temp
= ohci_run (ohci
)) < 0) {
1069 ohci_err (ohci
, "can't restart, %d\n", temp
);
1072 ohci_dbg(ohci
, "restart complete\n");
1075 EXPORT_SYMBOL_GPL(ohci_restart
);
1081 int ohci_suspend(struct usb_hcd
*hcd
, bool do_wakeup
)
1083 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
1084 unsigned long flags
;
1087 /* Disable irq emission and mark HW unaccessible. Use
1088 * the spinlock to properly synchronize with possible pending
1089 * RH suspend or resume activity.
1091 spin_lock_irqsave (&ohci
->lock
, flags
);
1092 ohci_writel(ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
1093 (void)ohci_readl(ohci
, &ohci
->regs
->intrdisable
);
1095 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1096 spin_unlock_irqrestore (&ohci
->lock
, flags
);
1098 synchronize_irq(hcd
->irq
);
1100 if (do_wakeup
&& HCD_WAKEUP_PENDING(hcd
)) {
1101 ohci_resume(hcd
, false);
1106 EXPORT_SYMBOL_GPL(ohci_suspend
);
1109 int ohci_resume(struct usb_hcd
*hcd
, bool hibernated
)
1111 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
1113 bool need_reinit
= false;
1115 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1117 /* Make sure resume from hibernation re-enumerates everything */
1119 ohci_usb_reset(ohci
);
1121 /* See if the controller is already running or has been reset */
1122 ohci
->hc_control
= ohci_readl(ohci
, &ohci
->regs
->control
);
1123 if (ohci
->hc_control
& (OHCI_CTRL_IR
| OHCI_SCHED_ENABLES
)) {
1126 switch (ohci
->hc_control
& OHCI_CTRL_HCFS
) {
1128 case OHCI_USB_RESET
:
1133 /* If needed, reinitialize and suspend the root hub */
1135 spin_lock_irq(&ohci
->lock
);
1136 ohci_rh_resume(ohci
);
1137 ohci_rh_suspend(ohci
, 0);
1138 spin_unlock_irq(&ohci
->lock
);
1141 /* Normally just turn on port power and enable interrupts */
1143 ohci_dbg(ohci
, "powerup ports\n");
1144 for (port
= 0; port
< ohci
->num_ports
; port
++)
1145 ohci_writel(ohci
, RH_PS_PPS
,
1146 &ohci
->regs
->roothub
.portstatus
[port
]);
1148 ohci_writel(ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrenable
);
1149 ohci_readl(ohci
, &ohci
->regs
->intrenable
);
1153 usb_hcd_resume_root_hub(hcd
);
1157 EXPORT_SYMBOL_GPL(ohci_resume
);
1161 /*-------------------------------------------------------------------------*/
1164 * Generic structure: This gets copied for platform drivers so that
1165 * individual entries can be overridden as needed.
1168 static const struct hc_driver ohci_hc_driver
= {
1169 .description
= hcd_name
,
1170 .product_desc
= "OHCI Host Controller",
1171 .hcd_priv_size
= sizeof(struct ohci_hcd
),
1174 * generic hardware linkage
1177 .flags
= HCD_MEMORY
| HCD_USB11
,
1180 * basic lifecycle operations
1182 .reset
= ohci_setup
,
1183 .start
= ohci_start
,
1185 .shutdown
= ohci_shutdown
,
1188 * managing i/o requests and associated device resources
1190 .urb_enqueue
= ohci_urb_enqueue
,
1191 .urb_dequeue
= ohci_urb_dequeue
,
1192 .endpoint_disable
= ohci_endpoint_disable
,
1195 * scheduling support
1197 .get_frame_number
= ohci_get_frame
,
1202 .hub_status_data
= ohci_hub_status_data
,
1203 .hub_control
= ohci_hub_control
,
1205 .bus_suspend
= ohci_bus_suspend
,
1206 .bus_resume
= ohci_bus_resume
,
1208 .start_port_reset
= ohci_start_port_reset
,
1211 void ohci_init_driver(struct hc_driver
*drv
,
1212 const struct ohci_driver_overrides
*over
)
1214 /* Copy the generic table to drv and then apply the overrides */
1215 *drv
= ohci_hc_driver
;
1218 drv
->product_desc
= over
->product_desc
;
1219 drv
->hcd_priv_size
+= over
->extra_priv_size
;
1221 drv
->reset
= over
->reset
;
1224 EXPORT_SYMBOL_GPL(ohci_init_driver
);
1226 /*-------------------------------------------------------------------------*/
1228 MODULE_AUTHOR (DRIVER_AUTHOR
);
1229 MODULE_DESCRIPTION(DRIVER_DESC
);
1230 MODULE_LICENSE ("GPL");
1232 #if defined(CONFIG_ARCH_SA1100) && defined(CONFIG_SA1111)
1233 #include "ohci-sa1111.c"
1234 #define SA1111_DRIVER ohci_hcd_sa1111_driver
1237 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF
1238 #include "ohci-ppc-of.c"
1239 #define OF_PLATFORM_DRIVER ohci_hcd_ppc_of_driver
1242 #ifdef CONFIG_PPC_PS3
1243 #include "ohci-ps3.c"
1244 #define PS3_SYSTEM_BUS_DRIVER ps3_ohci_driver
1247 #ifdef CONFIG_MFD_SM501
1248 #include "ohci-sm501.c"
1249 #define SM501_OHCI_DRIVER ohci_hcd_sm501_driver
1252 #ifdef CONFIG_MFD_TC6393XB
1253 #include "ohci-tmio.c"
1254 #define TMIO_OHCI_DRIVER ohci_hcd_tmio_driver
1257 static int __init
ohci_hcd_mod_init(void)
1264 printk(KERN_INFO
"%s: " DRIVER_DESC
"\n", hcd_name
);
1265 pr_debug ("%s: block sizes: ed %zd td %zd\n", hcd_name
,
1266 sizeof (struct ed
), sizeof (struct td
));
1267 set_bit(USB_OHCI_LOADED
, &usb_hcds_loaded
);
1269 ohci_debug_root
= debugfs_create_dir("ohci", usb_debug_root
);
1271 #ifdef PS3_SYSTEM_BUS_DRIVER
1272 retval
= ps3_ohci_driver_register(&PS3_SYSTEM_BUS_DRIVER
);
1277 #ifdef OF_PLATFORM_DRIVER
1278 retval
= platform_driver_register(&OF_PLATFORM_DRIVER
);
1280 goto error_of_platform
;
1283 #ifdef SA1111_DRIVER
1284 retval
= sa1111_driver_register(&SA1111_DRIVER
);
1289 #ifdef SM501_OHCI_DRIVER
1290 retval
= platform_driver_register(&SM501_OHCI_DRIVER
);
1295 #ifdef TMIO_OHCI_DRIVER
1296 retval
= platform_driver_register(&TMIO_OHCI_DRIVER
);
1304 #ifdef TMIO_OHCI_DRIVER
1305 platform_driver_unregister(&TMIO_OHCI_DRIVER
);
1308 #ifdef SM501_OHCI_DRIVER
1309 platform_driver_unregister(&SM501_OHCI_DRIVER
);
1312 #ifdef SA1111_DRIVER
1313 sa1111_driver_unregister(&SA1111_DRIVER
);
1316 #ifdef OF_PLATFORM_DRIVER
1317 platform_driver_unregister(&OF_PLATFORM_DRIVER
);
1320 #ifdef PS3_SYSTEM_BUS_DRIVER
1321 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER
);
1324 debugfs_remove(ohci_debug_root
);
1325 ohci_debug_root
= NULL
;
1327 clear_bit(USB_OHCI_LOADED
, &usb_hcds_loaded
);
1330 module_init(ohci_hcd_mod_init
);
1332 static void __exit
ohci_hcd_mod_exit(void)
1334 #ifdef TMIO_OHCI_DRIVER
1335 platform_driver_unregister(&TMIO_OHCI_DRIVER
);
1337 #ifdef SM501_OHCI_DRIVER
1338 platform_driver_unregister(&SM501_OHCI_DRIVER
);
1340 #ifdef SA1111_DRIVER
1341 sa1111_driver_unregister(&SA1111_DRIVER
);
1343 #ifdef OF_PLATFORM_DRIVER
1344 platform_driver_unregister(&OF_PLATFORM_DRIVER
);
1346 #ifdef PS3_SYSTEM_BUS_DRIVER
1347 ps3_ohci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER
);
1349 debugfs_remove(ohci_debug_root
);
1350 clear_bit(USB_OHCI_LOADED
, &usb_hcds_loaded
);
1352 module_exit(ohci_hcd_mod_exit
);