2005-04-17 07:20:36 +09: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 07:30:40 +09:00
|
|
|
#include <linux/acpi.h>
|
|
|
|
|
2005-04-17 07:20:36 +09:00
|
|
|
#ifdef CONFIG_ACPI
|
2010-02-18 07:44:09 +09: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);
|
2012-06-22 15:55:16 +09:00
|
|
|
extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle);
|
2010-02-18 07:44:09 +09:00
|
|
|
|
2008-08-19 03:22:54 +09:00
|
|
|
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
|
|
|
|
{
|
2009-02-17 14:12:36 +09:00
|
|
|
struct pci_bus *pbus = pdev->bus;
|
2012-09-25 05:51:23 +09:00
|
|
|
|
2009-02-17 14:12:36 +09:00
|
|
|
/* Find a PCI root bus */
|
2009-05-26 16:05:33 +09:00
|
|
|
while (!pci_is_root_bus(pbus))
|
2009-02-17 14:12:36 +09:00
|
|
|
pbus = pbus->parent;
|
2012-09-25 05:51:23 +09:00
|
|
|
|
|
|
|
return DEVICE_ACPI_HANDLE(pbus->bridge);
|
2008-08-19 03:22:54 +09:00
|
|
|
}
|
2008-12-17 12:09:12 +09:00
|
|
|
|
|
|
|
static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
|
|
|
|
{
|
2012-09-25 05:51:23 +09:00
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
if (pci_is_root_bus(pbus))
|
|
|
|
dev = pbus->bridge;
|
|
|
|
else
|
|
|
|
dev = &pbus->self->dev;
|
|
|
|
|
|
|
|
return DEVICE_ACPI_HANDLE(dev);
|
2008-12-17 12:09:12 +09:00
|
|
|
}
|
2005-04-17 07:20:36 +09:00
|
|
|
#endif
|
|
|
|
|
2011-01-07 08:55:09 +09: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-17 07:20:36 +09:00
|
|
|
#endif /* _PCI_ACPI_H_ */
|