diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2011-04-05 13:35:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-13 19:36:06 -0400 |
commit | 99083f16f04e050eab0059167b4980cd67e7aa5a (patch) | |
tree | 6958edd91d9534376bcbbc68b1241af370f5dd82 /drivers/usb | |
parent | 7d670a2ed770a3405a7edb1159e3fa9b3f43fe46 (diff) |
USB: UHCI: don't try to revive a dead controller
This patch (as1457) abandons the curious strategy of declaring a
controller dead following hibernation merely in order to reset and
then revive it. The core no longer allow dead controllers to spring
back to life when the system resumes, so there's no reason to declare
a working controller temporarily dead. Instead we do an explicit
reset.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/uhci-hcd.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 73db5569f57b..83344d688ff0 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -140,8 +140,6 @@ static void finish_reset(struct uhci_hcd *uhci) | |||
140 | uhci->rh_state = UHCI_RH_RESET; | 140 | uhci->rh_state = UHCI_RH_RESET; |
141 | uhci->is_stopped = UHCI_IS_STOPPED; | 141 | uhci->is_stopped = UHCI_IS_STOPPED; |
142 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); | 142 | clear_bit(HCD_FLAG_POLL_RH, &uhci_to_hcd(uhci)->flags); |
143 | |||
144 | uhci->dead = 0; /* Full reset resurrects the controller */ | ||
145 | } | 143 | } |
146 | 144 | ||
147 | /* | 145 | /* |
@@ -837,16 +835,17 @@ static int uhci_pci_resume(struct usb_hcd *hcd, bool hibernated) | |||
837 | spin_lock_irq(&uhci->lock); | 835 | spin_lock_irq(&uhci->lock); |
838 | 836 | ||
839 | /* Make sure resume from hibernation re-enumerates everything */ | 837 | /* Make sure resume from hibernation re-enumerates everything */ |
840 | if (hibernated) | 838 | if (hibernated) { |
841 | uhci_hc_died(uhci); | 839 | uhci_reset_hc(to_pci_dev(uhci_dev(uhci)), uhci->io_addr); |
840 | finish_reset(uhci); | ||
841 | } | ||
842 | 842 | ||
843 | /* The firmware or a boot kernel may have changed the controller | 843 | /* The firmware may have changed the controller settings during |
844 | * settings during a system wakeup. Check it and reconfigure | 844 | * a system wakeup. Check it and reconfigure to avoid problems. |
845 | * to avoid problems. | ||
846 | */ | 845 | */ |
847 | check_and_reset_hc(uhci); | 846 | else { |
848 | 847 | check_and_reset_hc(uhci); | |
849 | /* If the controller was dead before, it's back alive now */ | 848 | } |
850 | configure_hc(uhci); | 849 | configure_hc(uhci); |
851 | 850 | ||
852 | /* Tell the core if the controller had to be reset */ | 851 | /* Tell the core if the controller had to be reset */ |