diff options
Diffstat (limited to 'drivers/edac/Kconfig')
-rw-r--r-- | drivers/edac/Kconfig | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig new file mode 100644 index 000000000000..4819e7fc00dd --- /dev/null +++ b/drivers/edac/Kconfig | |||
@@ -0,0 +1,102 @@ | |||
1 | # | ||
2 | # EDAC Kconfig | ||
3 | # Copyright (c) 2003 Linux Networx | ||
4 | # Licensed and distributed under the GPL | ||
5 | # | ||
6 | # $Id: Kconfig,v 1.4.2.7 2005/07/08 22:05:38 dsp_llnl Exp $ | ||
7 | # | ||
8 | |||
9 | menu 'EDAC - error detection and reporting (RAS)' | ||
10 | |||
11 | config EDAC | ||
12 | tristate "EDAC core system error reporting" | ||
13 | depends on X86 | ||
14 | default y | ||
15 | help | ||
16 | EDAC is designed to report errors in the core system. | ||
17 | These are low-level errors that are reported in the CPU or | ||
18 | supporting chipset: memory errors, cache errors, PCI errors, | ||
19 | thermal throttling, etc.. If unsure, select 'Y'. | ||
20 | |||
21 | |||
22 | comment "Reporting subsystems" | ||
23 | depends on EDAC | ||
24 | |||
25 | config EDAC_DEBUG | ||
26 | bool "Debugging" | ||
27 | depends on EDAC | ||
28 | help | ||
29 | This turns on debugging information for the entire EDAC | ||
30 | sub-system. You can insert module with "debug_level=x", current | ||
31 | there're four debug levels (x=0,1,2,3 from low to high). | ||
32 | Usually you should select 'N'. | ||
33 | |||
34 | config EDAC_MM_EDAC | ||
35 | tristate "Main Memory EDAC (Error Detection And Correction) reporting" | ||
36 | depends on EDAC | ||
37 | default y | ||
38 | help | ||
39 | Some systems are able to detect and correct errors in main | ||
40 | memory. EDAC can report statistics on memory error | ||
41 | detection and correction (EDAC - or commonly referred to ECC | ||
42 | errors). EDAC will also try to decode where these errors | ||
43 | occurred so that a particular failing memory module can be | ||
44 | replaced. If unsure, select 'Y'. | ||
45 | |||
46 | |||
47 | config EDAC_AMD76X | ||
48 | tristate "AMD 76x (760, 762, 768)" | ||
49 | depends on EDAC_MM_EDAC && PCI | ||
50 | help | ||
51 | Support for error detection and correction on the AMD 76x | ||
52 | series of chipsets used with the Athlon processor. | ||
53 | |||
54 | config EDAC_E7XXX | ||
55 | tristate "Intel e7xxx (e7205, e7500, e7501, e7505)" | ||
56 | depends on EDAC_MM_EDAC && PCI | ||
57 | help | ||
58 | Support for error detection and correction on the Intel | ||
59 | E7205, E7500, E7501 and E7505 server chipsets. | ||
60 | |||
61 | config EDAC_E752X | ||
62 | tristate "Intel e752x (e7520, e7525, e7320)" | ||
63 | depends on EDAC_MM_EDAC && PCI | ||
64 | help | ||
65 | Support for error detection and correction on the Intel | ||
66 | E7520, E7525, E7320 server chipsets. | ||
67 | |||
68 | config EDAC_I82875P | ||
69 | tristate "Intel 82875p (D82875P, E7210)" | ||
70 | depends on EDAC_MM_EDAC && PCI | ||
71 | help | ||
72 | Support for error detection and correction on the Intel | ||
73 | DP82785P and E7210 server chipsets. | ||
74 | |||
75 | config EDAC_I82860 | ||
76 | tristate "Intel 82860" | ||
77 | depends on EDAC_MM_EDAC && PCI | ||
78 | help | ||
79 | Support for error detection and correction on the Intel | ||
80 | 82860 chipset. | ||
81 | |||
82 | config EDAC_R82600 | ||
83 | tristate "Radisys 82600 embedded chipset" | ||
84 | depends on EDAC_MM_EDAC | ||
85 | help | ||
86 | Support for error detection and correction on the Radisys | ||
87 | 82600 embedded chipset. | ||
88 | |||
89 | choice | ||
90 | prompt "Error detecting method" | ||
91 | depends on EDAC | ||
92 | default EDAC_POLL | ||
93 | |||
94 | config EDAC_POLL | ||
95 | bool "Poll for errors" | ||
96 | depends on EDAC | ||
97 | help | ||
98 | Poll the chipset periodically to detect errors. | ||
99 | |||
100 | endchoice | ||
101 | |||
102 | endmenu | ||