2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* File pci-acpi.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Intel
|
|
|
|
* Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PCI_ACPI_H_
|
|
|
|
#define _PCI_ACPI_H_
|
|
|
|
|
2008-11-11 01:30:40 +03:00
|
|
|
#include <linux/acpi.h>
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_ACPI
|
2010-02-18 01:44:09 +03:00
|
|
|
extern acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev,
|
|
|
|
struct pci_bus *pci_bus);
|
|
|
|
extern acpi_status pci_acpi_remove_bus_pm_notifier(struct acpi_device *dev);
|
|
|
|
extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
|
|
|
|
struct pci_dev *pci_dev);
|
|
|
|
extern acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev);
|
|
|
|
|
2008-08-18 22:22:54 +04:00
|
|
|
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
|
|
|
|
{
|
2009-02-17 08:12:36 +03:00
|
|
|
struct pci_bus *pbus = pdev->bus;
|
|
|
|
/* Find a PCI root bus */
|
2009-05-26 11:05:33 +04:00
|
|
|
while (!pci_is_root_bus(pbus))
|
2009-02-17 08:12:36 +03:00
|
|
|
pbus = pbus->parent;
|
|
|
|
return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
|
|
|
|
pbus->number);
|
2008-08-18 22:22:54 +04:00
|
|
|
}
|
2008-12-17 06:09:12 +03:00
|
|
|
|
|
|
|
static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
|
|
|
|
{
|
2009-05-26 11:05:06 +04:00
|
|
|
if (!pci_is_root_bus(pbus))
|
2009-02-17 08:11:56 +03:00
|
|
|
return DEVICE_ACPI_HANDLE(&(pbus->self->dev));
|
|
|
|
return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
|
|
|
|
pbus->number);
|
2008-12-17 06:09:12 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
#else
|
2008-08-18 22:22:54 +04:00
|
|
|
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
|
|
|
|
{ return NULL; }
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _PCI_ACPI_H_ */
|