1# Copyright (c) 2020 Intel Corp.
2# SPDX-License-Identifier: Apache-2.0
3#
4# EDAC configuration options
5
6menuconfig EDAC
7	bool "Error Detection and Correction (EDAC) drivers"
8	help
9	  Enable Error Detection and Correction (EDAC) driver.
10
11if EDAC
12
13config EDAC_ERROR_INJECT
14	bool "EDAC Error Injection mechanism"
15	help
16	  Enable Error injection capability for test error checking
17	  and reporting. Should not be enabled in production system.
18
19config EDAC_SHELL
20	bool "EDAC Shell"
21	depends on SHELL
22	help
23	  Enable EDAC shell for debugging EDAC.
24
25config EDAC_IBECC
26	bool "In-Band ECC (IBECC)"
27	depends on X86 && PCIE
28	help
29	  This option selects In-Band ECC (IBECC) IP support.
30
31module = EDAC
32module-str = edac
33source "subsys/logging/Kconfig.template.log_config"
34
35endif #EDAC
36