]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/acpi/apei/Kconfig
acpi: apei: handle SEA notification type for ARMv8
[mirror_ubuntu-zesty-kernel.git] / drivers / acpi / apei / Kconfig
CommitLineData
44a69f61
TN
1config HAVE_ACPI_APEI
2 bool
3
4config HAVE_ACPI_APEI_NMI
5 bool
6
a643ce20
HY
7config ACPI_APEI
8 bool "ACPI Platform Error Interface (APEI)"
5d2a8342 9 select MISC_FILESYSTEMS
0bb77c46 10 select PSTORE
7ea6c6c1 11 select UEFI_CPER
44a69f61 12 depends on HAVE_ACPI_APEI
a643ce20
HY
13 help
14 APEI allows to report errors (for example from the chipset)
15 to the operating system. This improves NMI handling
16 especially. In addition it supports error serialization and
17 error injection.
e4021345 18
d334a491 19config ACPI_APEI_GHES
86cd4733 20 bool "APEI Generic Hardware Error Source"
51572753 21 depends on ACPI_APEI
d334a491 22 select ACPI_HED
03ba176a 23 select IRQ_WORK
67eb2e99 24 select GENERIC_ALLOCATOR
d334a491
HY
25 help
26 Generic Hardware Error Source provides a way to report
27 platform hardware errors (such as that from chipset). It
28 works in so called "Firmware First" mode, that is, hardware
29 errors are reported to firmware firstly, then reported to
30 Linux by firmware. This way, some non-standard hardware
31 error registers or non-standard hardware link can be checked
32 by firmware to produce more valuable hardware error
33 information for Linux.
34
c413d768
HY
35config ACPI_APEI_PCIEAER
36 bool "APEI PCIe AER logging/recovering support"
37 depends on ACPI_APEI && PCIEAER
38 help
39 PCIe AER errors may be reported via APEI firmware first mode.
40 Turn on this option to enable the corresponding support.
41
c46c9a74
TB
42config ACPI_APEI_SEA
43 bool "APEI Synchronous External Abort logging/recovering support"
44 depends on ARM64 && ACPI_APEI_GHES
45 default y
46 help
47 This option should be enabled if the system supports
48 firmware first handling of SEA (Synchronous External Abort).
49 SEA happens with certain faults of data abort or instruction
50 abort synchronous exceptions on ARMv8 systems. If a system
51 supports firmware first handling of SEA, the platform analyzes
52 and handles hardware error notifications from SEA, and it may then
53 form a HW error record for the OS to parse and handle. This
54 option allows the OS to look for such hardware error record, and
55 take appropriate action.
56
ba61ca4a
HY
57config ACPI_APEI_MEMORY_FAILURE
58 bool "APEI memory error recovering support"
59 depends on ACPI_APEI && MEMORY_FAILURE
60 help
61 Memory errors may be reported via APEI firmware first mode.
62 Turn on this option to enable the memory recovering support.
63
e4021345
HY
64config ACPI_APEI_EINJ
65 tristate "APEI Error INJection (EINJ)"
66 depends on ACPI_APEI && DEBUG_FS
67 help
68 EINJ provides a hardware error injection mechanism, it is
69 mainly used for debugging and testing the other parts of
70 APEI and some other RAS features.
2ff729d5
HY
71
72config ACPI_APEI_ERST_DEBUG
73 tristate "APEI Error Record Serialization Table (ERST) Debug Support"
74 depends on ACPI_APEI
75 help
76 ERST is a way provided by APEI to save and retrieve hardware
58f87ed0 77 error information to and from a persistent store. Enable this
2ff729d5
HY
78 if you want to debugging and testing the ERST kernel support
79 and firmware implementation.