blob: dd86c97f2454b25746552c26e0e985363c18d352 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File pci-acpi.h
3 *
4 * Copyright (C) 2004 Intel
5 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
6 */
7
8#ifndef _PCI_ACPI_H_
9#define _PCI_ACPI_H_
10
Andrew Patterson8b620912008-11-10 15:30:40 -070011#include <linux/acpi.h>
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#ifdef CONFIG_ACPI
Rafael J. Wysockic0725302014-07-23 01:00:45 +020014extern acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev);
15static inline acpi_status pci_acpi_remove_bus_pm_notifier(struct acpi_device *dev)
16{
17 return acpi_remove_pm_notifier(dev);
18}
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010019extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
20 struct pci_dev *pci_dev);
Rafael J. Wysockic0725302014-07-23 01:00:45 +020021static inline acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev)
22{
23 return acpi_remove_pm_notifier(dev);
24}
Jiang Liuf4b57a32012-06-22 14:55:16 +080025extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010026
Tomasz Nowicki13983eb2016-09-09 21:24:03 +020027struct pci_ecam_ops;
28extern int pci_mcfg_lookup(struct acpi_pci_root *root, struct resource *cfgres,
29 struct pci_ecam_ops **ecam_ops);
Tomasz Nowicki935c7602016-06-10 21:55:13 +020030
Jiri Slaby056c58e2008-08-18 20:22:54 +020031static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
32{
Kenji Kaneshiged18690a2009-02-17 14:12:36 +090033 struct pci_bus *pbus = pdev->bus;
Yinghai Lu059e4ba2012-09-24 14:51:23 -060034
Kenji Kaneshiged18690a2009-02-17 14:12:36 +090035 /* Find a PCI root bus */
Kenji Kaneshigea222b8f2009-05-26 16:05:33 +090036 while (!pci_is_root_bus(pbus))
Kenji Kaneshiged18690a2009-02-17 14:12:36 +090037 pbus = pbus->parent;
Yinghai Lu059e4ba2012-09-24 14:51:23 -060038
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +010039 return ACPI_HANDLE(pbus->bridge);
Jiri Slaby056c58e2008-08-18 20:22:54 +020040}
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090041
42static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
43{
Yinghai Lu059e4ba2012-09-24 14:51:23 -060044 struct device *dev;
45
46 if (pci_is_root_bus(pbus))
47 dev = pbus->bridge;
Yinghai Lu32f638f2014-10-30 10:17:25 -060048 else {
49 /* If pbus is a virtual bus, there is no bridge to it */
50 if (!pbus->self)
51 return NULL;
52
Yinghai Lu059e4ba2012-09-24 14:51:23 -060053 dev = &pbus->self->dev;
Yinghai Lu32f638f2014-10-30 10:17:25 -060054 }
Yinghai Lu059e4ba2012-09-24 14:51:23 -060055
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +010056 return ACPI_HANDLE(dev);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +090057}
Jiang Liu5090d4a2013-04-12 05:44:21 +000058
Jiang Liu2c204382015-10-14 14:29:39 +080059struct acpi_pci_root;
60struct acpi_pci_root_ops;
61
62struct acpi_pci_root_info {
63 struct acpi_pci_root *root;
64 struct acpi_device *bridge;
65 struct acpi_pci_root_ops *ops;
66 struct list_head resources;
67 char name[16];
68};
69
70struct acpi_pci_root_ops {
71 struct pci_ops *pci_ops;
72 int (*init_info)(struct acpi_pci_root_info *info);
73 void (*release_info)(struct acpi_pci_root_info *info);
74 int (*prepare_resources)(struct acpi_pci_root_info *info);
75};
76
77extern int acpi_pci_probe_root_resources(struct acpi_pci_root_info *info);
78extern struct pci_bus *acpi_pci_root_create(struct acpi_pci_root *root,
79 struct acpi_pci_root_ops *ops,
80 struct acpi_pci_root_info *info,
81 void *sd);
82
Jiang Liu5090d4a2013-04-12 05:44:21 +000083void acpi_pci_add_bus(struct pci_bus *bus);
84void acpi_pci_remove_bus(struct pci_bus *bus);
Jiang Liu5c0b04e2013-04-12 05:44:24 +000085
86#ifdef CONFIG_ACPI_PCI_SLOT
87void acpi_pci_slot_init(void);
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +020088void acpi_pci_slot_enumerate(struct pci_bus *bus);
Jiang Liu5c0b04e2013-04-12 05:44:24 +000089void acpi_pci_slot_remove(struct pci_bus *bus);
90#else
91static inline void acpi_pci_slot_init(void) { }
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +020092static inline void acpi_pci_slot_enumerate(struct pci_bus *bus) { }
Jiang Liu5c0b04e2013-04-12 05:44:24 +000093static inline void acpi_pci_slot_remove(struct pci_bus *bus) { }
94#endif
95
Jiang Liu3b63aaa2013-04-12 05:44:26 +000096#ifdef CONFIG_HOTPLUG_PCI_ACPI
97void acpiphp_init(void);
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +020098void acpiphp_enumerate_slots(struct pci_bus *bus);
Jiang Liu3b63aaa2013-04-12 05:44:26 +000099void acpiphp_remove_slots(struct pci_bus *bus);
Rafael J. Wysocki1f7c1642014-02-04 00:45:13 +0100100void acpiphp_check_host_bridge(struct acpi_device *adev);
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000101#else
102static inline void acpiphp_init(void) { }
Rafael J. Wysockibe1c9de2013-07-13 23:27:23 +0200103static inline void acpiphp_enumerate_slots(struct pci_bus *bus) { }
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000104static inline void acpiphp_remove_slots(struct pci_bus *bus) { }
Rafael J. Wysocki1f7c1642014-02-04 00:45:13 +0100105static inline void acpiphp_check_host_bridge(struct acpi_device *adev) { }
Jiang Liu3b63aaa2013-04-12 05:44:26 +0000106#endif
107
Andy Shevchenko94116f82017-06-05 19:40:46 +0300108extern const guid_t pci_acpi_dsm_guid;
Aaron Lu18e94a32015-03-25 14:31:41 +0800109#define DEVICE_LABEL_DSM 0x07
Aaron Lue33caa82015-03-25 14:37:06 +0800110#define RESET_DELAY_DSM 0x08
111#define FUNCTION_DELAY_DSM 0x09
Aaron Lu18e94a32015-03-25 14:31:41 +0800112
Jiang Liu5090d4a2013-04-12 05:44:21 +0000113#else /* CONFIG_ACPI */
114static inline void acpi_pci_add_bus(struct pci_bus *bus) { }
115static inline void acpi_pci_remove_bus(struct pci_bus *bus) { }
116#endif /* CONFIG_ACPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +0100118#ifdef CONFIG_ACPI_APEI
119extern bool aer_acpi_firmware_first(void);
120#else
121static inline bool aer_acpi_firmware_first(void) { return false; }
122#endif
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#endif /* _PCI_ACPI_H_ */