2 * Access ACPI _OSC method
4 * Copyright (C) 2006 Intel Corp.
5 * Tom Long Nguyen (tom.l.nguyen@intel.com)
6 * Zhang Yanmin (yanmin.zhang@intel.com)
10 #include <linux/module.h>
11 #include <linux/pci.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
15 #include <linux/suspend.h>
16 #include <linux/acpi.h>
17 #include <linux/pci-acpi.h>
18 #include <linux/delay.h>
19 #include <acpi/apei.h>
23 * aer_osc_setup - run ACPI _OSC method
24 * @pciedev: pcie_device which AER is being enabled on
26 * @return: Zero on success. Nonzero otherwise.
28 * Invoked when PCIe bus loads AER service driver. To avoid conflict with
29 * BIOS AER support requires BIOS to yield AER control to OS native driver.
31 int aer_osc_setup(struct pcie_device
*pciedev
)
33 acpi_status status
= AE_NOT_FOUND
;
34 struct pci_dev
*pdev
= pciedev
->port
;
35 acpi_handle handle
= NULL
;
37 if (acpi_pci_disabled
)
40 handle
= acpi_find_root_bridge_handle(pdev
);
42 status
= acpi_pci_osc_control_set(handle
,
43 OSC_PCI_EXPRESS_AER_CONTROL
|
44 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL
);
47 if (ACPI_FAILURE(status
)) {
48 dev_printk(KERN_DEBUG
, &pciedev
->device
, "AER service couldn't "
50 (status
== AE_SUPPORT
|| status
== AE_NOT_FOUND
) ?
51 "no _OSC support" : "_OSC failed");
58 #ifdef CONFIG_ACPI_APEI
59 static inline int hest_match_pci(struct acpi_hest_aer_common
*p
,
62 return (0 == pci_domain_nr(pci
->bus
) &&
63 p
->bus
== pci
->bus
->number
&&
64 p
->device
== PCI_SLOT(pci
->devfn
) &&
65 p
->function
== PCI_FUNC(pci
->devfn
));
68 struct aer_hest_parse_info
{
69 struct pci_dev
*pci_dev
;
73 static int aer_hest_parse(struct acpi_hest_header
*hest_hdr
, void *data
)
75 struct aer_hest_parse_info
*info
= data
;
76 struct acpi_hest_aer_common
*p
;
81 switch (hest_hdr
->type
) {
82 case ACPI_HEST_TYPE_AER_ROOT_PORT
:
83 pcie_type
= PCI_EXP_TYPE_ROOT_PORT
;
85 case ACPI_HEST_TYPE_AER_ENDPOINT
:
86 pcie_type
= PCI_EXP_TYPE_ENDPOINT
;
88 case ACPI_HEST_TYPE_AER_BRIDGE
:
89 if ((info
->pci_dev
->class >> 16) == PCI_BASE_CLASS_BRIDGE
)
96 p
= (struct acpi_hest_aer_common
*)(hest_hdr
+ 1);
97 if (p
->flags
& ACPI_HEST_GLOBAL
) {
98 if ((info
->pci_dev
->is_pcie
&&
99 info
->pci_dev
->pcie_type
== pcie_type
) || bridge
)
100 ff
= !!(p
->flags
& ACPI_HEST_FIRMWARE_FIRST
);
102 if (hest_match_pci(p
, info
->pci_dev
))
103 ff
= !!(p
->flags
& ACPI_HEST_FIRMWARE_FIRST
);
104 info
->firmware_first
= ff
;
109 static void aer_set_firmware_first(struct pci_dev
*pci_dev
)
112 struct aer_hest_parse_info info
= {
117 rc
= apei_hest_parse(aer_hest_parse
, &info
);
120 pci_dev
->__aer_firmware_first
= 0;
122 pci_dev
->__aer_firmware_first
= info
.firmware_first
;
123 pci_dev
->__aer_firmware_first_valid
= 1;
126 int pcie_aer_get_firmware_first(struct pci_dev
*dev
)
128 if (!dev
->__aer_firmware_first_valid
)
129 aer_set_firmware_first(dev
);
130 return dev
->__aer_firmware_first
;