2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* (C) Copyright David Brownell 2000-2002
|
2008-01-31 00:21:33 +01:00
|
|
|
*
|
2005-04-17 00:20:36 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pci.h>
|
2005-11-24 00:45:42 +01:00
|
|
|
#include <linux/usb.h>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/irq.h>
|
2005-11-24 00:45:42 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC_PMAC
|
|
|
|
#include <asm/machdep.h>
|
|
|
|
#include <asm/pmac_feature.h>
|
|
|
|
#include <asm/pci-bridge.h>
|
|
|
|
#include <asm/prom.h>
|
|
|
|
#endif
|
2005-09-23 07:38:16 +02:00
|
|
|
|
|
|
|
#include "usb.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "hcd.h"
|
|
|
|
|
|
|
|
|
2005-04-19 02:39:22 +02:00
|
|
|
/* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* configure so an HC device and id are always provided */
|
|
|
|
/* always called with process context; sleeping is OK */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* usb_hcd_pci_probe - initialize PCI-based HCDs
|
|
|
|
* @dev: USB Host Controller being probed
|
|
|
|
* @id: pci hotplug id connecting controller to HCD framework
|
|
|
|
* Context: !in_interrupt()
|
|
|
|
*
|
|
|
|
* Allocates basic PCI resources for this USB host controller, and
|
|
|
|
* then invokes the start() method for the HCD associated with it
|
|
|
|
* through the hotplug entry's driver_data.
|
|
|
|
*
|
|
|
|
* Store this function in the HCD's struct pci_driver as probe().
|
|
|
|
*/
|
2008-01-31 00:21:33 +01:00
|
|
|
int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct hc_driver *driver;
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (usb_disabled())
|
|
|
|
return -ENODEV;
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
if (!id)
|
|
|
|
return -EINVAL;
|
|
|
|
driver = (struct hc_driver *)id->driver_data;
|
|
|
|
if (!driver)
|
2005-04-17 00:20:36 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
if (pci_enable_device(dev) < 0)
|
2005-04-17 00:20:36 +02:00
|
|
|
return -ENODEV;
|
2005-04-19 02:39:22 +02:00
|
|
|
dev->current_state = PCI_D0;
|
2008-01-31 00:21:33 +01:00
|
|
|
|
|
|
|
if (!dev->irq) {
|
|
|
|
dev_err(&dev->dev,
|
2005-04-17 00:20:36 +02:00
|
|
|
"Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
|
|
|
|
pci_name(dev));
|
2008-01-31 00:21:33 +01:00
|
|
|
retval = -ENODEV;
|
2005-04-17 00:20:36 +02:00
|
|
|
goto err1;
|
2008-01-31 00:21:33 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!hcd) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
if (driver->flags & HCD_MEMORY) {
|
|
|
|
/* EHCI, OHCI */
|
|
|
|
hcd->rsrc_start = pci_resource_start(dev, 0);
|
|
|
|
hcd->rsrc_len = pci_resource_len(dev, 0);
|
|
|
|
if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len,
|
2005-04-17 00:20:36 +02:00
|
|
|
driver->description)) {
|
2008-01-31 00:21:33 +01:00
|
|
|
dev_dbg(&dev->dev, "controller already in use\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
retval = -EBUSY;
|
|
|
|
goto err2;
|
|
|
|
}
|
2008-01-31 00:21:33 +01:00
|
|
|
hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (hcd->regs == NULL) {
|
2008-01-31 00:21:33 +01:00
|
|
|
dev_dbg(&dev->dev, "error mapping memory\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
retval = -EFAULT;
|
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
} else {
|
|
|
|
/* UHCI */
|
2005-04-17 00:20:36 +02:00
|
|
|
int region;
|
|
|
|
|
|
|
|
for (region = 0; region < PCI_ROM_RESOURCE; region++) {
|
2008-01-31 00:21:33 +01:00
|
|
|
if (!(pci_resource_flags(dev, region) &
|
2005-04-17 00:20:36 +02:00
|
|
|
IORESOURCE_IO))
|
|
|
|
continue;
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
hcd->rsrc_start = pci_resource_start(dev, region);
|
|
|
|
hcd->rsrc_len = pci_resource_len(dev, region);
|
|
|
|
if (request_region(hcd->rsrc_start, hcd->rsrc_len,
|
2005-04-17 00:20:36 +02:00
|
|
|
driver->description))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (region == PCI_ROM_RESOURCE) {
|
2008-01-31 00:21:33 +01:00
|
|
|
dev_dbg(&dev->dev, "no i/o regions available\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
retval = -EBUSY;
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
pci_set_master(dev);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-06 20:47:08 +01:00
|
|
|
retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (retval != 0)
|
|
|
|
goto err4;
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
err4:
|
|
|
|
if (driver->flags & HCD_MEMORY) {
|
2008-01-31 00:21:33 +01:00
|
|
|
iounmap(hcd->regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
err3:
|
2008-01-31 00:21:33 +01:00
|
|
|
release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 00:20:36 +02:00
|
|
|
} else
|
2008-01-31 00:21:33 +01:00
|
|
|
release_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 00:20:36 +02:00
|
|
|
err2:
|
2008-01-31 00:21:33 +01:00
|
|
|
usb_put_hcd(hcd);
|
2005-04-17 00:20:36 +02:00
|
|
|
err1:
|
2008-01-31 00:21:33 +01:00
|
|
|
pci_disable_device(dev);
|
|
|
|
dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
|
2005-04-17 00:20:36 +02:00
|
|
|
return retval;
|
2008-01-31 00:21:33 +01:00
|
|
|
}
|
2008-01-25 18:12:21 +01:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* may be called without controller electrically present */
|
|
|
|
/* may be called with controller, bus, and devices active */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* usb_hcd_pci_remove - shutdown processing for PCI-based HCDs
|
|
|
|
* @dev: USB Host Controller being removed
|
|
|
|
* Context: !in_interrupt()
|
|
|
|
*
|
|
|
|
* Reverses the effect of usb_hcd_pci_probe(), first invoking
|
|
|
|
* the HCD's stop() method. It is always called from a thread
|
|
|
|
* context, normally "rmmod", "apmd", or something similar.
|
|
|
|
*
|
|
|
|
* Store this function in the HCD's struct pci_driver as remove().
|
|
|
|
*/
|
2008-01-31 00:21:33 +01:00
|
|
|
void usb_hcd_pci_remove(struct pci_dev *dev)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
|
|
|
|
hcd = pci_get_drvdata(dev);
|
|
|
|
if (!hcd)
|
|
|
|
return;
|
|
|
|
|
2008-01-31 00:21:33 +01:00
|
|
|
usb_remove_hcd(hcd);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (hcd->driver->flags & HCD_MEMORY) {
|
2008-01-31 00:21:33 +01:00
|
|
|
iounmap(hcd->regs);
|
|
|
|
release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 00:20:36 +02:00
|
|
|
} else {
|
2008-01-31 00:21:33 +01:00
|
|
|
release_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2008-01-31 00:21:33 +01:00
|
|
|
usb_put_hcd(hcd);
|
2005-04-17 00:20:36 +02:00
|
|
|
pci_disable_device(dev);
|
|
|
|
}
|
2008-01-25 18:12:21 +01:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/**
|
2009-04-27 19:33:24 +02:00
|
|
|
* usb_hcd_pci_shutdown - shutdown host controller
|
|
|
|
* @dev: USB Host Controller being shutdown
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2009-04-27 19:33:24 +02:00
|
|
|
void usb_hcd_pci_shutdown(struct pci_dev *dev)
|
|
|
|
{
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
|
|
|
|
hcd = pci_get_drvdata(dev);
|
|
|
|
if (!hcd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hcd->driver->shutdown)
|
|
|
|
hcd->driver->shutdown(hcd);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
|
|
|
|
|
|
static int check_root_hub_suspended(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
|
|
struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
|
|
|
|
|
|
|
|
if (!(hcd->state == HC_STATE_SUSPENDED ||
|
|
|
|
hcd->state == HC_STATE_HALT)) {
|
|
|
|
dev_warn(dev, "Root hub is not suspended\n");
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hcd_pci_suspend(struct device *dev)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2009-04-27 19:33:24 +02:00
|
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
|
|
struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
|
|
|
|
int retval;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-23 07:38:16 +02:00
|
|
|
/* Root hub suspend should have stopped all downstream traffic,
|
|
|
|
* and all bus master traffic. And done so for both the interface
|
|
|
|
* and the stub usb_device (which we check here). But maybe it
|
|
|
|
* didn't; writing sysfs power/state files ignores such rules...
|
|
|
|
*/
|
2009-04-27 19:33:24 +02:00
|
|
|
retval = check_root_hub_suspended(dev);
|
|
|
|
if (retval)
|
|
|
|
return retval;
|
2008-12-17 21:06:03 +01:00
|
|
|
|
|
|
|
/* We might already be suspended (runtime PM -- not yet written) */
|
2009-04-27 19:33:24 +02:00
|
|
|
if (pci_dev->current_state != PCI_D0)
|
|
|
|
return retval;
|
2005-09-23 07:38:16 +02:00
|
|
|
|
2008-04-04 00:03:06 +02:00
|
|
|
if (hcd->driver->pci_suspend) {
|
2009-04-27 19:33:41 +02:00
|
|
|
retval = hcd->driver->pci_suspend(hcd);
|
2008-04-04 00:03:06 +02:00
|
|
|
suspend_report_result(hcd->driver->pci_suspend, retval);
|
2006-03-23 10:38:34 +01:00
|
|
|
if (retval)
|
2009-04-27 19:33:24 +02:00
|
|
|
return retval;
|
2005-09-23 07:38:16 +02:00
|
|
|
}
|
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
synchronize_irq(pci_dev->irq);
|
2005-04-19 02:39:22 +02:00
|
|
|
|
2009-01-20 01:26:56 +01:00
|
|
|
/* Downstream ports from this root hub should already be quiesced, so
|
|
|
|
* there will be no DMA activity. Now we can shut down the upstream
|
2009-04-27 19:33:24 +02:00
|
|
|
* link (except maybe for PME# resume signaling). We'll enter a
|
|
|
|
* low power state during suspend_noirq, if the hardware allows.
|
2009-01-20 01:26:56 +01:00
|
|
|
*/
|
2009-04-27 19:33:24 +02:00
|
|
|
pci_disable_device(pci_dev);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hcd_pci_suspend_noirq(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
|
|
struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
retval = check_root_hub_suspended(dev);
|
|
|
|
if (retval)
|
|
|
|
return retval;
|
2009-01-20 01:26:56 +01:00
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
pci_save_state(pci_dev);
|
2009-01-20 01:26:56 +01:00
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
/* If the root hub is HALTed rather than SUSPENDed,
|
|
|
|
* disallow remote wakeup.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2009-04-27 19:33:24 +02:00
|
|
|
if (hcd->state == HC_STATE_HALT)
|
|
|
|
device_set_wakeup_enable(dev, 0);
|
|
|
|
dev_dbg(dev, "wakeup: %d\n", device_may_wakeup(dev));
|
2008-12-17 21:06:03 +01:00
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
/* Possibly enable remote wakeup,
|
|
|
|
* choose the appropriate low-power state, and go to that state.
|
|
|
|
*/
|
|
|
|
retval = pci_prepare_to_sleep(pci_dev);
|
|
|
|
if (retval == -EIO) { /* Low-power not supported */
|
|
|
|
dev_dbg(dev, "--> PCI D0 legacy\n");
|
|
|
|
retval = 0;
|
|
|
|
} else if (retval == 0) {
|
|
|
|
dev_dbg(dev, "--> PCI %s\n",
|
|
|
|
pci_power_name(pci_dev->current_state));
|
2008-12-17 21:06:03 +01:00
|
|
|
} else {
|
2009-04-27 19:33:24 +02:00
|
|
|
suspend_report_result(pci_prepare_to_sleep, retval);
|
|
|
|
return retval;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-11-24 00:45:42 +01:00
|
|
|
#ifdef CONFIG_PPC_PMAC
|
2009-04-27 19:33:24 +02:00
|
|
|
/* Disable ASIC clocks for USB */
|
|
|
|
if (machine_is(powermac)) {
|
|
|
|
struct device_node *of_node;
|
|
|
|
|
|
|
|
of_node = pci_device_to_OF_node(pci_dev);
|
|
|
|
if (of_node)
|
|
|
|
pmac_call_feature(PMAC_FTR_USB_ENABLE, of_node, 0, 0);
|
2005-11-24 00:45:42 +01:00
|
|
|
}
|
2008-12-17 21:06:03 +01:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
static int hcd_pci_resume_noirq(struct device *dev)
|
2008-12-17 21:06:03 +01:00
|
|
|
{
|
2009-04-27 19:33:24 +02:00
|
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
2008-12-17 21:06:03 +01:00
|
|
|
|
2009-01-20 01:26:56 +01:00
|
|
|
#ifdef CONFIG_PPC_PMAC
|
|
|
|
/* Reenable ASIC clocks for USB */
|
|
|
|
if (machine_is(powermac)) {
|
|
|
|
struct device_node *of_node;
|
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
of_node = pci_device_to_OF_node(pci_dev);
|
2009-01-20 01:26:56 +01:00
|
|
|
if (of_node)
|
|
|
|
pmac_call_feature(PMAC_FTR_USB_ENABLE,
|
|
|
|
of_node, 0, 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
/* Go back to D0 and disable remote wakeup */
|
|
|
|
pci_back_from_sleep(pci_dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int resume_common(struct device *dev, bool hibernated)
|
|
|
|
{
|
|
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
|
|
struct usb_hcd *hcd = pci_get_drvdata(pci_dev);
|
|
|
|
int retval;
|
2009-02-13 23:41:12 +01:00
|
|
|
|
2008-12-17 21:06:03 +01:00
|
|
|
if (hcd->state != HC_STATE_SUSPENDED) {
|
2009-04-27 19:33:24 +02:00
|
|
|
dev_dbg(dev, "can't resume, not suspended!\n");
|
2008-12-17 21:06:03 +01:00
|
|
|
return 0;
|
2005-04-19 02:39:22 +02:00
|
|
|
}
|
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
retval = pci_enable_device(pci_dev);
|
2005-04-19 02:39:22 +02:00
|
|
|
if (retval < 0) {
|
2009-04-27 19:33:24 +02:00
|
|
|
dev_err(dev, "can't re-enable after resume, %d!\n", retval);
|
2005-04-19 02:39:22 +02:00
|
|
|
return retval;
|
|
|
|
}
|
2008-12-17 21:06:03 +01:00
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
pci_set_master(pci_dev);
|
2005-04-19 02:39:22 +02:00
|
|
|
|
[PATCH] USB: Fix USB suspend/resume crasher (#2)
This patch closes the IRQ race and makes various other OHCI & EHCI code
path safer vs. suspend/resume.
I've been able to (finally !) successfully suspend and resume various
Mac models, with or without USB mouse plugged, or plugging while asleep,
or unplugging while asleep etc... all without a crash.
Alan, please verify the UHCI bit I did, I only verified that it builds.
It's very simple so I wouldn't expect any issue there. If you aren't
confident, then just drop the hunks that change uhci-hcd.c
I also made the patch a little bit more "safer" by making sure the store
to the interrupt register that disables interrupts is not posted before
I set the flag and drop the spinlock.
Without this patch, you cannot reliably sleep/wakeup any recent Mac, and
I suspect PCs have some more sneaky issues too (they don't frankly crash
with machine checks because x86 tend to silently swallow PCI errors but
that won't last afaik, at least PCI Express will blow up in those
situations, but the USB code may still misbehave).
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2005-11-24 23:59:46 +01:00
|
|
|
clear_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-04-04 00:03:06 +02:00
|
|
|
if (hcd->driver->pci_resume) {
|
2009-04-27 19:33:41 +02:00
|
|
|
retval = hcd->driver->pci_resume(hcd, hibernated);
|
2005-09-23 07:38:16 +02:00
|
|
|
if (retval) {
|
2009-04-27 19:33:24 +02:00
|
|
|
dev_err(dev, "PCI post-resume error %d!\n", retval);
|
2008-01-31 00:21:33 +01:00
|
|
|
usb_hc_died(hcd);
|
2005-09-23 07:38:16 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
static int hcd_pci_resume(struct device *dev)
|
USB: Properly unregister reboot notifier in case of failure in ehci hcd
If some problem occurs during ehci startup, for instance, request_irq fails,
echi hcd driver tries it best to cleanup, but fails to unregister reboot
notifier, which in turn leads to crash on reboot/poweroff.
The following patch resolves this problem by not using reboot notifiers
anymore, but instead making ehci/ohci driver get its own shutdown method. For
PCI, it is done through pci glue, for everything else through platform driver
glue.
One downside: sa1111 does not use platform driver stuff, and does not have its
own shutdown hook, so no 'shutdown' is called for it now. I'm not sure if it
is really necessary on that platform, though.
Signed-off-by: Aleks Gorelov <dared1st@yahoo.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-08-09 02:24:08 +02:00
|
|
|
{
|
2009-04-27 19:33:24 +02:00
|
|
|
return resume_common(dev, false);
|
|
|
|
}
|
USB: Properly unregister reboot notifier in case of failure in ehci hcd
If some problem occurs during ehci startup, for instance, request_irq fails,
echi hcd driver tries it best to cleanup, but fails to unregister reboot
notifier, which in turn leads to crash on reboot/poweroff.
The following patch resolves this problem by not using reboot notifiers
anymore, but instead making ehci/ohci driver get its own shutdown method. For
PCI, it is done through pci glue, for everything else through platform driver
glue.
One downside: sa1111 does not use platform driver stuff, and does not have its
own shutdown hook, so no 'shutdown' is called for it now. I'm not sure if it
is really necessary on that platform, though.
Signed-off-by: Aleks Gorelov <dared1st@yahoo.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-08-09 02:24:08 +02:00
|
|
|
|
2009-04-27 19:33:24 +02:00
|
|
|
static int hcd_pci_restore(struct device *dev)
|
|
|
|
{
|
|
|
|
return resume_common(dev, true);
|
USB: Properly unregister reboot notifier in case of failure in ehci hcd
If some problem occurs during ehci startup, for instance, request_irq fails,
echi hcd driver tries it best to cleanup, but fails to unregister reboot
notifier, which in turn leads to crash on reboot/poweroff.
The following patch resolves this problem by not using reboot notifiers
anymore, but instead making ehci/ohci driver get its own shutdown method. For
PCI, it is done through pci glue, for everything else through platform driver
glue.
One downside: sa1111 does not use platform driver stuff, and does not have its
own shutdown hook, so no 'shutdown' is called for it now. I'm not sure if it
is really necessary on that platform, though.
Signed-off-by: Aleks Gorelov <dared1st@yahoo.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-08-09 02:24:08 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-12-15 03:00:08 +01:00
|
|
|
const struct dev_pm_ops usb_hcd_pci_pm_ops = {
|
2009-04-27 19:33:24 +02:00
|
|
|
.suspend = hcd_pci_suspend,
|
|
|
|
.suspend_noirq = hcd_pci_suspend_noirq,
|
|
|
|
.resume_noirq = hcd_pci_resume_noirq,
|
|
|
|
.resume = hcd_pci_resume,
|
|
|
|
.freeze = check_root_hub_suspended,
|
|
|
|
.freeze_noirq = check_root_hub_suspended,
|
|
|
|
.thaw_noirq = NULL,
|
|
|
|
.thaw = NULL,
|
|
|
|
.poweroff = hcd_pci_suspend,
|
|
|
|
.poweroff_noirq = hcd_pci_suspend_noirq,
|
|
|
|
.restore_noirq = hcd_pci_resume_noirq,
|
|
|
|
.restore = hcd_pci_restore,
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_pm_ops);
|
|
|
|
|
|
|
|
#endif /* CONFIG_PM_SLEEP */
|