diff options
author | Qiuxu Zhuo <qiuxu.zhuo@intel.com> | 2020-11-05 08:49:14 +0100 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2020-11-19 21:51:17 +0100 |
commit | 10590a9d4f23e0a519730d79d39331df60ad2079 (patch) | |
tree | a830b625885644bf1b0ad9b031cd1b0a63a6f0ab /drivers/edac/Makefile | |
parent | EDAC: Add three new memory types (diff) | |
download | linux-10590a9d4f23e0a519730d79d39331df60ad2079.tar.xz linux-10590a9d4f23e0a519730d79d39331df60ad2079.zip |
EDAC/igen6: Add EDAC driver for Intel client SoCs using IBECC
This driver supports Intel client SoC with integrated memory controller
using In-Band ECC(IBECC). The memory correctable and uncorrectable errors
are reported via NMIs. The driver handles the NMIs and decodes the memory
error address to platform specific address. The first IBECC-supported SoC
is Elkhart Lake.
[Tony: s/#include <linux/nmi.h>/#include <asm/nmi.h>/ to fix randconfig build]
Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'drivers/edac/Makefile')
-rw-r--r-- | drivers/edac/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/edac/Makefile b/drivers/edac/Makefile index 3a849168780d..3cd1aeb0a916 100644 --- a/drivers/edac/Makefile +++ b/drivers/edac/Makefile @@ -32,6 +32,7 @@ obj-$(CONFIG_EDAC_I7300) += i7300_edac.o obj-$(CONFIG_EDAC_I7CORE) += i7core_edac.o obj-$(CONFIG_EDAC_SBRIDGE) += sb_edac.o obj-$(CONFIG_EDAC_PND2) += pnd2_edac.o +obj-$(CONFIG_EDAC_IGEN6) += igen6_edac.o obj-$(CONFIG_EDAC_E7XXX) += e7xxx_edac.o obj-$(CONFIG_EDAC_E752X) += e752x_edac.o obj-$(CONFIG_EDAC_I82443BXGX) += i82443bxgx_edac.o |