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
|
2014-07-22 23:00:45 +00: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 22:44:09 +00:00
|
|
|
extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
|
|
|
|
struct pci_dev *pci_dev);
|
2014-07-22 23:00:45 +00:00
|
|
|
static inline acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev)
|
|
|
|
{
|
|
|
|
return acpi_remove_pm_notifier(dev);
|
|
|
|
}
|
2012-06-22 06:55:16 +00:00
|
|
|
extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle);
|
2010-02-17 22:44:09 +00:00
|
|
|
|
2016-09-09 19:24:03 +00:00
|
|
|
struct pci_ecam_ops;
|
|
|
|
extern int pci_mcfg_lookup(struct acpi_pci_root *root, struct resource *cfgres,
|
|
|
|
struct pci_ecam_ops **ecam_ops);
|
2016-06-10 19:55:13 +00:00
|
|
|
|
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;
|
2012-09-24 20:51:23 +00:00
|
|
|
|
2009-02-17 05:12:36 +00:00
|
|
|
/* 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;
|
2012-09-24 20:51:23 +00:00
|
|
|
|
2013-11-14 22:17:21 +00:00
|
|
|
return ACPI_HANDLE(pbus->bridge);
|
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)
|
|
|
|
{
|
2012-09-24 20:51:23 +00:00
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
if (pci_is_root_bus(pbus))
|
|
|
|
dev = pbus->bridge;
|
2014-10-30 16:17:25 +00:00
|
|
|
else {
|
|
|
|
/* If pbus is a virtual bus, there is no bridge to it */
|
|
|
|
if (!pbus->self)
|
|
|
|
return NULL;
|
|
|
|
|
2012-09-24 20:51:23 +00:00
|
|
|
dev = &pbus->self->dev;
|
2014-10-30 16:17:25 +00:00
|
|
|
}
|
2012-09-24 20:51:23 +00:00
|
|
|
|
2013-11-14 22:17:21 +00:00
|
|
|
return ACPI_HANDLE(dev);
|
2008-12-17 03:09:12 +00:00
|
|
|
}
|
2013-04-12 05:44:21 +00:00
|
|
|
|
2015-10-14 06:29:39 +00:00
|
|
|
struct acpi_pci_root;
|
|
|
|
struct acpi_pci_root_ops;
|
|
|
|
|
|
|
|
struct acpi_pci_root_info {
|
|
|
|
struct acpi_pci_root *root;
|
|
|
|
struct acpi_device *bridge;
|
|
|
|
struct acpi_pci_root_ops *ops;
|
|
|
|
struct list_head resources;
|
|
|
|
char name[16];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_pci_root_ops {
|
|
|
|
struct pci_ops *pci_ops;
|
|
|
|
int (*init_info)(struct acpi_pci_root_info *info);
|
|
|
|
void (*release_info)(struct acpi_pci_root_info *info);
|
|
|
|
int (*prepare_resources)(struct acpi_pci_root_info *info);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern int acpi_pci_probe_root_resources(struct acpi_pci_root_info *info);
|
|
|
|
extern struct pci_bus *acpi_pci_root_create(struct acpi_pci_root *root,
|
|
|
|
struct acpi_pci_root_ops *ops,
|
|
|
|
struct acpi_pci_root_info *info,
|
|
|
|
void *sd);
|
|
|
|
|
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 21:27:23 +00: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 21:27:23 +00: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 21:27:23 +00: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-03 23:45:13 +00: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 21:27:23 +00: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-03 23:45:13 +00:00
|
|
|
static inline void acpiphp_check_host_bridge(struct acpi_device *adev) { }
|
2013-04-12 05:44:26 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-25 06:31:41 +00:00
|
|
|
extern const u8 pci_acpi_dsm_uuid[];
|
|
|
|
#define DEVICE_LABEL_DSM 0x07
|
2015-03-25 06:37:06 +00:00
|
|
|
#define RESET_DELAY_DSM 0x08
|
|
|
|
#define FUNCTION_DELAY_DSM 0x09
|
2015-03-25 06:31:41 +00:00
|
|
|
|
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 22:20:36 +00:00
|
|
|
|
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_ */
|