Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1 | # |
| 2 | # EDAC Kconfig |
Doug Thompson | 4577ca5 | 2009-04-02 16:58:43 -0700 | [diff] [blame] | 3 | # Copyright (c) 2008 Doug Thompson www.softwarebitmaker.com |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 4 | # Licensed and distributed under the GPL |
Borislav Petkov | b01aec9 | 2015-05-21 19:59:31 +0200 | [diff] [blame] | 5 | |
| 6 | config EDAC_ATOMIC_SCRUB |
| 7 | bool |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 8 | |
Borislav Petkov | 54451663 | 2012-12-18 22:02:56 +0100 | [diff] [blame] | 9 | config EDAC_SUPPORT |
| 10 | bool |
| 11 | |
Jan Engelhardt | 751cb5e | 2007-07-15 23:39:27 -0700 | [diff] [blame] | 12 | menuconfig EDAC |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 13 | tristate "EDAC (Error Detection And Correction) reporting" |
| 14 | depends on HAS_IOMEM && EDAC_SUPPORT && RAS |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 15 | help |
Borislav Petkov | a06b85f | 2017-02-04 16:32:27 +0100 | [diff] [blame] | 16 | EDAC is a subsystem along with hardware-specific drivers designed to |
| 17 | report hardware errors. These are low-level errors that are reported |
| 18 | in the CPU or supporting chipset or other subsystems: |
Douglas Thompson | 8cb2a39 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 19 | memory errors, cache errors, PCI errors, thermal throttling, etc.. |
| 20 | If unsure, select 'Y'. |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 21 | |
Borislav Petkov | a06b85f | 2017-02-04 16:32:27 +0100 | [diff] [blame] | 22 | The mailing list for the EDAC project is linux-edac@vger.kernel.org. |
Tim Small | 57c432b | 2006-03-09 17:33:50 -0800 | [diff] [blame] | 23 | |
Jan Engelhardt | 751cb5e | 2007-07-15 23:39:27 -0700 | [diff] [blame] | 24 | if EDAC |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 25 | |
Mauro Carvalho Chehab | 1997471 | 2012-03-21 17:06:53 -0300 | [diff] [blame] | 26 | config EDAC_LEGACY_SYSFS |
| 27 | bool "EDAC legacy sysfs" |
| 28 | default y |
| 29 | help |
| 30 | Enable the compatibility sysfs nodes. |
| 31 | Use 'Y' if your edac utilities aren't ported to work with the newer |
| 32 | structures. |
| 33 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 34 | config EDAC_DEBUG |
| 35 | bool "Debugging" |
Borislav Petkov | 1c5bf78 | 2017-03-18 18:25:05 +0100 | [diff] [blame] | 36 | select DEBUG_FS |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 37 | help |
Borislav Petkov | 3792987 | 2012-09-10 16:50:54 +0200 | [diff] [blame] | 38 | This turns on debugging information for the entire EDAC subsystem. |
| 39 | You do so by inserting edac_module with "edac_debug_level=x." Valid |
| 40 | levels are 0-4 (from low to high) and by default it is set to 2. |
| 41 | Usually you should select 'N' here. |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 42 | |
Borislav Petkov | 9cdeb40 | 2010-09-02 18:33:24 +0200 | [diff] [blame] | 43 | config EDAC_DECODE_MCE |
Borislav Petkov | 0d18b2e | 2009-10-02 15:31:48 +0200 | [diff] [blame] | 44 | tristate "Decode MCEs in human-readable form (only on AMD for now)" |
Borislav Petkov | 168eb34 | 2011-08-10 09:43:30 -0300 | [diff] [blame] | 45 | depends on CPU_SUP_AMD && X86_MCE_AMD |
Borislav Petkov | 0d18b2e | 2009-10-02 15:31:48 +0200 | [diff] [blame] | 46 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 47 | help |
Borislav Petkov | 0d18b2e | 2009-10-02 15:31:48 +0200 | [diff] [blame] | 48 | Enable this option if you want to decode Machine Check Exceptions |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 49 | occurring on your machine in human-readable form. |
Borislav Petkov | 0d18b2e | 2009-10-02 15:31:48 +0200 | [diff] [blame] | 50 | |
| 51 | You should definitely say Y here in case you want to decode MCEs |
| 52 | which occur really early upon boot, before the module infrastructure |
| 53 | has been initialized. |
| 54 | |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 55 | config EDAC_GHES |
| 56 | bool "Output ACPI APEI/GHES BIOS detected errors via EDAC" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 57 | depends on ACPI_APEI_GHES && (EDAC=y) |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 58 | help |
| 59 | Not all machines support hardware-driven error report. Some of those |
| 60 | provide a BIOS-driven error report mechanism via ACPI, using the |
| 61 | APEI/GHES driver. By enabling this option, the error reports provided |
| 62 | by GHES are sent to userspace via the EDAC API. |
| 63 | |
| 64 | When this option is enabled, it will disable the hardware-driven |
| 65 | mechanisms, if a GHES BIOS is detected, entering into the |
| 66 | "Firmware First" mode. |
| 67 | |
| 68 | It should be noticed that keeping both GHES and a hardware-driven |
| 69 | error mechanism won't work well, as BIOS will race with OS, while |
| 70 | reading the error registers. So, if you want to not use "Firmware |
| 71 | first" GHES error mechanism, you should disable GHES either at |
| 72 | compilation time or by passing "ghes.disable=1" Kernel parameter |
| 73 | at boot time. |
| 74 | |
| 75 | In doubt, say 'Y'. |
| 76 | |
Doug Thompson | 7d6034d | 2009-04-27 20:01:01 +0200 | [diff] [blame] | 77 | config EDAC_AMD64 |
Tomasz Pala | f5b10c4 | 2014-11-02 11:22:12 +0100 | [diff] [blame] | 78 | tristate "AMD64 (Opteron, Athlon64)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 79 | depends on AMD_NB && EDAC_DECODE_MCE |
Doug Thompson | 7d6034d | 2009-04-27 20:01:01 +0200 | [diff] [blame] | 80 | help |
Borislav Petkov | 027dbd6 | 2010-10-13 22:12:15 +0200 | [diff] [blame] | 81 | Support for error detection and correction of DRAM ECC errors on |
Tomasz Pala | f5b10c4 | 2014-11-02 11:22:12 +0100 | [diff] [blame] | 82 | the AMD64 families (>= K8) of memory controllers. |
Doug Thompson | 7d6034d | 2009-04-27 20:01:01 +0200 | [diff] [blame] | 83 | |
Borislav Petkov | 6181009 | 2020-12-15 09:18:44 +0100 | [diff] [blame] | 84 | When EDAC_DEBUG is enabled, hardware error injection facilities |
| 85 | through sysfs are available: |
| 86 | |
Borislav Petkov | 1865bc7 | 2020-12-22 18:55:06 +0100 | [diff] [blame] | 87 | AMD CPUs up to and excluding family 0x17 provide for Memory |
| 88 | Error Injection into the ECC detection circuits. The amd64_edac |
| 89 | module allows the operator/user to inject Uncorrectable and |
| 90 | Correctable errors into DRAM. |
Doug Thompson | 7d6034d | 2009-04-27 20:01:01 +0200 | [diff] [blame] | 91 | |
| 92 | When enabled, in each of the respective memory controller directories |
| 93 | (/sys/devices/system/edac/mc/mcX), there are 3 input files: |
| 94 | |
| 95 | - inject_section (0..3, 16-byte section of 64-byte cacheline), |
| 96 | - inject_word (0..8, 16-bit word of 16-byte section), |
| 97 | - inject_ecc_vector (hex ecc vector: select bits of inject word) |
| 98 | |
| 99 | In addition, there are two control files, inject_read and inject_write, |
| 100 | which trigger the DRAM ECC Read and Write respectively. |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 101 | |
Talel Shenhar | e23a7cd | 2020-08-16 21:55:51 +0300 | [diff] [blame] | 102 | config EDAC_AL_MC |
| 103 | tristate "Amazon's Annapurna Lab Memory Controller" |
| 104 | depends on (ARCH_ALPINE || COMPILE_TEST) |
| 105 | help |
| 106 | Support for error detection and correction for Amazon's Annapurna |
| 107 | Labs Alpine chips which allow 1 bit correction and 2 bits detection. |
| 108 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 109 | config EDAC_AMD76X |
| 110 | tristate "AMD 76x (760, 762, 768)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 111 | depends on PCI && X86_32 |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 112 | help |
| 113 | Support for error detection and correction on the AMD 76x |
| 114 | series of chipsets used with the Athlon processor. |
| 115 | |
| 116 | config EDAC_E7XXX |
| 117 | tristate "Intel e7xxx (e7205, e7500, e7501, e7505)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 118 | depends on PCI && X86_32 |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 119 | help |
| 120 | Support for error detection and correction on the Intel |
| 121 | E7205, E7500, E7501 and E7505 server chipsets. |
| 122 | |
| 123 | config EDAC_E752X |
Andrei Konovalov | 5135b79 | 2008-04-29 01:03:13 -0700 | [diff] [blame] | 124 | tristate "Intel e752x (e7520, e7525, e7320) and 3100" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 125 | depends on PCI && X86 |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 126 | help |
| 127 | Support for error detection and correction on the Intel |
| 128 | E7520, E7525, E7320 server chipsets. |
| 129 | |
Tim Small | 5a2c675 | 2007-07-19 01:49:42 -0700 | [diff] [blame] | 130 | config EDAC_I82443BXGX |
| 131 | tristate "Intel 82443BX/GX (440BX/GX)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 132 | depends on PCI && X86_32 |
Andrew Morton | 28f96eea | 2007-07-19 01:49:45 -0700 | [diff] [blame] | 133 | depends on BROKEN |
Tim Small | 5a2c675 | 2007-07-19 01:49:42 -0700 | [diff] [blame] | 134 | help |
| 135 | Support for error detection and correction on the Intel |
| 136 | 82443BX/GX memory controllers (440BX/GX chipsets). |
| 137 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 138 | config EDAC_I82875P |
| 139 | tristate "Intel 82875p (D82875P, E7210)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 140 | depends on PCI && X86_32 |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 141 | help |
| 142 | Support for error detection and correction on the Intel |
| 143 | DP82785P and E7210 server chipsets. |
| 144 | |
Ranganathan Desikan | 420390f | 2007-07-19 01:50:31 -0700 | [diff] [blame] | 145 | config EDAC_I82975X |
| 146 | tristate "Intel 82975x (D82975x)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 147 | depends on PCI && X86 |
Ranganathan Desikan | 420390f | 2007-07-19 01:50:31 -0700 | [diff] [blame] | 148 | help |
| 149 | Support for error detection and correction on the Intel |
| 150 | DP82975x server chipsets. |
| 151 | |
Jason Uhlenkott | 535c6a5 | 2007-07-19 01:49:48 -0700 | [diff] [blame] | 152 | config EDAC_I3000 |
| 153 | tristate "Intel 3000/3010" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 154 | depends on PCI && X86 |
Jason Uhlenkott | 535c6a5 | 2007-07-19 01:49:48 -0700 | [diff] [blame] | 155 | help |
| 156 | Support for error detection and correction on the Intel |
| 157 | 3000 and 3010 server chipsets. |
| 158 | |
Jason Uhlenkott | dd8ef1d | 2009-09-23 15:57:27 -0700 | [diff] [blame] | 159 | config EDAC_I3200 |
| 160 | tristate "Intel 3200" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 161 | depends on PCI && X86 |
Jason Uhlenkott | dd8ef1d | 2009-09-23 15:57:27 -0700 | [diff] [blame] | 162 | help |
| 163 | Support for error detection and correction on the Intel |
| 164 | 3200 and 3210 server chipsets. |
| 165 | |
Jason Baron | 7ee40b8 | 2014-07-04 13:48:32 +0200 | [diff] [blame] | 166 | config EDAC_IE31200 |
| 167 | tristate "Intel e312xx" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 168 | depends on PCI && X86 |
Jason Baron | 7ee40b8 | 2014-07-04 13:48:32 +0200 | [diff] [blame] | 169 | help |
| 170 | Support for error detection and correction on the Intel |
| 171 | E3-1200 based DRAM controllers. |
| 172 | |
Hitoshi Mitake | df8bc08c | 2008-10-29 14:00:50 -0700 | [diff] [blame] | 173 | config EDAC_X38 |
| 174 | tristate "Intel X38" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 175 | depends on PCI && X86 |
Hitoshi Mitake | df8bc08c | 2008-10-29 14:00:50 -0700 | [diff] [blame] | 176 | help |
| 177 | Support for error detection and correction on the Intel |
| 178 | X38 server chipsets. |
| 179 | |
Mauro Carvalho Chehab | 920c8df | 2009-01-06 14:43:00 -0800 | [diff] [blame] | 180 | config EDAC_I5400 |
| 181 | tristate "Intel 5400 (Seaburg) chipsets" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 182 | depends on PCI && X86 |
Mauro Carvalho Chehab | 920c8df | 2009-01-06 14:43:00 -0800 | [diff] [blame] | 183 | help |
| 184 | Support for error detection and correction the Intel |
| 185 | i5400 MCH chipset (Seaburg). |
| 186 | |
Mauro Carvalho Chehab | a0c36a1 | 2009-06-22 22:41:15 -0300 | [diff] [blame] | 187 | config EDAC_I7CORE |
| 188 | tristate "Intel i7 Core (Nehalem) processors" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 189 | depends on PCI && X86 && X86_MCE_INTEL |
Mauro Carvalho Chehab | a0c36a1 | 2009-06-22 22:41:15 -0300 | [diff] [blame] | 190 | help |
| 191 | Support for error detection and correction the Intel |
Mauro Carvalho Chehab | 696e409 | 2009-07-23 06:57:45 -0300 | [diff] [blame] | 192 | i7 Core (Nehalem) Integrated Memory Controller that exists on |
| 193 | newer processors like i7 Core, i7 Core Extreme, Xeon 35xx |
| 194 | and Xeon 55xx processors. |
Mauro Carvalho Chehab | a0c36a1 | 2009-06-22 22:41:15 -0300 | [diff] [blame] | 195 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 196 | config EDAC_I82860 |
| 197 | tristate "Intel 82860" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 198 | depends on PCI && X86_32 |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 199 | help |
| 200 | Support for error detection and correction on the Intel |
| 201 | 82860 chipset. |
| 202 | |
| 203 | config EDAC_R82600 |
| 204 | tristate "Radisys 82600 embedded chipset" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 205 | depends on PCI && X86_32 |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 206 | help |
| 207 | Support for error detection and correction on the Radisys |
| 208 | 82600 embedded chipset. |
| 209 | |
Eric Wollesen | eb60705 | 2007-07-19 01:49:39 -0700 | [diff] [blame] | 210 | config EDAC_I5000 |
| 211 | tristate "Intel Greencreek/Blackford chipset" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 212 | depends on X86 && PCI |
Eric Wollesen | eb60705 | 2007-07-19 01:49:39 -0700 | [diff] [blame] | 213 | help |
| 214 | Support for error detection and correction the Intel |
| 215 | Greekcreek/Blackford chipsets. |
| 216 | |
Arthur Jones | 8f421c59 | 2008-07-25 01:49:04 -0700 | [diff] [blame] | 217 | config EDAC_I5100 |
| 218 | tristate "Intel San Clemente MCH" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 219 | depends on X86 && PCI |
Arthur Jones | 8f421c59 | 2008-07-25 01:49:04 -0700 | [diff] [blame] | 220 | help |
| 221 | Support for error detection and correction the Intel |
| 222 | San Clemente MCH. |
| 223 | |
Mauro Carvalho Chehab | fcaf780 | 2010-08-24 23:22:57 -0300 | [diff] [blame] | 224 | config EDAC_I7300 |
| 225 | tristate "Intel Clarksboro MCH" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 226 | depends on X86 && PCI |
Mauro Carvalho Chehab | fcaf780 | 2010-08-24 23:22:57 -0300 | [diff] [blame] | 227 | help |
| 228 | Support for error detection and correction the Intel |
| 229 | Clarksboro MCH (Intel 7300 chipset). |
| 230 | |
Mauro Carvalho Chehab | 3d78c9a | 2011-10-20 19:33:46 -0200 | [diff] [blame] | 231 | config EDAC_SBRIDGE |
Aristeu Rozanski | 50d1bb9 | 2014-06-20 10:27:54 -0300 | [diff] [blame] | 232 | tristate "Intel Sandy-Bridge/Ivy-Bridge/Haswell Integrated MC" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 233 | depends on PCI && X86_64 && X86_MCE_INTEL && PCI_MMCONFIG |
Mauro Carvalho Chehab | 3d78c9a | 2011-10-20 19:33:46 -0200 | [diff] [blame] | 234 | help |
| 235 | Support for error detection and correction the Intel |
Aristeu Rozanski | 50d1bb9 | 2014-06-20 10:27:54 -0300 | [diff] [blame] | 236 | Sandy Bridge, Ivy Bridge and Haswell Integrated Memory Controllers. |
Mauro Carvalho Chehab | 3d78c9a | 2011-10-20 19:33:46 -0200 | [diff] [blame] | 237 | |
Tony Luck | 4ec656b | 2016-08-20 16:27:58 -0700 | [diff] [blame] | 238 | config EDAC_SKX |
| 239 | tristate "Intel Skylake server Integrated MC" |
Luck, Tony | 24c9d42 | 2018-11-06 10:39:15 -0800 | [diff] [blame] | 240 | depends on PCI && X86_64 && X86_MCE_INTEL && PCI_MMCONFIG && ACPI |
Randy Dunlap | de245ae | 2018-05-13 10:35:44 -0700 | [diff] [blame] | 241 | depends on ACPI_NFIT || !ACPI_NFIT # if ACPI_NFIT=m, EDAC_SKX can't be y |
Tony Luck | 58ca9ac | 2018-03-12 11:24:30 -0700 | [diff] [blame] | 242 | select DMI |
Luck, Tony | 24c9d42 | 2018-11-06 10:39:15 -0800 | [diff] [blame] | 243 | select ACPI_ADXL |
Tony Luck | 4ec656b | 2016-08-20 16:27:58 -0700 | [diff] [blame] | 244 | help |
| 245 | Support for error detection and correction the Intel |
Tony Luck | 58ca9ac | 2018-03-12 11:24:30 -0700 | [diff] [blame] | 246 | Skylake server Integrated Memory Controllers. If your |
| 247 | system has non-volatile DIMMs you should also manually |
| 248 | select CONFIG_ACPI_NFIT. |
Tony Luck | 4ec656b | 2016-08-20 16:27:58 -0700 | [diff] [blame] | 249 | |
Qiuxu Zhuo | d4dc89d | 2019-01-30 11:15:19 -0800 | [diff] [blame] | 250 | config EDAC_I10NM |
| 251 | tristate "Intel 10nm server Integrated MC" |
Tony Luck | d6a9f73 | 2019-02-05 10:02:00 -0800 | [diff] [blame] | 252 | depends on PCI && X86_64 && X86_MCE_INTEL && PCI_MMCONFIG && ACPI |
Qiuxu Zhuo | d4dc89d | 2019-01-30 11:15:19 -0800 | [diff] [blame] | 253 | depends on ACPI_NFIT || !ACPI_NFIT # if ACPI_NFIT=m, EDAC_I10NM can't be y |
| 254 | select DMI |
Tony Luck | d6a9f73 | 2019-02-05 10:02:00 -0800 | [diff] [blame] | 255 | select ACPI_ADXL |
Qiuxu Zhuo | d4dc89d | 2019-01-30 11:15:19 -0800 | [diff] [blame] | 256 | help |
| 257 | Support for error detection and correction the Intel |
| 258 | 10nm server Integrated Memory Controllers. If your |
| 259 | system has non-volatile DIMMs you should also manually |
| 260 | select CONFIG_ACPI_NFIT. |
| 261 | |
Tony Luck | 5c71ad1 | 2017-03-09 01:45:39 +0800 | [diff] [blame] | 262 | config EDAC_PND2 |
| 263 | tristate "Intel Pondicherry2" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 264 | depends on PCI && X86_64 && X86_MCE_INTEL |
Tony Luck | 5c71ad1 | 2017-03-09 01:45:39 +0800 | [diff] [blame] | 265 | help |
| 266 | Support for error detection and correction on the Intel |
| 267 | Pondicherry2 Integrated Memory Controller. This SoC IP is |
| 268 | first used on the Apollo Lake platform and Denverton |
| 269 | micro-server but may appear on others in the future. |
| 270 | |
Qiuxu Zhuo | 10590a9 | 2020-11-05 15:49:14 +0800 | [diff] [blame] | 271 | config EDAC_IGEN6 |
| 272 | tristate "Intel client SoC Integrated MC" |
Randy Dunlap | 0a9ece9 | 2021-06-19 09:02:03 -0700 | [diff] [blame] | 273 | depends on PCI && PCI_MMCONFIG && ARCH_HAVE_NMI_SAFE_CMPXCHG |
Randy Dunlap | a1c9ca5 | 2021-07-15 11:55:31 -0700 | [diff] [blame] | 274 | depends on X86_64 && X86_MCE_INTEL |
Qiuxu Zhuo | 10590a9 | 2020-11-05 15:49:14 +0800 | [diff] [blame] | 275 | help |
| 276 | Support for error detection and correction on the Intel |
| 277 | client SoC Integrated Memory Controller using In-Band ECC IP. |
| 278 | This In-Band ECC is first used on the Elkhart Lake SoC but |
| 279 | may appear on others in the future. |
| 280 | |
Dave Jiang | a9a753d | 2008-02-07 00:14:55 -0800 | [diff] [blame] | 281 | config EDAC_MPC85XX |
Michael Ellerman | 2b8358a | 2019-05-03 00:19:41 +1000 | [diff] [blame] | 282 | bool "Freescale MPC83xx / MPC85xx" |
| 283 | depends on FSL_SOC && EDAC=y |
Dave Jiang | a9a753d | 2008-02-07 00:14:55 -0800 | [diff] [blame] | 284 | help |
| 285 | Support for error detection and correction on the Freescale |
York Sun | 7421026 | 2015-05-12 18:03:41 +0800 | [diff] [blame] | 286 | MPC8349, MPC8560, MPC8540, MPC8548, T4240 |
Dave Jiang | a9a753d | 2008-02-07 00:14:55 -0800 | [diff] [blame] | 287 | |
York Sun | eeb3d68 | 2016-08-23 15:14:03 -0700 | [diff] [blame] | 288 | config EDAC_LAYERSCAPE |
| 289 | tristate "Freescale Layerscape DDR" |
Rasmus Villemoes | 28dd6726e | 2018-02-20 16:09:12 +0100 | [diff] [blame] | 290 | depends on ARCH_LAYERSCAPE || SOC_LS1021A |
York Sun | eeb3d68 | 2016-08-23 15:14:03 -0700 | [diff] [blame] | 291 | help |
| 292 | Support for error detection and correction on Freescale memory |
| 293 | controllers on Layerscape SoCs. |
| 294 | |
Egor Martovetsky | 7d8536f | 2007-07-19 01:50:24 -0700 | [diff] [blame] | 295 | config EDAC_PASEMI |
| 296 | tristate "PA Semi PWRficient" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 297 | depends on PPC_PASEMI && PCI |
Egor Martovetsky | 7d8536f | 2007-07-19 01:50:24 -0700 | [diff] [blame] | 298 | help |
| 299 | Support for error detection and correction on PA Semi |
| 300 | PWRficient. |
| 301 | |
Benjamin Herrenschmidt | 48764e4 | 2008-02-07 00:14:53 -0800 | [diff] [blame] | 302 | config EDAC_CELL |
| 303 | tristate "Cell Broadband Engine memory controller" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 304 | depends on PPC_CELL_COMMON |
Benjamin Herrenschmidt | 48764e4 | 2008-02-07 00:14:53 -0800 | [diff] [blame] | 305 | help |
| 306 | Support for error detection and correction on the |
| 307 | Cell Broadband Engine internal memory controller |
| 308 | on platform without a hypervisor |
Egor Martovetsky | 7d8536f | 2007-07-19 01:50:24 -0700 | [diff] [blame] | 309 | |
Grant Erickson | dba7a77 | 2009-04-02 16:58:45 -0700 | [diff] [blame] | 310 | config EDAC_PPC4XX |
| 311 | tristate "PPC4xx IBM DDR2 Memory Controller" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 312 | depends on 4xx |
Grant Erickson | dba7a77 | 2009-04-02 16:58:45 -0700 | [diff] [blame] | 313 | help |
| 314 | This enables support for EDAC on the ECC memory used |
| 315 | with the IBM DDR2 memory controller found in various |
| 316 | PowerPC 4xx embedded processors such as the 405EX[r], |
| 317 | 440SP, 440SPe, 460EX, 460GT and 460SX. |
| 318 | |
Harry Ciao | e876558 | 2009-04-02 16:58:51 -0700 | [diff] [blame] | 319 | config EDAC_AMD8131 |
| 320 | tristate "AMD8131 HyperTransport PCI-X Tunnel" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 321 | depends on PCI && PPC_MAPLE |
Harry Ciao | e876558 | 2009-04-02 16:58:51 -0700 | [diff] [blame] | 322 | help |
| 323 | Support for error detection and correction on the |
| 324 | AMD8131 HyperTransport PCI-X Tunnel chip. |
Harry Ciao | 715fe7a | 2009-05-28 14:34:43 -0700 | [diff] [blame] | 325 | Note, add more Kconfig dependency if it's adopted |
| 326 | on some machine other than Maple. |
Harry Ciao | e876558 | 2009-04-02 16:58:51 -0700 | [diff] [blame] | 327 | |
Harry Ciao | 58b4ce6 | 2009-04-02 16:58:51 -0700 | [diff] [blame] | 328 | config EDAC_AMD8111 |
| 329 | tristate "AMD8111 HyperTransport I/O Hub" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 330 | depends on PCI && PPC_MAPLE |
Harry Ciao | 58b4ce6 | 2009-04-02 16:58:51 -0700 | [diff] [blame] | 331 | help |
| 332 | Support for error detection and correction on the |
| 333 | AMD8111 HyperTransport I/O Hub chip. |
Harry Ciao | 715fe7a | 2009-05-28 14:34:43 -0700 | [diff] [blame] | 334 | Note, add more Kconfig dependency if it's adopted |
| 335 | on some machine other than Maple. |
Harry Ciao | 58b4ce6 | 2009-04-02 16:58:51 -0700 | [diff] [blame] | 336 | |
Harry Ciao | 2a9036a | 2009-06-17 16:27:58 -0700 | [diff] [blame] | 337 | config EDAC_CPC925 |
| 338 | tristate "IBM CPC925 Memory Controller (PPC970FX)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 339 | depends on PPC64 |
Harry Ciao | 2a9036a | 2009-06-17 16:27:58 -0700 | [diff] [blame] | 340 | help |
| 341 | Support for error detection and correction on the |
| 342 | IBM CPC925 Bridge and Memory Controller, which is |
| 343 | a companion chip to the PowerPC 970 family of |
| 344 | processors. |
| 345 | |
Rob Herring | a1b01ed | 2012-06-13 12:01:55 -0500 | [diff] [blame] | 346 | config EDAC_HIGHBANK_MC |
| 347 | tristate "Highbank Memory Controller" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 348 | depends on ARCH_HIGHBANK |
Rob Herring | a1b01ed | 2012-06-13 12:01:55 -0500 | [diff] [blame] | 349 | help |
| 350 | Support for error detection and correction on the |
| 351 | Calxeda Highbank memory controller. |
| 352 | |
Rob Herring | 69154d0 | 2012-06-11 21:32:14 -0500 | [diff] [blame] | 353 | config EDAC_HIGHBANK_L2 |
| 354 | tristate "Highbank L2 Cache" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 355 | depends on ARCH_HIGHBANK |
Rob Herring | 69154d0 | 2012-06-11 21:32:14 -0500 | [diff] [blame] | 356 | help |
| 357 | Support for error detection and correction on the |
| 358 | Calxeda Highbank memory controller. |
| 359 | |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 360 | config EDAC_OCTEON_PC |
| 361 | tristate "Cavium Octeon Primary Caches" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 362 | depends on CPU_CAVIUM_OCTEON |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 363 | help |
| 364 | Support for error detection and correction on the primary caches of |
| 365 | the cnMIPS cores of Cavium Octeon family SOCs. |
| 366 | |
| 367 | config EDAC_OCTEON_L2C |
| 368 | tristate "Cavium Octeon Secondary Caches (L2C)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 369 | depends on CAVIUM_OCTEON_SOC |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 370 | help |
| 371 | Support for error detection and correction on the |
| 372 | Cavium Octeon family of SOCs. |
| 373 | |
| 374 | config EDAC_OCTEON_LMC |
| 375 | tristate "Cavium Octeon DRAM Memory Controller (LMC)" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 376 | depends on CAVIUM_OCTEON_SOC |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 377 | help |
| 378 | Support for error detection and correction on the |
| 379 | Cavium Octeon family of SOCs. |
| 380 | |
| 381 | config EDAC_OCTEON_PCI |
| 382 | tristate "Cavium Octeon PCI Controller" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 383 | depends on PCI && CAVIUM_OCTEON_SOC |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 384 | help |
| 385 | Support for error detection and correction on the |
| 386 | Cavium Octeon family of SOCs. |
| 387 | |
Sergey Temerkhanov | 4100339 | 2017-03-24 22:28:37 +0000 | [diff] [blame] | 388 | config EDAC_THUNDERX |
| 389 | tristate "Cavium ThunderX EDAC" |
Sergey Temerkhanov | 4100339 | 2017-03-24 22:28:37 +0000 | [diff] [blame] | 390 | depends on ARM64 |
| 391 | depends on PCI |
| 392 | help |
| 393 | Support for error detection and correction on the |
| 394 | Cavium ThunderX memory controllers (LMC), Cache |
| 395 | Coherent Processor Interconnect (CCPI) and L2 cache |
| 396 | blocks (TAD, CBC, MCI). |
| 397 | |
Thor Thayer | c3eea19 | 2016-02-10 13:26:21 -0600 | [diff] [blame] | 398 | config EDAC_ALTERA |
| 399 | bool "Altera SOCFPGA ECC" |
Krzysztof Kozlowski | 098da96 | 2021-03-11 16:25:37 +0100 | [diff] [blame] | 400 | depends on EDAC=y && ARCH_INTEL_SOCFPGA |
Thor Thayer | 71bcada | 2014-09-03 10:27:54 -0500 | [diff] [blame] | 401 | help |
| 402 | Support for error detection and correction on the |
Thor Thayer | 580b5cf | 2019-02-25 12:56:45 -0600 | [diff] [blame] | 403 | Altera SOCs. This is the global enable for the |
| 404 | various Altera peripherals. |
| 405 | |
| 406 | config EDAC_ALTERA_SDRAM |
| 407 | bool "Altera SDRAM ECC" |
| 408 | depends on EDAC_ALTERA=y |
| 409 | help |
| 410 | Support for error detection and correction on the |
| 411 | Altera SDRAM Memory for Altera SoCs. Note that the |
| 412 | preloader must initialize the SDRAM before loading |
| 413 | the kernel. |
Thor Thayer | c3eea19 | 2016-02-10 13:26:21 -0600 | [diff] [blame] | 414 | |
| 415 | config EDAC_ALTERA_L2C |
| 416 | bool "Altera L2 Cache ECC" |
Thor Thayer | 3a8f21f | 2016-03-21 11:01:38 -0500 | [diff] [blame] | 417 | depends on EDAC_ALTERA=y && CACHE_L2X0 |
Thor Thayer | c3eea19 | 2016-02-10 13:26:21 -0600 | [diff] [blame] | 418 | help |
| 419 | Support for error detection and correction on the |
| 420 | Altera L2 cache Memory for Altera SoCs. This option |
Thor Thayer | 3a8f21f | 2016-03-21 11:01:38 -0500 | [diff] [blame] | 421 | requires L2 cache. |
Thor Thayer | c3eea19 | 2016-02-10 13:26:21 -0600 | [diff] [blame] | 422 | |
| 423 | config EDAC_ALTERA_OCRAM |
| 424 | bool "Altera On-Chip RAM ECC" |
| 425 | depends on EDAC_ALTERA=y && SRAM && GENERIC_ALLOCATOR |
| 426 | help |
| 427 | Support for error detection and correction on the |
| 428 | Altera On-Chip RAM Memory for Altera SoCs. |
Thor Thayer | 71bcada | 2014-09-03 10:27:54 -0500 | [diff] [blame] | 429 | |
Thor Thayer | ab8c1e0 | 2016-06-22 08:58:58 -0500 | [diff] [blame] | 430 | config EDAC_ALTERA_ETHERNET |
| 431 | bool "Altera Ethernet FIFO ECC" |
| 432 | depends on EDAC_ALTERA=y |
| 433 | help |
| 434 | Support for error detection and correction on the |
| 435 | Altera Ethernet FIFO Memory for Altera SoCs. |
| 436 | |
Thor Thayer | c6882fb | 2016-07-14 11:06:43 -0500 | [diff] [blame] | 437 | config EDAC_ALTERA_NAND |
| 438 | bool "Altera NAND FIFO ECC" |
| 439 | depends on EDAC_ALTERA=y && MTD_NAND_DENALI |
| 440 | help |
| 441 | Support for error detection and correction on the |
| 442 | Altera NAND FIFO Memory for Altera SoCs. |
| 443 | |
Thor Thayer | e826379 | 2016-07-28 10:03:57 +0200 | [diff] [blame] | 444 | config EDAC_ALTERA_DMA |
| 445 | bool "Altera DMA FIFO ECC" |
| 446 | depends on EDAC_ALTERA=y && PL330_DMA=y |
| 447 | help |
| 448 | Support for error detection and correction on the |
| 449 | Altera DMA FIFO Memory for Altera SoCs. |
| 450 | |
Thor Thayer | c609581 | 2016-07-14 11:06:45 -0500 | [diff] [blame] | 451 | config EDAC_ALTERA_USB |
| 452 | bool "Altera USB FIFO ECC" |
| 453 | depends on EDAC_ALTERA=y && USB_DWC2 |
| 454 | help |
| 455 | Support for error detection and correction on the |
| 456 | Altera USB FIFO Memory for Altera SoCs. |
| 457 | |
Thor Thayer | 485fe9e | 2016-07-14 11:06:46 -0500 | [diff] [blame] | 458 | config EDAC_ALTERA_QSPI |
| 459 | bool "Altera QSPI FIFO ECC" |
| 460 | depends on EDAC_ALTERA=y && SPI_CADENCE_QUADSPI |
| 461 | help |
| 462 | Support for error detection and correction on the |
| 463 | Altera QSPI FIFO Memory for Altera SoCs. |
| 464 | |
Thor Thayer | 9110498 | 2016-08-09 09:40:52 -0500 | [diff] [blame] | 465 | config EDAC_ALTERA_SDMMC |
| 466 | bool "Altera SDMMC FIFO ECC" |
| 467 | depends on EDAC_ALTERA=y && MMC_DW |
| 468 | help |
| 469 | Support for error detection and correction on the |
| 470 | Altera SDMMC FIFO Memory for Altera SoCs. |
| 471 | |
Yash Shah | 91abaea | 2019-05-06 16:57:06 +0530 | [diff] [blame] | 472 | config EDAC_SIFIVE |
| 473 | bool "Sifive platform EDAC driver" |
Christoph Hellwig | 9209fb5 | 2019-11-07 10:20:39 +0100 | [diff] [blame] | 474 | depends on EDAC=y && SIFIVE_L2 |
Yash Shah | 91abaea | 2019-05-06 16:57:06 +0530 | [diff] [blame] | 475 | help |
| 476 | Support for error detection and correction on the SiFive SoCs. |
| 477 | |
Jan Luebbe | 7f6998a | 2019-07-12 05:46:57 +0100 | [diff] [blame] | 478 | config EDAC_ARMADA_XP |
| 479 | bool "Marvell Armada XP DDR and L2 Cache ECC" |
| 480 | depends on MACH_MVEBU_V7 |
| 481 | help |
| 482 | Support for error correction and detection on the Marvell Aramada XP |
| 483 | DDR RAM and L2 cache controllers. |
| 484 | |
Punnaiah Choudary Kalluri | ae9b56e3 | 2015-01-06 23:13:47 +0530 | [diff] [blame] | 485 | config EDAC_SYNOPSYS |
| 486 | tristate "Synopsys DDR Memory Controller" |
Dinh Nguyen | f6bc0d8 | 2021-10-12 14:07:08 -0500 | [diff] [blame] | 487 | depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA |
Punnaiah Choudary Kalluri | ae9b56e3 | 2015-01-06 23:13:47 +0530 | [diff] [blame] | 488 | help |
| 489 | Support for error detection and correction on the Synopsys DDR |
| 490 | memory controller. |
| 491 | |
Loc Ho | 0d44293 | 2015-05-22 17:32:59 -0600 | [diff] [blame] | 492 | config EDAC_XGENE |
| 493 | tristate "APM X-Gene SoC" |
Borislav Petkov | e3c4ff6 | 2017-02-03 18:18:05 +0100 | [diff] [blame] | 494 | depends on (ARM64 || COMPILE_TEST) |
Loc Ho | 0d44293 | 2015-05-22 17:32:59 -0600 | [diff] [blame] | 495 | help |
| 496 | Support for error detection and correction on the |
| 497 | APM X-Gene family of SOCs. |
| 498 | |
Tero Kristo | 86a18ee | 2017-11-13 15:08:10 +0200 | [diff] [blame] | 499 | config EDAC_TI |
| 500 | tristate "Texas Instruments DDR3 ECC Controller" |
| 501 | depends on ARCH_KEYSTONE || SOC_DRA7XX |
| 502 | help |
Krzysztof Kozlowski | a483e227 | 2019-11-20 21:42:06 +0800 | [diff] [blame] | 503 | Support for error detection and correction on the TI SoCs. |
Tero Kristo | 86a18ee | 2017-11-13 15:08:10 +0200 | [diff] [blame] | 504 | |
Channagoud Kadabi | 2745065 | 2018-09-12 11:06:34 -0700 | [diff] [blame] | 505 | config EDAC_QCOM |
| 506 | tristate "QCOM EDAC Controller" |
| 507 | depends on ARCH_QCOM && QCOM_LLCC |
| 508 | help |
| 509 | Support for error detection and correction on the |
| 510 | Qualcomm Technologies, Inc. SoCs. |
| 511 | |
| 512 | This driver reports Single Bit Errors (SBEs) and Double Bit Errors (DBEs). |
| 513 | As of now, it supports error reporting for Last Level Cache Controller (LLCC) |
| 514 | of Tag RAM and Data RAM. |
| 515 | |
| 516 | For debugging issues having to do with stability and overall system |
| 517 | health, you should probably say 'Y' here. |
| 518 | |
Stefan M Schaeckeler | 9b7e624 | 2019-01-17 08:38:16 -0800 | [diff] [blame] | 519 | config EDAC_ASPEED |
Troy Lee | edfc2d7 | 2020-12-07 17:00:13 +0800 | [diff] [blame] | 520 | tristate "Aspeed AST BMC SoC" |
| 521 | depends on ARCH_ASPEED |
Stefan M Schaeckeler | 9b7e624 | 2019-01-17 08:38:16 -0800 | [diff] [blame] | 522 | help |
Troy Lee | edfc2d7 | 2020-12-07 17:00:13 +0800 | [diff] [blame] | 523 | Support for error detection and correction on the Aspeed AST BMC SoC. |
Stefan M Schaeckeler | 9b7e624 | 2019-01-17 08:38:16 -0800 | [diff] [blame] | 524 | |
| 525 | First, ECC must be configured in the bootloader. Then, this driver |
| 526 | will expose error counters via the EDAC kernel framework. |
| 527 | |
Shravan Kumar Ramani | 82413e5 | 2019-06-25 15:13:59 -0400 | [diff] [blame] | 528 | config EDAC_BLUEFIELD |
| 529 | tristate "Mellanox BlueField Memory ECC" |
| 530 | depends on ARM64 && ((MELLANOX_PLATFORM && ACPI) || COMPILE_TEST) |
| 531 | help |
| 532 | Support for error detection and correction on the |
| 533 | Mellanox BlueField SoCs. |
| 534 | |
Lei Wang | 1088750 | 2020-01-22 16:31:14 -0800 | [diff] [blame] | 535 | config EDAC_DMC520 |
| 536 | tristate "ARM DMC-520 ECC" |
| 537 | depends on ARM64 |
| 538 | help |
| 539 | Support for error detection and correction on the |
| 540 | SoCs with ARM DMC-520 DRAM controller. |
| 541 | |
Jan Engelhardt | 751cb5e | 2007-07-15 23:39:27 -0700 | [diff] [blame] | 542 | endif # EDAC |