2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* (C) Copyright David Brownell 2000-2002
|
2008-01-31 02:21:33 +03:00
|
|
|
*
|
2005-04-17 02:20:36 +04: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 02:45:42 +03:00
|
|
|
#include <linux/usb.h>
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/irq.h>
|
2005-11-24 02:45:42 +03: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 09:38:16 +04:00
|
|
|
|
|
|
|
#include "usb.h"
|
2005-04-17 02:20:36 +04:00
|
|
|
#include "hcd.h"
|
|
|
|
|
|
|
|
|
2005-04-19 04:39:22 +04:00
|
|
|
/* PCI-based HCs are common, but plenty of non-PCI HCs are used too */
|
2005-04-17 02:20:36 +04: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 02:21:33 +03:00
|
|
|
int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct hc_driver *driver;
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (usb_disabled())
|
|
|
|
return -ENODEV;
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
if (!id)
|
|
|
|
return -EINVAL;
|
|
|
|
driver = (struct hc_driver *)id->driver_data;
|
|
|
|
if (!driver)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
if (pci_enable_device(dev) < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
return -ENODEV;
|
2005-04-19 04:39:22 +04:00
|
|
|
dev->current_state = PCI_D0;
|
2008-01-31 02:21:33 +03:00
|
|
|
|
|
|
|
if (!dev->irq) {
|
|
|
|
dev_err(&dev->dev,
|
2005-04-17 02:20:36 +04:00
|
|
|
"Found HC with no IRQ. Check BIOS/PCI %s setup!\n",
|
|
|
|
pci_name(dev));
|
2008-01-31 02:21:33 +03:00
|
|
|
retval = -ENODEV;
|
2005-04-17 02:20:36 +04:00
|
|
|
goto err1;
|
2008-01-31 02:21:33 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!hcd) {
|
|
|
|
retval = -ENOMEM;
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
2008-01-31 02:21:33 +03: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 02:20:36 +04:00
|
|
|
driver->description)) {
|
2008-01-31 02:21:33 +03:00
|
|
|
dev_dbg(&dev->dev, "controller already in use\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = -EBUSY;
|
|
|
|
goto err2;
|
|
|
|
}
|
2008-01-31 02:21:33 +03:00
|
|
|
hcd->regs = ioremap_nocache(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (hcd->regs == NULL) {
|
2008-01-31 02:21:33 +03:00
|
|
|
dev_dbg(&dev->dev, "error mapping memory\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = -EFAULT;
|
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
} else {
|
|
|
|
/* UHCI */
|
2005-04-17 02:20:36 +04:00
|
|
|
int region;
|
|
|
|
|
|
|
|
for (region = 0; region < PCI_ROM_RESOURCE; region++) {
|
2008-01-31 02:21:33 +03:00
|
|
|
if (!(pci_resource_flags(dev, region) &
|
2005-04-17 02:20:36 +04:00
|
|
|
IORESOURCE_IO))
|
|
|
|
continue;
|
|
|
|
|
2008-01-31 02:21:33 +03: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 02:20:36 +04:00
|
|
|
driver->description))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (region == PCI_ROM_RESOURCE) {
|
2008-01-31 02:21:33 +03:00
|
|
|
dev_dbg(&dev->dev, "no i/o regions available\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
retval = -EBUSY;
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
pci_set_master(dev);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-12-06 22:47:08 +03:00
|
|
|
retval = usb_add_hcd(hcd, dev->irq, IRQF_DISABLED | IRQF_SHARED);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval != 0)
|
|
|
|
goto err4;
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
err4:
|
|
|
|
if (driver->flags & HCD_MEMORY) {
|
2008-01-31 02:21:33 +03:00
|
|
|
iounmap(hcd->regs);
|
2005-04-17 02:20:36 +04:00
|
|
|
err3:
|
2008-01-31 02:21:33 +03:00
|
|
|
release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 02:20:36 +04:00
|
|
|
} else
|
2008-01-31 02:21:33 +03:00
|
|
|
release_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 02:20:36 +04:00
|
|
|
err2:
|
2008-01-31 02:21:33 +03:00
|
|
|
usb_put_hcd(hcd);
|
2005-04-17 02:20:36 +04:00
|
|
|
err1:
|
2008-01-31 02:21:33 +03:00
|
|
|
pci_disable_device(dev);
|
|
|
|
dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval);
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
2008-01-31 02:21:33 +03:00
|
|
|
}
|
2008-01-25 20:12:21 +03:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_probe);
|
2005-04-17 02:20:36 +04: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 02:21:33 +03:00
|
|
|
void usb_hcd_pci_remove(struct pci_dev *dev)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
|
|
|
|
hcd = pci_get_drvdata(dev);
|
|
|
|
if (!hcd)
|
|
|
|
return;
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
usb_remove_hcd(hcd);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (hcd->driver->flags & HCD_MEMORY) {
|
2008-01-31 02:21:33 +03:00
|
|
|
iounmap(hcd->regs);
|
|
|
|
release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 02:20:36 +04:00
|
|
|
} else {
|
2008-01-31 02:21:33 +03:00
|
|
|
release_region(hcd->rsrc_start, hcd->rsrc_len);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2008-01-31 02:21:33 +03:00
|
|
|
usb_put_hcd(hcd);
|
2005-04-17 02:20:36 +04:00
|
|
|
pci_disable_device(dev);
|
|
|
|
}
|
2008-01-25 20:12:21 +03:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_remove);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
|
|
|
|
|
|
|
/**
|
|
|
|
* usb_hcd_pci_suspend - power management suspend of a PCI-based HCD
|
|
|
|
* @dev: USB Host Controller being suspended
|
2008-12-17 23:06:03 +03:00
|
|
|
* @message: Power Management message describing this state transition
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2008-12-17 23:06:03 +03:00
|
|
|
* Store this function in the HCD's struct pci_driver as .suspend.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2008-01-31 02:21:33 +03:00
|
|
|
int usb_hcd_pci_suspend(struct pci_dev *dev, pm_message_t message)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2008-12-17 23:06:03 +03:00
|
|
|
struct usb_hcd *hcd = pci_get_drvdata(dev);
|
2005-04-17 02:20:36 +04:00
|
|
|
int retval = 0;
|
2008-12-17 23:06:03 +03:00
|
|
|
int wake, w;
|
2009-01-20 03:26:56 +03:00
|
|
|
int has_pci_pm;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-23 09:38:16 +04: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...
|
|
|
|
*
|
|
|
|
* We must ignore the FREEZE vs SUSPEND distinction here, because
|
|
|
|
* otherwise the swsusp will save (and restore) garbage state.
|
|
|
|
*/
|
2007-05-04 19:54:28 +04:00
|
|
|
if (!(hcd->state == HC_STATE_SUSPENDED ||
|
2008-12-17 23:06:03 +03:00
|
|
|
hcd->state == HC_STATE_HALT)) {
|
|
|
|
dev_warn(&dev->dev, "Root hub is not suspended\n");
|
|
|
|
retval = -EBUSY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We might already be suspended (runtime PM -- not yet written) */
|
|
|
|
if (dev->current_state != PCI_D0)
|
|
|
|
goto done;
|
2005-09-23 09:38:16 +04:00
|
|
|
|
2008-04-04 02:03:06 +04:00
|
|
|
if (hcd->driver->pci_suspend) {
|
|
|
|
retval = hcd->driver->pci_suspend(hcd, message);
|
|
|
|
suspend_report_result(hcd->driver->pci_suspend, retval);
|
2006-03-23 12:38:34 +03:00
|
|
|
if (retval)
|
2005-09-23 09:38:16 +04:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2008-12-17 23:06:03 +03:00
|
|
|
synchronize_irq(dev->irq);
|
2005-04-19 04:39:22 +04:00
|
|
|
|
2009-01-20 03:26:56 +03: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
|
|
|
|
* link (except maybe for PME# resume signaling) and enter some PCI
|
|
|
|
* low power state, if the hardware allows.
|
|
|
|
*/
|
|
|
|
pci_disable_device(dev);
|
|
|
|
|
|
|
|
pci_save_state(dev);
|
|
|
|
|
2008-12-17 23:06:03 +03:00
|
|
|
/* Don't fail on error to enable wakeup. We rely on pci code
|
|
|
|
* to reject requests the hardware can't implement, rather
|
|
|
|
* than coding the same thing.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2008-12-17 23:06:03 +03:00
|
|
|
wake = (hcd->state == HC_STATE_SUSPENDED &&
|
|
|
|
device_may_wakeup(&dev->dev));
|
|
|
|
w = pci_wake_from_d3(dev, wake);
|
|
|
|
if (w < 0)
|
|
|
|
wake = w;
|
|
|
|
dev_dbg(&dev->dev, "wakeup: %d\n", wake);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-12-17 23:06:03 +03:00
|
|
|
/* Don't change state if we don't need to */
|
|
|
|
if (message.event == PM_EVENT_FREEZE ||
|
|
|
|
message.event == PM_EVENT_PRETHAW) {
|
|
|
|
dev_dbg(&dev->dev, "--> no state change\n");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
has_pci_pm = pci_find_capability(dev, PCI_CAP_ID_PM);
|
|
|
|
if (!has_pci_pm) {
|
|
|
|
dev_dbg(&dev->dev, "--> PCI D0 legacy\n");
|
|
|
|
} else {
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-04-19 04:39:22 +04:00
|
|
|
/* NOTE: dev->current_state becomes nonzero only here, and
|
|
|
|
* only for devices that support PCI PM. Also, exiting
|
|
|
|
* PCI_D3 (but not PCI_D1 or PCI_D2) is allowed to reset
|
|
|
|
* some device state (e.g. as part of clock reinit).
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2008-01-31 02:21:33 +03:00
|
|
|
retval = pci_set_power_state(dev, PCI_D3hot);
|
2006-03-23 12:38:34 +03:00
|
|
|
suspend_report_result(pci_set_power_state, retval);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (retval == 0) {
|
2008-12-17 23:06:03 +03:00
|
|
|
dev_dbg(&dev->dev, "--> PCI D3\n");
|
2005-09-23 09:38:16 +04:00
|
|
|
} else {
|
2008-01-31 02:21:33 +03:00
|
|
|
dev_dbg(&dev->dev, "PCI D3 suspend fail, %d\n",
|
2005-04-19 04:39:22 +04:00
|
|
|
retval);
|
2008-12-17 23:06:03 +03:00
|
|
|
pci_restore_state(dev);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-24 02:45:42 +03:00
|
|
|
#ifdef CONFIG_PPC_PMAC
|
2008-12-17 23:06:03 +03:00
|
|
|
if (retval == 0) {
|
2005-11-24 02:45:42 +03:00
|
|
|
/* Disable ASIC clocks for USB */
|
2006-03-28 16:15:54 +04:00
|
|
|
if (machine_is(powermac)) {
|
2005-11-24 02:45:42 +03:00
|
|
|
struct device_node *of_node;
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
of_node = pci_device_to_OF_node(dev);
|
2005-11-24 02:45:42 +03:00
|
|
|
if (of_node)
|
|
|
|
pmac_call_feature(PMAC_FTR_USB_ENABLE,
|
|
|
|
of_node, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2008-12-17 23:06:03 +03:00
|
|
|
#endif
|
2005-11-24 02:45:42 +03:00
|
|
|
|
2008-12-17 23:06:03 +03:00
|
|
|
done:
|
2005-04-17 02:20:36 +04:00
|
|
|
return retval;
|
|
|
|
}
|
2009-01-20 03:26:56 +03:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_suspend);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-12-17 23:06:03 +03:00
|
|
|
/**
|
|
|
|
* usb_hcd_pci_resume - power management resume of a PCI-based HCD
|
|
|
|
* @dev: USB Host Controller being resumed
|
|
|
|
*
|
|
|
|
* Store this function in the HCD's struct pci_driver as .resume.
|
|
|
|
*/
|
|
|
|
int usb_hcd_pci_resume(struct pci_dev *dev)
|
|
|
|
{
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
int retval;
|
|
|
|
|
2009-01-20 03:26:56 +03:00
|
|
|
#ifdef CONFIG_PPC_PMAC
|
|
|
|
/* Reenable ASIC clocks for USB */
|
|
|
|
if (machine_is(powermac)) {
|
|
|
|
struct device_node *of_node;
|
|
|
|
|
|
|
|
of_node = pci_device_to_OF_node(dev);
|
|
|
|
if (of_node)
|
|
|
|
pmac_call_feature(PMAC_FTR_USB_ENABLE,
|
|
|
|
of_node, 0, 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-02-14 01:41:12 +03:00
|
|
|
pci_restore_state(dev);
|
|
|
|
|
2008-12-17 23:06:03 +03:00
|
|
|
hcd = pci_get_drvdata(dev);
|
|
|
|
if (hcd->state != HC_STATE_SUSPENDED) {
|
|
|
|
dev_dbg(hcd->self.controller,
|
|
|
|
"can't resume, not suspended!\n");
|
|
|
|
return 0;
|
2005-04-19 04:39:22 +04:00
|
|
|
}
|
|
|
|
|
2009-01-20 03:26:56 +03:00
|
|
|
pci_enable_wake(dev, PCI_D0, false);
|
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
retval = pci_enable_device(dev);
|
2005-04-19 04:39:22 +04:00
|
|
|
if (retval < 0) {
|
2008-12-17 23:06:03 +03:00
|
|
|
dev_err(&dev->dev, "can't re-enable after resume, %d!\n",
|
|
|
|
retval);
|
2005-04-19 04:39:22 +04:00
|
|
|
return retval;
|
|
|
|
}
|
2008-12-17 23:06:03 +03:00
|
|
|
|
2008-01-31 02:21:33 +03:00
|
|
|
pci_set_master(dev);
|
2008-12-17 23:06:03 +03:00
|
|
|
|
|
|
|
/* yes, ignore this result too... */
|
|
|
|
(void) pci_wake_from_d3(dev, 0);
|
2005-04-19 04:39:22 +04: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-25 01:59:46 +03:00
|
|
|
clear_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-04-04 02:03:06 +04:00
|
|
|
if (hcd->driver->pci_resume) {
|
|
|
|
retval = hcd->driver->pci_resume(hcd);
|
2005-09-23 09:38:16 +04:00
|
|
|
if (retval) {
|
2008-01-31 02:21:33 +03:00
|
|
|
dev_err(hcd->self.controller,
|
2005-09-23 09:38:16 +04:00
|
|
|
"PCI post-resume error %d!\n", retval);
|
2008-01-31 02:21:33 +03:00
|
|
|
usb_hc_died(hcd);
|
2005-09-23 09:38:16 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
2008-01-25 20:12:21 +03:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_resume);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#endif /* CONFIG_PM */
|
|
|
|
|
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 04:24:08 +04:00
|
|
|
/**
|
|
|
|
* usb_hcd_pci_shutdown - shutdown host controller
|
|
|
|
* @dev: USB Host Controller being shutdown
|
|
|
|
*/
|
2008-01-31 02:21:33 +03:00
|
|
|
void usb_hcd_pci_shutdown(struct pci_dev *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 04:24:08 +04:00
|
|
|
{
|
|
|
|
struct usb_hcd *hcd;
|
|
|
|
|
|
|
|
hcd = pci_get_drvdata(dev);
|
|
|
|
if (!hcd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hcd->driver->shutdown)
|
|
|
|
hcd->driver->shutdown(hcd);
|
|
|
|
}
|
2008-01-25 20:12:21 +03:00
|
|
|
EXPORT_SYMBOL_GPL(usb_hcd_pci_shutdown);
|
2005-04-17 02:20:36 +04:00
|
|
|
|