]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/pci-acpi.h
KEYS: Fix race between updating and finding a negative key
[mirror_ubuntu-artful-kernel.git] / include / linux / pci-acpi.h
CommitLineData
1da177e4
LT
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
8b62091e
AP
11#include <linux/acpi.h>
12
1da177e4 13#ifdef CONFIG_ACPI
c072530f
RW
14extern 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}
b67ea761
RW
19extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
20 struct pci_dev *pci_dev);
c072530f
RW
21static inline acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev)
22{
23 return acpi_remove_pm_notifier(dev);
24}
f4b57a3b 25extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle);
b67ea761 26
13983eb8
TN
27struct pci_ecam_ops;
28extern int pci_mcfg_lookup(struct acpi_pci_root *root, struct resource *cfgres,
29 struct pci_ecam_ops **ecam_ops);
935c760e 30
056c58e8
JS
31static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
32{
d18690af 33 struct pci_bus *pbus = pdev->bus;
059e4ba2 34
d18690af 35 /* Find a PCI root bus */
a222b8f8 36 while (!pci_is_root_bus(pbus))
d18690af 37 pbus = pbus->parent;
059e4ba2 38
3a83f992 39 return ACPI_HANDLE(pbus->bridge);
056c58e8 40}
e8c331e9
KK
41
42static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
43{
059e4ba2
YL
44 struct device *dev;
45
46 if (pci_is_root_bus(pbus))
47 dev = pbus->bridge;
32f638fc
YL
48 else {
49 /* If pbus is a virtual bus, there is no bridge to it */
50 if (!pbus->self)
51 return NULL;
52
059e4ba2 53 dev = &pbus->self->dev;
32f638fc 54 }
059e4ba2 55
3a83f992 56 return ACPI_HANDLE(dev);
e8c331e9 57}
5090d4a6 58
2c204383
JL
59struct 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
5090d4a6
JL
83void acpi_pci_add_bus(struct pci_bus *bus);
84void acpi_pci_remove_bus(struct pci_bus *bus);
5c0b04e3
JL
85
86#ifdef CONFIG_ACPI_PCI_SLOT
87void acpi_pci_slot_init(void);
be1c9de9 88void acpi_pci_slot_enumerate(struct pci_bus *bus);
5c0b04e3
JL
89void acpi_pci_slot_remove(struct pci_bus *bus);
90#else
91static inline void acpi_pci_slot_init(void) { }
be1c9de9 92static inline void acpi_pci_slot_enumerate(struct pci_bus *bus) { }
5c0b04e3
JL
93static inline void acpi_pci_slot_remove(struct pci_bus *bus) { }
94#endif
95
3b63aaa7
JL
96#ifdef CONFIG_HOTPLUG_PCI_ACPI
97void acpiphp_init(void);
be1c9de9 98void acpiphp_enumerate_slots(struct pci_bus *bus);
3b63aaa7 99void acpiphp_remove_slots(struct pci_bus *bus);
1f7c164b 100void acpiphp_check_host_bridge(struct acpi_device *adev);
3b63aaa7
JL
101#else
102static inline void acpiphp_init(void) { }
be1c9de9 103static inline void acpiphp_enumerate_slots(struct pci_bus *bus) { }
3b63aaa7 104static inline void acpiphp_remove_slots(struct pci_bus *bus) { }
1f7c164b 105static inline void acpiphp_check_host_bridge(struct acpi_device *adev) { }
3b63aaa7
JL
106#endif
107
94116f81 108extern const guid_t pci_acpi_dsm_guid;
18e94a33 109#define DEVICE_LABEL_DSM 0x07
e33caa82
AL
110#define RESET_DELAY_DSM 0x08
111#define FUNCTION_DELAY_DSM 0x09
18e94a33 112
5090d4a6
JL
113#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 */
1da177e4 117
415e12b2
RW
118#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
1da177e4 124#endif /* _PCI_ACPI_H_ */