Commit 72f30b6f authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman

[PATCH] USB: ehci.patch (earlier irq disable)

This tweaks the EHCI reboot notifier to also halt the EHCI controller, and
makes that halt code force IRQs off.  Both should always have been done.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>

 drivers/usb/host/ehci-hcd.c |    8 ++++++++
 1 file changed, 8 insertions(+)
parent 7efe5d7c
...@@ -182,6 +182,9 @@ static int ehci_halt (struct ehci_hcd *ehci) ...@@ -182,6 +182,9 @@ static int ehci_halt (struct ehci_hcd *ehci)
{ {
u32 temp = readl (&ehci->regs->status); u32 temp = readl (&ehci->regs->status);
/* disable any irqs left enabled by previous code */
writel (0, &ehci->regs->intr_enable);
if ((temp & STS_HALT) != 0) if ((temp & STS_HALT) != 0)
return 0; return 0;
...@@ -335,12 +338,17 @@ static int bios_handoff (struct ehci_hcd *ehci, int where, u32 cap) ...@@ -335,12 +338,17 @@ static int bios_handoff (struct ehci_hcd *ehci, int where, u32 cap)
#endif #endif
/* Reboot notifiers kick in for silicon on any bus (not just pci, etc).
* This forcibly disables dma and IRQs, helping kexec and other cases
* where the next system software may expect clean state.
*/
static int static int
ehci_reboot (struct notifier_block *self, unsigned long code, void *null) ehci_reboot (struct notifier_block *self, unsigned long code, void *null)
{ {
struct ehci_hcd *ehci; struct ehci_hcd *ehci;
ehci = container_of (self, struct ehci_hcd, reboot_notifier); ehci = container_of (self, struct ehci_hcd, reboot_notifier);
(void) ehci_halt (ehci);
/* make BIOS/etc use companion controller during reboot */ /* make BIOS/etc use companion controller during reboot */
writel (0, &ehci->regs->configured_flag); writel (0, &ehci->regs->configured_flag);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment