diff options
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/core/hcd.h | 1 | ||||
-rw-r--r-- | drivers/usb/core/hub.c | 33 | ||||
-rw-r--r-- | drivers/usb/host/ehci-pci.c | 9 | ||||
-rw-r--r-- | drivers/usb/host/ohci-hcd.c | 7 | ||||
-rw-r--r-- | drivers/usb/host/sl811-hcd.c | 1 | ||||
-rw-r--r-- | drivers/usb/host/uhci-hcd.c | 6 |
6 files changed, 42 insertions, 15 deletions
diff --git a/drivers/usb/core/hcd.h b/drivers/usb/core/hcd.h index c8a1b350e2cf..591b5aad1a18 100644 --- a/drivers/usb/core/hcd.h +++ b/drivers/usb/core/hcd.h | |||
@@ -380,6 +380,7 @@ extern int usb_find_interface_driver (struct usb_device *dev, | |||
380 | #ifdef CONFIG_PM | 380 | #ifdef CONFIG_PM |
381 | extern void usb_hcd_suspend_root_hub (struct usb_hcd *hcd); | 381 | extern void usb_hcd_suspend_root_hub (struct usb_hcd *hcd); |
382 | extern void usb_hcd_resume_root_hub (struct usb_hcd *hcd); | 382 | extern void usb_hcd_resume_root_hub (struct usb_hcd *hcd); |
383 | extern void usb_root_hub_lost_power (struct usb_device *rhdev); | ||
383 | extern int hcd_bus_suspend (struct usb_bus *bus); | 384 | extern int hcd_bus_suspend (struct usb_bus *bus); |
384 | extern int hcd_bus_resume (struct usb_bus *bus); | 385 | extern int hcd_bus_resume (struct usb_bus *bus); |
385 | #else | 386 | #else |
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index f78bd124d290..5faf7edd73cb 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
@@ -1039,6 +1039,39 @@ void usb_set_device_state(struct usb_device *udev, | |||
1039 | EXPORT_SYMBOL(usb_set_device_state); | 1039 | EXPORT_SYMBOL(usb_set_device_state); |
1040 | 1040 | ||
1041 | 1041 | ||
1042 | #ifdef CONFIG_PM | ||
1043 | |||
1044 | /** | ||
1045 | * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power | ||
1046 | * @rhdev: struct usb_device for the root hub | ||
1047 | * | ||
1048 | * The USB host controller driver calls this function when its root hub | ||
1049 | * is resumed and Vbus power has been interrupted or the controller | ||
1050 | * has been reset. The routine marks all the children of the root hub | ||
1051 | * as NOTATTACHED and marks logical connect-change events on their ports. | ||
1052 | */ | ||
1053 | void usb_root_hub_lost_power(struct usb_device *rhdev) | ||
1054 | { | ||
1055 | struct usb_hub *hub; | ||
1056 | int port1; | ||
1057 | unsigned long flags; | ||
1058 | |||
1059 | dev_warn(&rhdev->dev, "root hub lost power or was reset\n"); | ||
1060 | spin_lock_irqsave(&device_state_lock, flags); | ||
1061 | hub = hdev_to_hub(rhdev); | ||
1062 | for (port1 = 1; port1 <= rhdev->maxchild; ++port1) { | ||
1063 | if (rhdev->children[port1 - 1]) { | ||
1064 | recursively_mark_NOTATTACHED( | ||
1065 | rhdev->children[port1 - 1]); | ||
1066 | set_bit(port1, hub->change_bits); | ||
1067 | } | ||
1068 | } | ||
1069 | spin_unlock_irqrestore(&device_state_lock, flags); | ||
1070 | } | ||
1071 | EXPORT_SYMBOL_GPL(usb_root_hub_lost_power); | ||
1072 | |||
1073 | #endif | ||
1074 | |||
1042 | static void choose_address(struct usb_device *udev) | 1075 | static void choose_address(struct usb_device *udev) |
1043 | { | 1076 | { |
1044 | int devnum; | 1077 | int devnum; |
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index ac088bc72f1c..08ca0f849dab 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
@@ -278,7 +278,6 @@ static int ehci_pci_resume(struct usb_hcd *hcd) | |||
278 | { | 278 | { |
279 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); | 279 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
280 | unsigned port; | 280 | unsigned port; |
281 | struct usb_device *root = hcd->self.root_hub; | ||
282 | struct pci_dev *pdev = to_pci_dev(hcd->self.controller); | 281 | struct pci_dev *pdev = to_pci_dev(hcd->self.controller); |
283 | int retval = -EINVAL; | 282 | int retval = -EINVAL; |
284 | 283 | ||
@@ -312,13 +311,7 @@ static int ehci_pci_resume(struct usb_hcd *hcd) | |||
312 | 311 | ||
313 | restart: | 312 | restart: |
314 | ehci_dbg(ehci, "lost power, restarting\n"); | 313 | ehci_dbg(ehci, "lost power, restarting\n"); |
315 | for (port = HCS_N_PORTS(ehci->hcs_params); port > 0; ) { | 314 | usb_root_hub_lost_power(hcd->self.root_hub); |
316 | port--; | ||
317 | if (!root->children [port]) | ||
318 | continue; | ||
319 | usb_set_device_state(root->children[port], | ||
320 | USB_STATE_NOTATTACHED); | ||
321 | } | ||
322 | 315 | ||
323 | /* Else reset, to cope with power loss or flush-to-storage | 316 | /* Else reset, to cope with power loss or flush-to-storage |
324 | * style "resume" having let BIOS kick in during reboot. | 317 | * style "resume" having let BIOS kick in during reboot. |
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index e3af3ac4416a..a4b12404ae08 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
@@ -795,7 +795,6 @@ static int ohci_restart (struct ohci_hcd *ohci) | |||
795 | int temp; | 795 | int temp; |
796 | int i; | 796 | int i; |
797 | struct urb_priv *priv; | 797 | struct urb_priv *priv; |
798 | struct usb_device *root = ohci_to_hcd(ohci)->self.root_hub; | ||
799 | 798 | ||
800 | /* mark any devices gone, so they do nothing till khubd disconnects. | 799 | /* mark any devices gone, so they do nothing till khubd disconnects. |
801 | * recycle any "live" eds/tds (and urbs) right away. | 800 | * recycle any "live" eds/tds (and urbs) right away. |
@@ -804,11 +803,7 @@ static int ohci_restart (struct ohci_hcd *ohci) | |||
804 | */ | 803 | */ |
805 | spin_lock_irq(&ohci->lock); | 804 | spin_lock_irq(&ohci->lock); |
806 | disable (ohci); | 805 | disable (ohci); |
807 | for (i = 0; i < root->maxchild; i++) { | 806 | usb_root_hub_lost_power(ohci_to_hcd(ohci)->self.root_hub); |
808 | if (root->children [i]) | ||
809 | usb_set_device_state (root->children[i], | ||
810 | USB_STATE_NOTATTACHED); | ||
811 | } | ||
812 | if (!list_empty (&ohci->pending)) | 807 | if (!list_empty (&ohci->pending)) |
813 | ohci_dbg(ohci, "abort schedule...\n"); | 808 | ohci_dbg(ohci, "abort schedule...\n"); |
814 | list_for_each_entry (priv, &ohci->pending, pending) { | 809 | list_for_each_entry (priv, &ohci->pending, pending) { |
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index 3a9cd4607962..517360b77d8e 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
@@ -1803,6 +1803,7 @@ sl811h_resume(struct platform_device *dev) | |||
1803 | || !device_can_wakeup(&hcd->self.root_hub->dev)) { | 1803 | || !device_can_wakeup(&hcd->self.root_hub->dev)) { |
1804 | sl811->port1 = 0; | 1804 | sl811->port1 = 0; |
1805 | port_power(sl811, 1); | 1805 | port_power(sl811, 1); |
1806 | usb_root_hub_lost_power(hcd->self.root_hub); | ||
1806 | return 0; | 1807 | return 0; |
1807 | } | 1808 | } |
1808 | 1809 | ||
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 1c0394cb3c89..071fab6b6475 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -748,8 +748,12 @@ static int uhci_resume(struct usb_hcd *hcd) | |||
748 | check_and_reset_hc(uhci); | 748 | check_and_reset_hc(uhci); |
749 | configure_hc(uhci); | 749 | configure_hc(uhci); |
750 | 750 | ||
751 | if (uhci->rh_state == UHCI_RH_RESET) | 751 | if (uhci->rh_state == UHCI_RH_RESET) { |
752 | |||
753 | /* The controller had to be reset */ | ||
754 | usb_root_hub_lost_power(hcd->self.root_hub); | ||
752 | suspend_rh(uhci, UHCI_RH_SUSPENDED); | 755 | suspend_rh(uhci, UHCI_RH_SUSPENDED); |
756 | } | ||
753 | 757 | ||
754 | spin_unlock_irq(&uhci->lock); | 758 | spin_unlock_irq(&uhci->lock); |
755 | 759 | ||