2005-04-16 22:20:36 +00: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-10 22:30:40 +00:00
|
|
|
#include <linux/acpi.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef CONFIG_ACPI
|
2010-02-17 22:44:09 +00: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 18:22:54 +00:00
|
|
|
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
|
|
|
|
{
|
2009-02-17 05:12:36 +00:00
|
|
|
struct pci_bus *pbus = pdev->bus;
|
|
|
|
/* Find a PCI root bus */
|
2009-05-26 07:05:33 +00:00
|
|
|
while (!pci_is_root_bus(pbus))
|
2009-02-17 05:12:36 +00:00
|
|
|
pbus = pbus->parent;
|
|
|
|
return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
|
|
|
|
pbus->number);
|
2008-08-18 18:22:54 +00:00
|
|
|
}
|
2008-12-17 03:09:12 +00:00
|
|
|
|
|
|
|
static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
|
|
|
|
{
|
2009-05-26 07:05:06 +00:00
|
|
|
if (!pci_is_root_bus(pbus))
|
2009-02-17 05:11:56 +00:00
|
|
|
return DEVICE_ACPI_HANDLE(&(pbus->self->dev));
|
|
|
|
return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
|
|
|
|
pbus->number);
|
2008-12-17 03:09:12 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-06 23:55:09 +00:00
|
|
|
#ifdef CONFIG_ACPI_APEI
|
|
|
|
extern bool aer_acpi_firmware_first(void);
|
|
|
|
#else
|
|
|
|
static inline bool aer_acpi_firmware_first(void) { return false; }
|
|
|
|
#endif
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* _PCI_ACPI_H_ */
|