Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Patterson | 8b62091 | 2008-11-10 15:30:40 -0700 | [diff] [blame] | 11 | #include <linux/acpi.h> |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #ifdef CONFIG_ACPI |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 14 | extern acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev, |
| 15 | struct pci_bus *pci_bus); |
| 16 | extern acpi_status pci_acpi_remove_bus_pm_notifier(struct acpi_device *dev); |
| 17 | extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev, |
| 18 | struct pci_dev *pci_dev); |
| 19 | extern acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev); |
Jiang Liu | f4b57a3 | 2012-06-22 14:55:16 +0800 | [diff] [blame] | 20 | 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] | 21 | |
Jiri Slaby | 056c58e | 2008-08-18 20:22:54 +0200 | [diff] [blame] | 22 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) |
| 23 | { |
Kenji Kaneshige | d18690a | 2009-02-17 14:12:36 +0900 | [diff] [blame] | 24 | struct pci_bus *pbus = pdev->bus; |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 25 | |
Kenji Kaneshige | d18690a | 2009-02-17 14:12:36 +0900 | [diff] [blame] | 26 | /* Find a PCI root bus */ |
Kenji Kaneshige | a222b8f | 2009-05-26 16:05:33 +0900 | [diff] [blame] | 27 | while (!pci_is_root_bus(pbus)) |
Kenji Kaneshige | d18690a | 2009-02-17 14:12:36 +0900 | [diff] [blame] | 28 | pbus = pbus->parent; |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 29 | |
| 30 | return DEVICE_ACPI_HANDLE(pbus->bridge); |
Jiri Slaby | 056c58e | 2008-08-18 20:22:54 +0200 | [diff] [blame] | 31 | } |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 32 | |
| 33 | static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus) |
| 34 | { |
Yinghai Lu | 059e4ba | 2012-09-24 14:51:23 -0600 | [diff] [blame] | 35 | struct device *dev; |
| 36 | |
| 37 | if (pci_is_root_bus(pbus)) |
| 38 | dev = pbus->bridge; |
| 39 | else |
| 40 | dev = &pbus->self->dev; |
| 41 | |
| 42 | return DEVICE_ACPI_HANDLE(dev); |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 43 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #endif |
| 45 | |
Rafael J. Wysocki | 415e12b | 2011-01-07 00:55:09 +0100 | [diff] [blame] | 46 | #ifdef CONFIG_ACPI_APEI |
| 47 | extern bool aer_acpi_firmware_first(void); |
| 48 | #else |
| 49 | static inline bool aer_acpi_firmware_first(void) { return false; } |
| 50 | #endif |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #endif /* _PCI_ACPI_H_ */ |