Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * File pci-acpi.h |
| 4 | * |
| 5 | * Copyright (C) 2004 Intel |
| 6 | * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com) |
| 7 | */ |
| 8 | |
| 9 | #ifndef _PCI_ACPI_H_ |
| 10 | #define _PCI_ACPI_H_ |
| 11 | |
Andrew Patterson | 8b62091 | 2008-11-10 15:30:40 -0700 | [diff] [blame] | 12 | #include <linux/acpi.h> |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #ifdef CONFIG_ACPI |
Rafael J. Wysocki | c072530 | 2014-07-23 01:00:45 +0200 | [diff] [blame] | 15 | extern acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev); |
| 16 | static inline acpi_status pci_acpi_remove_bus_pm_notifier(struct acpi_device *dev) |
| 17 | { |
| 18 | return acpi_remove_pm_notifier(dev); |
| 19 | } |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 20 | extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev, |
| 21 | struct pci_dev *pci_dev); |
Rafael J. Wysocki | c072530 | 2014-07-23 01:00:45 +0200 | [diff] [blame] | 22 | static inline acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev) |
| 23 | { |
| 24 | return acpi_remove_pm_notifier(dev); |
| 25 | } |
Jiang Liu | f4b57a3 | 2012-06-22 14:55:16 +0800 | [diff] [blame] | 26 | extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle); |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 27 | |
Tomasz Nowicki | 13983eb | 2016-09-09 21:24:03 +0200 | [diff] [blame] | 28 | struct pci_ecam_ops; |
| 29 | extern int pci_mcfg_lookup(struct acpi_pci_root *root, struct resource *cfgres, |
Rob Herring | 0b10477 | 2020-04-09 17:49:21 -0600 | [diff] [blame] | 30 | const struct pci_ecam_ops **ecam_ops); |
Tomasz Nowicki | 935c760 | 2016-06-10 21:55:13 +0200 | [diff] [blame] | 31 | |
Jiri Slaby | 056c58e | 2008-08-18 20:22:54 +0200 | [diff] [blame] | 32 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) |
| 33 | { |
Kenji Kaneshige | d18690a | 2009-02-17 14:12:36 +0900 | [diff] [blame] | 34 | struct pci_bus *pbus = pdev->bus; |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 35 | |
Kenji Kaneshige | d18690a | 2009-02-17 14:12:36 +0900 | [diff] [blame] | 36 | /* Find a PCI root bus */ |
Kenji Kaneshige | a222b8f | 2009-05-26 16:05:33 +0900 | [diff] [blame] | 37 | while (!pci_is_root_bus(pbus)) |
Kenji Kaneshige | d18690a | 2009-02-17 14:12:36 +0900 | [diff] [blame] | 38 | pbus = pbus->parent; |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 39 | |
Rafael J. Wysocki | 3a83f99 | 2013-11-14 23:17:21 +0100 | [diff] [blame] | 40 | return ACPI_HANDLE(pbus->bridge); |
Jiri Slaby | 056c58e | 2008-08-18 20:22:54 +0200 | [diff] [blame] | 41 | } |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 42 | |
| 43 | static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus) |
| 44 | { |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 45 | struct device *dev; |
| 46 | |
| 47 | if (pci_is_root_bus(pbus)) |
| 48 | dev = pbus->bridge; |
Yinghai Lu | 32f638f | 2014-10-30 10:17:25 -0600 | [diff] [blame] | 49 | else { |
| 50 | /* If pbus is a virtual bus, there is no bridge to it */ |
| 51 | if (!pbus->self) |
| 52 | return NULL; |
| 53 | |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 54 | dev = &pbus->self->dev; |
Yinghai Lu | 32f638f | 2014-10-30 10:17:25 -0600 | [diff] [blame] | 55 | } |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 56 | |
Rafael J. Wysocki | 3a83f99 | 2013-11-14 23:17:21 +0100 | [diff] [blame] | 57 | return ACPI_HANDLE(dev); |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 58 | } |
Jiang Liu | 5090d4a | 2013-04-12 05:44:21 +0000 | [diff] [blame] | 59 | |
Jiang Liu | 2c20438 | 2015-10-14 14:29:39 +0800 | [diff] [blame] | 60 | struct acpi_pci_root; |
| 61 | struct acpi_pci_root_ops; |
| 62 | |
| 63 | struct acpi_pci_root_info { |
| 64 | struct acpi_pci_root *root; |
| 65 | struct acpi_device *bridge; |
| 66 | struct acpi_pci_root_ops *ops; |
| 67 | struct list_head resources; |
| 68 | char name[16]; |
| 69 | }; |
| 70 | |
| 71 | struct acpi_pci_root_ops { |
| 72 | struct pci_ops *pci_ops; |
| 73 | int (*init_info)(struct acpi_pci_root_info *info); |
| 74 | void (*release_info)(struct acpi_pci_root_info *info); |
| 75 | int (*prepare_resources)(struct acpi_pci_root_info *info); |
| 76 | }; |
| 77 | |
| 78 | extern int acpi_pci_probe_root_resources(struct acpi_pci_root_info *info); |
| 79 | extern struct pci_bus *acpi_pci_root_create(struct acpi_pci_root *root, |
| 80 | struct acpi_pci_root_ops *ops, |
| 81 | struct acpi_pci_root_info *info, |
| 82 | void *sd); |
| 83 | |
Jiang Liu | 5090d4a | 2013-04-12 05:44:21 +0000 | [diff] [blame] | 84 | void acpi_pci_add_bus(struct pci_bus *bus); |
| 85 | void acpi_pci_remove_bus(struct pci_bus *bus); |
Jiang Liu | 5c0b04e | 2013-04-12 05:44:24 +0000 | [diff] [blame] | 86 | |
| 87 | #ifdef CONFIG_ACPI_PCI_SLOT |
| 88 | void acpi_pci_slot_init(void); |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 89 | void acpi_pci_slot_enumerate(struct pci_bus *bus); |
Jiang Liu | 5c0b04e | 2013-04-12 05:44:24 +0000 | [diff] [blame] | 90 | void acpi_pci_slot_remove(struct pci_bus *bus); |
| 91 | #else |
| 92 | static inline void acpi_pci_slot_init(void) { } |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 93 | static inline void acpi_pci_slot_enumerate(struct pci_bus *bus) { } |
Jiang Liu | 5c0b04e | 2013-04-12 05:44:24 +0000 | [diff] [blame] | 94 | static inline void acpi_pci_slot_remove(struct pci_bus *bus) { } |
| 95 | #endif |
| 96 | |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 97 | #ifdef CONFIG_HOTPLUG_PCI_ACPI |
| 98 | void acpiphp_init(void); |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 99 | void acpiphp_enumerate_slots(struct pci_bus *bus); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 100 | void acpiphp_remove_slots(struct pci_bus *bus); |
Rafael J. Wysocki | 1f7c164 | 2014-02-04 00:45:13 +0100 | [diff] [blame] | 101 | void acpiphp_check_host_bridge(struct acpi_device *adev); |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 102 | #else |
| 103 | static inline void acpiphp_init(void) { } |
Rafael J. Wysocki | be1c9de | 2013-07-13 23:27:23 +0200 | [diff] [blame] | 104 | static inline void acpiphp_enumerate_slots(struct pci_bus *bus) { } |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 105 | static inline void acpiphp_remove_slots(struct pci_bus *bus) { } |
Rafael J. Wysocki | 1f7c164 | 2014-02-04 00:45:13 +0100 | [diff] [blame] | 106 | static inline void acpiphp_check_host_bridge(struct acpi_device *adev) { } |
Jiang Liu | 3b63aaa | 2013-04-12 05:44:26 +0000 | [diff] [blame] | 107 | #endif |
| 108 | |
Andy Shevchenko | 94116f8 | 2017-06-05 19:40:46 +0300 | [diff] [blame] | 109 | extern const guid_t pci_acpi_dsm_guid; |
Krzysztof WilczyĆski | 3910eba | 2020-05-26 21:39:05 +0000 | [diff] [blame] | 110 | |
| 111 | /* _DSM Definitions for PCI */ |
| 112 | #define DSM_PCI_PRESERVE_BOOT_CONFIG 0x05 |
| 113 | #define DSM_PCI_DEVICE_NAME 0x07 |
| 114 | #define DSM_PCI_POWER_ON_RESET_DELAY 0x08 |
| 115 | #define DSM_PCI_DEVICE_READINESS_DURATIONS 0x09 |
Aaron Lu | 18e94a3 | 2015-03-25 14:31:41 +0800 | [diff] [blame] | 116 | |
Kuppuswamy Sathyanarayanan | ac1c8e3 | 2020-03-23 17:26:07 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_PCIE_EDR |
| 118 | void pci_acpi_add_edr_notifier(struct pci_dev *pdev); |
| 119 | void pci_acpi_remove_edr_notifier(struct pci_dev *pdev); |
| 120 | #else |
| 121 | static inline void pci_acpi_add_edr_notifier(struct pci_dev *pdev) { } |
| 122 | static inline void pci_acpi_remove_edr_notifier(struct pci_dev *pdev) { } |
| 123 | #endif /* CONFIG_PCIE_EDR */ |
| 124 | |
Jiang Liu | 5090d4a | 2013-04-12 05:44:21 +0000 | [diff] [blame] | 125 | #else /* CONFIG_ACPI */ |
| 126 | static inline void acpi_pci_add_bus(struct pci_bus *bus) { } |
| 127 | static inline void acpi_pci_remove_bus(struct pci_bus *bus) { } |
| 128 | #endif /* CONFIG_ACPI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | #endif /* _PCI_ACPI_H_ */ |