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