Merge tag 'cxl-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl
[sfrench/cifs-2.6.git] / drivers / acpi / apei / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 config HAVE_ACPI_APEI
3         bool
4
5 config HAVE_ACPI_APEI_NMI
6         bool
7
8 config ACPI_APEI
9         bool "ACPI Platform Error Interface (APEI)"
10         select MISC_FILESYSTEMS
11         select PSTORE
12         select UEFI_CPER
13         depends on HAVE_ACPI_APEI
14         help
15           APEI allows to report errors (for example from the chipset)
16           to the operating system. This improves NMI handling
17           especially. In addition it supports error serialization and
18           error injection.
19
20 config ACPI_APEI_GHES
21         bool "APEI Generic Hardware Error Source"
22         depends on ACPI_APEI
23         select ACPI_HED
24         select IRQ_WORK
25         select GENERIC_ALLOCATOR
26         help
27           Generic Hardware Error Source provides a way to report
28           platform hardware errors (such as that from chipset). It
29           works in so called "Firmware First" mode, that is, hardware
30           errors are reported to firmware firstly, then reported to
31           Linux by firmware. This way, some non-standard hardware
32           error registers or non-standard hardware link can be checked
33           by firmware to produce more valuable hardware error
34           information for Linux.
35
36 config ACPI_APEI_PCIEAER
37         bool "APEI PCIe AER logging/recovering support"
38         depends on ACPI_APEI && PCIEAER
39         help
40           PCIe AER errors may be reported via APEI firmware first mode.
41           Turn on this option to enable the corresponding support.
42
43 config ACPI_APEI_SEA
44         bool
45         depends on ARM64 && ACPI_APEI_GHES
46         default y
47
48 config ACPI_APEI_MEMORY_FAILURE
49         bool "APEI memory error recovering support"
50         depends on ACPI_APEI && MEMORY_FAILURE
51         help
52           Memory errors may be reported via APEI firmware first mode.
53           Turn on this option to enable the memory recovering support.
54
55 config ACPI_APEI_EINJ
56         tristate "APEI Error INJection (EINJ)"
57         depends on ACPI_APEI && DEBUG_FS
58         help
59           EINJ provides a hardware error injection mechanism, it is
60           mainly used for debugging and testing the other parts of
61           APEI and some other RAS features.
62
63 config ACPI_APEI_EINJ_CXL
64         bool "CXL Error INJection Support"
65         default ACPI_APEI_EINJ
66         depends on ACPI_APEI_EINJ
67         depends on CXL_BUS && CXL_BUS <= ACPI_APEI_EINJ
68         help
69           Support for CXL protocol Error INJection through debugfs/cxl.
70           Availability and which errors are supported is dependent on
71           the host platform. Look to ACPI v6.5 section 18.6.4 and kernel
72           EINJ documentation for more information.
73
74           If unsure say 'n'
75
76 config ACPI_APEI_ERST_DEBUG
77         tristate "APEI Error Record Serialization Table (ERST) Debug Support"
78         depends on ACPI_APEI
79         help
80           ERST is a way provided by APEI to save and retrieve hardware
81           error information to and from a persistent store. Enable this
82           if you want to debugging and testing the ERST kernel support
83           and firmware implementation.