2 * This file contains code to reset and initialize USB host controllers.
3 * Some of it includes work-arounds for PCI hardware and BIOS quirks.
4 * It may need to run early during booting -- before USB would normally
5 * initialize -- to ensure that Linux doesn't use any legacy modes.
7 * Copyright (c) 1999 Martin Mares <mj@ucw.cz>
11 #include <linux/types.h>
12 #include <linux/kernel.h>
13 #include <linux/pci.h>
14 #include <linux/init.h>
15 #include <linux/delay.h>
16 #include <linux/acpi.h>
17 #include "pci-quirks.h"
18 #include "xhci-ext-caps.h"
21 #define UHCI_USBLEGSUP 0xc0 /* legacy support */
22 #define UHCI_USBCMD 0 /* command register */
23 #define UHCI_USBINTR 4 /* interrupt register */
24 #define UHCI_USBLEGSUP_RWC 0x8f00 /* the R/WC bits */
25 #define UHCI_USBLEGSUP_RO 0x5040 /* R/O and reserved bits */
26 #define UHCI_USBCMD_RUN 0x0001 /* RUN/STOP bit */
27 #define UHCI_USBCMD_HCRESET 0x0002 /* Host Controller reset */
28 #define UHCI_USBCMD_EGSM 0x0008 /* Global Suspend Mode */
29 #define UHCI_USBCMD_CONFIGURE 0x0040 /* Config Flag */
30 #define UHCI_USBINTR_RESUME 0x0002 /* Resume interrupt enable */
32 #define OHCI_CONTROL 0x04
33 #define OHCI_CMDSTATUS 0x08
34 #define OHCI_INTRSTATUS 0x0c
35 #define OHCI_INTRENABLE 0x10
36 #define OHCI_INTRDISABLE 0x14
37 #define OHCI_FMINTERVAL 0x34
38 #define OHCI_HCR (1 << 0) /* host controller reset */
39 #define OHCI_OCR (1 << 3) /* ownership change request */
40 #define OHCI_CTRL_RWC (1 << 9) /* remote wakeup connected */
41 #define OHCI_CTRL_IR (1 << 8) /* interrupt routing */
42 #define OHCI_INTR_OC (1 << 30) /* ownership change */
44 #define EHCI_HCC_PARAMS 0x08 /* extended capabilities */
45 #define EHCI_USBCMD 0 /* command register */
46 #define EHCI_USBCMD_RUN (1 << 0) /* RUN/STOP bit */
47 #define EHCI_USBSTS 4 /* status register */
48 #define EHCI_USBSTS_HALTED (1 << 12) /* HCHalted bit */
49 #define EHCI_USBINTR 8 /* interrupt register */
50 #define EHCI_CONFIGFLAG 0x40 /* configured flag register */
51 #define EHCI_USBLEGSUP 0 /* legacy support register */
52 #define EHCI_USBLEGSUP_BIOS (1 << 16) /* BIOS semaphore */
53 #define EHCI_USBLEGSUP_OS (1 << 24) /* OS semaphore */
54 #define EHCI_USBLEGCTLSTS 4 /* legacy control/status */
55 #define EHCI_USBLEGCTLSTS_SOOE (1 << 13) /* SMI on ownership change */
59 * Make sure the controller is completely inactive, unable to
60 * generate interrupts or do DMA.
62 void uhci_reset_hc(struct pci_dev
*pdev
, unsigned long base
)
64 /* Turn off PIRQ enable and SMI enable. (This also turns off the
65 * BIOS's USB Legacy Support.) Turn off all the R/WC bits too.
67 pci_write_config_word(pdev
, UHCI_USBLEGSUP
, UHCI_USBLEGSUP_RWC
);
69 /* Reset the HC - this will force us to get a
70 * new notification of any already connected
71 * ports due to the virtual disconnect that it
74 outw(UHCI_USBCMD_HCRESET
, base
+ UHCI_USBCMD
);
77 if (inw(base
+ UHCI_USBCMD
) & UHCI_USBCMD_HCRESET
)
78 dev_warn(&pdev
->dev
, "HCRESET not completed yet!\n");
80 /* Just to be safe, disable interrupt requests and
81 * make sure the controller is stopped.
83 outw(0, base
+ UHCI_USBINTR
);
84 outw(0, base
+ UHCI_USBCMD
);
86 EXPORT_SYMBOL_GPL(uhci_reset_hc
);
89 * Initialize a controller that was newly discovered or has just been
90 * resumed. In either case we can't be sure of its previous state.
92 * Returns: 1 if the controller was reset, 0 otherwise.
94 int uhci_check_and_reset_hc(struct pci_dev
*pdev
, unsigned long base
)
97 unsigned int cmd
, intr
;
100 * When restarting a suspended controller, we expect all the
101 * settings to be the same as we left them:
103 * PIRQ and SMI disabled, no R/W bits set in USBLEGSUP;
104 * Controller is stopped and configured with EGSM set;
105 * No interrupts enabled except possibly Resume Detect.
107 * If any of these conditions are violated we do a complete reset.
109 pci_read_config_word(pdev
, UHCI_USBLEGSUP
, &legsup
);
110 if (legsup
& ~(UHCI_USBLEGSUP_RO
| UHCI_USBLEGSUP_RWC
)) {
111 dev_dbg(&pdev
->dev
, "%s: legsup = 0x%04x\n",
116 cmd
= inw(base
+ UHCI_USBCMD
);
117 if ((cmd
& UHCI_USBCMD_RUN
) || !(cmd
& UHCI_USBCMD_CONFIGURE
) ||
118 !(cmd
& UHCI_USBCMD_EGSM
)) {
119 dev_dbg(&pdev
->dev
, "%s: cmd = 0x%04x\n",
124 intr
= inw(base
+ UHCI_USBINTR
);
125 if (intr
& (~UHCI_USBINTR_RESUME
)) {
126 dev_dbg(&pdev
->dev
, "%s: intr = 0x%04x\n",
133 dev_dbg(&pdev
->dev
, "Performing full reset\n");
134 uhci_reset_hc(pdev
, base
);
137 EXPORT_SYMBOL_GPL(uhci_check_and_reset_hc
);
139 static inline int io_type_enabled(struct pci_dev
*pdev
, unsigned int mask
)
142 return !pci_read_config_word(pdev
, PCI_COMMAND
, &cmd
) && (cmd
& mask
);
145 #define pio_enabled(dev) io_type_enabled(dev, PCI_COMMAND_IO)
146 #define mmio_enabled(dev) io_type_enabled(dev, PCI_COMMAND_MEMORY)
148 static void __devinit
quirk_usb_handoff_uhci(struct pci_dev
*pdev
)
150 unsigned long base
= 0;
153 if (!pio_enabled(pdev
))
156 for (i
= 0; i
< PCI_ROM_RESOURCE
; i
++)
157 if ((pci_resource_flags(pdev
, i
) & IORESOURCE_IO
)) {
158 base
= pci_resource_start(pdev
, i
);
163 uhci_check_and_reset_hc(pdev
, base
);
166 static int __devinit
mmio_resource_enabled(struct pci_dev
*pdev
, int idx
)
168 return pci_resource_start(pdev
, idx
) && mmio_enabled(pdev
);
171 static void __devinit
quirk_usb_handoff_ohci(struct pci_dev
*pdev
)
176 if (!mmio_resource_enabled(pdev
, 0))
179 base
= pci_ioremap_bar(pdev
, 0);
183 control
= readl(base
+ OHCI_CONTROL
);
185 /* On PA-RISC, PDC can leave IR set incorrectly; ignore it there. */
187 #define OHCI_CTRL_MASK (OHCI_CTRL_RWC | OHCI_CTRL_IR)
189 #define OHCI_CTRL_MASK OHCI_CTRL_RWC
191 if (control
& OHCI_CTRL_IR
) {
192 int wait_time
= 500; /* arbitrary; 5 seconds */
193 writel(OHCI_INTR_OC
, base
+ OHCI_INTRENABLE
);
194 writel(OHCI_OCR
, base
+ OHCI_CMDSTATUS
);
195 while (wait_time
> 0 &&
196 readl(base
+ OHCI_CONTROL
) & OHCI_CTRL_IR
) {
201 dev_warn(&pdev
->dev
, "OHCI: BIOS handoff failed"
202 " (BIOS bug?) %08x\n",
203 readl(base
+ OHCI_CONTROL
));
207 /* reset controller, preserving RWC (and possibly IR) */
208 writel(control
& OHCI_CTRL_MASK
, base
+ OHCI_CONTROL
);
209 readl(base
+ OHCI_CONTROL
);
211 /* Some NVIDIA controllers stop working if kept in RESET for too long */
212 if (pdev
->vendor
== PCI_VENDOR_ID_NVIDIA
) {
216 /* drive reset for at least 50 ms (7.1.7.5) */
219 /* software reset of the controller, preserving HcFmInterval */
220 fminterval
= readl(base
+ OHCI_FMINTERVAL
);
221 writel(OHCI_HCR
, base
+ OHCI_CMDSTATUS
);
223 /* reset requires max 10 us delay */
224 for (cnt
= 30; cnt
> 0; --cnt
) { /* ... allow extra time */
225 if ((readl(base
+ OHCI_CMDSTATUS
) & OHCI_HCR
) == 0)
229 writel(fminterval
, base
+ OHCI_FMINTERVAL
);
231 /* Now we're in the SUSPEND state with all devices reset
232 * and wakeups and interrupts disabled
239 writel(~(u32
)0, base
+ OHCI_INTRDISABLE
);
240 writel(~(u32
)0, base
+ OHCI_INTRSTATUS
);
245 static void __devinit
quirk_usb_disable_ehci(struct pci_dev
*pdev
)
247 int wait_time
, delta
;
248 void __iomem
*base
, *op_reg_base
;
250 u8 offset
, cap_length
;
252 int tried_handoff
= 0;
254 if (!mmio_resource_enabled(pdev
, 0))
257 base
= pci_ioremap_bar(pdev
, 0);
261 cap_length
= readb(base
);
262 op_reg_base
= base
+ cap_length
;
264 /* EHCI 0.96 and later may have "extended capabilities"
265 * spec section 5.1 explains the bios handoff, e.g. for
266 * booting from USB disk or using a usb keyboard
268 hcc_params
= readl(base
+ EHCI_HCC_PARAMS
);
269 offset
= (hcc_params
>> 8) & 0xff;
270 while (offset
&& --count
) {
274 pci_read_config_dword(pdev
, offset
, &cap
);
275 switch (cap
& 0xff) {
276 case 1: /* BIOS/SMM/... handoff support */
277 if ((cap
& EHCI_USBLEGSUP_BIOS
)) {
278 dev_dbg(&pdev
->dev
, "EHCI: BIOS handoff\n");
281 /* aleksey_gorelov@phoenix.com reports that some systems need SMI forced on,
282 * but that seems dubious in general (the BIOS left it off intentionally)
283 * and is known to prevent some systems from booting. so we won't do this
284 * unless maybe we can determine when we're on a system that needs SMI forced.
286 /* BIOS workaround (?): be sure the
287 * pre-Linux code receives the SMI
289 pci_read_config_dword(pdev
,
290 offset
+ EHCI_USBLEGCTLSTS
,
292 pci_write_config_dword(pdev
,
293 offset
+ EHCI_USBLEGCTLSTS
,
294 val
| EHCI_USBLEGCTLSTS_SOOE
);
297 /* some systems get upset if this semaphore is
298 * set for any other reason than forcing a BIOS
301 pci_write_config_byte(pdev
, offset
+ 3, 1);
304 /* if boot firmware now owns EHCI, spin till
308 while ((cap
& EHCI_USBLEGSUP_BIOS
) && (msec
> 0)) {
312 pci_read_config_dword(pdev
, offset
, &cap
);
315 if (cap
& EHCI_USBLEGSUP_BIOS
) {
316 /* well, possibly buggy BIOS... try to shut
317 * it down, and hope nothing goes too wrong
319 dev_warn(&pdev
->dev
, "EHCI: BIOS handoff failed"
320 " (BIOS bug?) %08x\n", cap
);
321 pci_write_config_byte(pdev
, offset
+ 2, 0);
324 /* just in case, always disable EHCI SMIs */
325 pci_write_config_dword(pdev
,
326 offset
+ EHCI_USBLEGCTLSTS
,
329 /* If the BIOS ever owned the controller then we
330 * can't expect any power sessions to remain intact.
333 writel(0, op_reg_base
+ EHCI_CONFIGFLAG
);
335 case 0: /* illegal reserved capability */
339 dev_warn(&pdev
->dev
, "EHCI: unrecognized capability "
340 "%02x\n", cap
& 0xff);
343 offset
= (cap
>> 8) & 0xff;
346 dev_printk(KERN_DEBUG
, &pdev
->dev
, "EHCI: capability loop?\n");
349 * halt EHCI & disable its interrupts in any case
351 val
= readl(op_reg_base
+ EHCI_USBSTS
);
352 if ((val
& EHCI_USBSTS_HALTED
) == 0) {
353 val
= readl(op_reg_base
+ EHCI_USBCMD
);
354 val
&= ~EHCI_USBCMD_RUN
;
355 writel(val
, op_reg_base
+ EHCI_USBCMD
);
360 writel(0x3f, op_reg_base
+ EHCI_USBSTS
);
363 val
= readl(op_reg_base
+ EHCI_USBSTS
);
364 if ((val
== ~(u32
)0) || (val
& EHCI_USBSTS_HALTED
)) {
367 } while (wait_time
> 0);
369 writel(0, op_reg_base
+ EHCI_USBINTR
);
370 writel(0x3f, op_reg_base
+ EHCI_USBSTS
);
378 * handshake - spin reading a register until handshake completes
379 * @ptr: address of hc register to be read
380 * @mask: bits to look at in result of read
381 * @done: value of those bits when handshake succeeds
382 * @wait_usec: timeout in microseconds
383 * @delay_usec: delay in microseconds to wait between polling
385 * Polls a register every delay_usec microseconds.
386 * Returns 0 when the mask bits have the value done.
387 * Returns -ETIMEDOUT if this condition is not true after
388 * wait_usec microseconds have passed.
390 static int handshake(void __iomem
*ptr
, u32 mask
, u32 done
,
391 int wait_usec
, int delay_usec
)
401 wait_usec
-= delay_usec
;
402 } while (wait_usec
> 0);
407 * PCI Quirks for xHCI.
409 * Takes care of the handoff between the Pre-OS (i.e. BIOS) and the OS.
410 * It signals to the BIOS that the OS wants control of the host controller,
411 * and then waits 5 seconds for the BIOS to hand over control.
412 * If we timeout, assume the BIOS is broken and take control anyway.
414 static void __devinit
quirk_usb_handoff_xhci(struct pci_dev
*pdev
)
418 void __iomem
*op_reg_base
;
422 if (!mmio_resource_enabled(pdev
, 0))
425 base
= ioremap_nocache(pci_resource_start(pdev
, 0),
426 pci_resource_len(pdev
, 0));
431 * Find the Legacy Support Capability register -
432 * this is optional for xHCI host controllers.
434 ext_cap_offset
= xhci_find_next_cap_offset(base
, XHCI_HCC_PARAMS_OFFSET
);
437 /* We've reached the end of the extended capabilities */
439 val
= readl(base
+ ext_cap_offset
);
440 if (XHCI_EXT_CAPS_ID(val
) == XHCI_EXT_CAPS_LEGACY
)
442 ext_cap_offset
= xhci_find_next_cap_offset(base
, ext_cap_offset
);
445 /* If the BIOS owns the HC, signal that the OS wants it, and wait */
446 if (val
& XHCI_HC_BIOS_OWNED
) {
447 writel(val
| XHCI_HC_OS_OWNED
, base
+ ext_cap_offset
);
449 /* Wait for 5 seconds with 10 microsecond polling interval */
450 timeout
= handshake(base
+ ext_cap_offset
, XHCI_HC_BIOS_OWNED
,
453 /* Assume a buggy BIOS and take HC ownership anyway */
455 dev_warn(&pdev
->dev
, "xHCI BIOS handoff failed"
456 " (BIOS bug ?) %08x\n", val
);
457 writel(val
& ~XHCI_HC_BIOS_OWNED
, base
+ ext_cap_offset
);
461 val
= readl(base
+ ext_cap_offset
+ XHCI_LEGACY_CONTROL_OFFSET
);
462 /* Mask off (turn off) any enabled SMIs */
463 val
&= XHCI_LEGACY_DISABLE_SMI
;
464 /* Mask all SMI events bits, RW1C */
465 val
|= XHCI_LEGACY_SMI_EVENTS
;
466 /* Disable any BIOS SMIs and clear all SMI events*/
467 writel(val
, base
+ ext_cap_offset
+ XHCI_LEGACY_CONTROL_OFFSET
);
470 op_reg_base
= base
+ XHCI_HC_LENGTH(readl(base
));
472 /* Wait for the host controller to be ready before writing any
473 * operational or runtime registers. Wait 5 seconds and no more.
475 timeout
= handshake(op_reg_base
+ XHCI_STS_OFFSET
, XHCI_STS_CNR
, 0,
477 /* Assume a buggy HC and start HC initialization anyway */
479 val
= readl(op_reg_base
+ XHCI_STS_OFFSET
);
481 "xHCI HW not ready after 5 sec (HC bug?) "
482 "status = 0x%x\n", val
);
485 /* Send the halt and disable interrupts command */
486 val
= readl(op_reg_base
+ XHCI_CMD_OFFSET
);
487 val
&= ~(XHCI_CMD_RUN
| XHCI_IRQS
);
488 writel(val
, op_reg_base
+ XHCI_CMD_OFFSET
);
490 /* Wait for the HC to halt - poll every 125 usec (one microframe). */
491 timeout
= handshake(op_reg_base
+ XHCI_STS_OFFSET
, XHCI_STS_HALT
, 1,
492 XHCI_MAX_HALT_USEC
, 125);
494 val
= readl(op_reg_base
+ XHCI_STS_OFFSET
);
496 "xHCI HW did not halt within %d usec "
497 "status = 0x%x\n", XHCI_MAX_HALT_USEC
, val
);
503 static void __devinit
quirk_usb_early_handoff(struct pci_dev
*pdev
)
505 /* Skip Netlogic mips SoC's internal PCI USB controller.
506 * This device does not need/support EHCI/OHCI handoff
508 if (pdev
->vendor
== 0x184e) /* vendor Netlogic */
510 if (pdev
->class != PCI_CLASS_SERIAL_USB_UHCI
&&
511 pdev
->class != PCI_CLASS_SERIAL_USB_OHCI
&&
512 pdev
->class != PCI_CLASS_SERIAL_USB_EHCI
&&
513 pdev
->class != PCI_CLASS_SERIAL_USB_XHCI
)
516 if (pci_enable_device(pdev
) < 0) {
517 dev_warn(&pdev
->dev
, "Can't enable PCI device, "
518 "BIOS handoff failed.\n");
521 if (pdev
->class == PCI_CLASS_SERIAL_USB_UHCI
)
522 quirk_usb_handoff_uhci(pdev
);
523 else if (pdev
->class == PCI_CLASS_SERIAL_USB_OHCI
)
524 quirk_usb_handoff_ohci(pdev
);
525 else if (pdev
->class == PCI_CLASS_SERIAL_USB_EHCI
)
526 quirk_usb_disable_ehci(pdev
);
527 else if (pdev
->class == PCI_CLASS_SERIAL_USB_XHCI
)
528 quirk_usb_handoff_xhci(pdev
);
529 pci_disable_device(pdev
);
531 DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID
, PCI_ANY_ID
, quirk_usb_early_handoff
);