2005-04-17 06:20:36 +08: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 06:30:40 +08:00
|
|
|
#include <linux/acpi.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_ACPI
|
2014-07-23 07:00:45 +08:00
|
|
|
extern acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev);
|
|
|
|
static inline acpi_status pci_acpi_remove_bus_pm_notifier(struct acpi_device *dev)
|
|
|
|
{
|
|
|
|
return acpi_remove_pm_notifier(dev);
|
|
|
|
}
|
2010-02-18 06:44:09 +08:00
|
|
|
extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
|
|
|
|
struct pci_dev *pci_dev);
|
2014-07-23 07:00:45 +08:00
|
|
|
static inline acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev)
|
|
|
|
{
|
|
|
|
return acpi_remove_pm_notifier(dev);
|
|
|
|
}
|
2012-06-22 14:55:16 +08:00
|
|
|
extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle);
|
2010-02-18 06:44:09 +08:00
|
|
|
|
2008-08-19 02:22:54 +08:00
|
|
|
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
|
|
|
|
{
|
2009-02-17 13:12:36 +08:00
|
|
|
struct pci_bus *pbus = pdev->bus;
|
2012-09-25 04:51:23 +08:00
|
|
|
|
2009-02-17 13:12:36 +08:00
|
|
|
/* Find a PCI root bus */
|
2009-05-26 15:05:33 +08:00
|
|
|
while (!pci_is_root_bus(pbus))
|
2009-02-17 13:12:36 +08:00
|
|
|
pbus = pbus->parent;
|
2012-09-25 04:51:23 +08:00
|
|
|
|
2013-11-15 06:17:21 +08:00
|
|
|
return ACPI_HANDLE(pbus->bridge);
|
2008-08-19 02:22:54 +08:00
|
|
|
}
|
2008-12-17 11:09:12 +08:00
|
|
|
|
|
|
|
static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
|
|
|
|
{
|
2012-09-25 04:51:23 +08:00
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
if (pci_is_root_bus(pbus))
|
|
|
|
dev = pbus->bridge;
|
2014-10-31 00:17:25 +08:00
|
|
|
else {
|
|
|
|
/* If pbus is a virtual bus, there is no bridge to it */
|
|
|
|
if (!pbus->self)
|
|
|
|
return NULL;
|
|
|
|
|
2012-09-25 04:51:23 +08:00
|
|
|
dev = &pbus->self->dev;
|
2014-10-31 00:17:25 +08:00
|
|
|
}
|
2012-09-25 04:51:23 +08:00
|
|
|
|
2013-11-15 06:17:21 +08:00
|
|
|
return ACPI_HANDLE(dev);
|
2008-12-17 11:09:12 +08:00
|
|
|
}
|
2013-04-12 13:44:21 +08:00
|
|
|
|
|
|
|
void acpi_pci_add_bus(struct pci_bus *bus);
|
|
|
|
void acpi_pci_remove_bus(struct pci_bus *bus);
|
2013-04-12 13:44:24 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_ACPI_PCI_SLOT
|
|
|
|
void acpi_pci_slot_init(void);
|
2013-07-14 05:27:23 +08:00
|
|
|
void acpi_pci_slot_enumerate(struct pci_bus *bus);
|
2013-04-12 13:44:24 +08:00
|
|
|
void acpi_pci_slot_remove(struct pci_bus *bus);
|
|
|
|
#else
|
|
|
|
static inline void acpi_pci_slot_init(void) { }
|
2013-07-14 05:27:23 +08:00
|
|
|
static inline void acpi_pci_slot_enumerate(struct pci_bus *bus) { }
|
2013-04-12 13:44:24 +08:00
|
|
|
static inline void acpi_pci_slot_remove(struct pci_bus *bus) { }
|
|
|
|
#endif
|
|
|
|
|
2013-04-12 13:44:26 +08:00
|
|
|
#ifdef CONFIG_HOTPLUG_PCI_ACPI
|
|
|
|
void acpiphp_init(void);
|
2013-07-14 05:27:23 +08:00
|
|
|
void acpiphp_enumerate_slots(struct pci_bus *bus);
|
2013-04-12 13:44:26 +08:00
|
|
|
void acpiphp_remove_slots(struct pci_bus *bus);
|
2014-02-04 07:45:13 +08:00
|
|
|
void acpiphp_check_host_bridge(struct acpi_device *adev);
|
2013-04-12 13:44:26 +08:00
|
|
|
#else
|
|
|
|
static inline void acpiphp_init(void) { }
|
2013-07-14 05:27:23 +08:00
|
|
|
static inline void acpiphp_enumerate_slots(struct pci_bus *bus) { }
|
2013-04-12 13:44:26 +08:00
|
|
|
static inline void acpiphp_remove_slots(struct pci_bus *bus) { }
|
2014-02-04 07:45:13 +08:00
|
|
|
static inline void acpiphp_check_host_bridge(struct acpi_device *adev) { }
|
2013-04-12 13:44:26 +08:00
|
|
|
#endif
|
|
|
|
|
2013-04-12 13:44:21 +08:00
|
|
|
#else /* CONFIG_ACPI */
|
|
|
|
static inline void acpi_pci_add_bus(struct pci_bus *bus) { }
|
|
|
|
static inline void acpi_pci_remove_bus(struct pci_bus *bus) { }
|
|
|
|
#endif /* CONFIG_ACPI */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-01-07 07:55:09 +08: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 06:20:36 +08:00
|
|
|
#endif /* _PCI_ACPI_H_ */
|