]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/edac/Kconfig
Use menuconfig objects II - auxdisplay
[mirror_ubuntu-hirsute-kernel.git] / drivers / edac / Kconfig
CommitLineData
da9bb1d2
AC
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
57c432b5 9menu 'EDAC - error detection and reporting (RAS) (EXPERIMENTAL)'
e25df120 10 depends on HAS_IOMEM
da9bb1d2
AC
11
12config EDAC
57c432b5
TS
13 tristate "EDAC core system error reporting (EXPERIMENTAL)"
14 depends on X86 && EXPERIMENTAL
da9bb1d2
AC
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
57c432b5
TS
21 If this code is reporting problems on your system, please
22 see the EDAC project web pages for more information at:
23
24 <http://bluesmoke.sourceforge.net/>
25
26 and:
27
28 <http://buttersideup.com/edacwiki>
29
30 There is also a mailing list for the EDAC project, which can
31 be found via the sourceforge page.
32
da9bb1d2
AC
33
34comment "Reporting subsystems"
35 depends on EDAC
36
37config EDAC_DEBUG
38 bool "Debugging"
39 depends on EDAC
40 help
41 This turns on debugging information for the entire EDAC
42 sub-system. You can insert module with "debug_level=x", current
43 there're four debug levels (x=0,1,2,3 from low to high).
44 Usually you should select 'N'.
45
46config EDAC_MM_EDAC
47 tristate "Main Memory EDAC (Error Detection And Correction) reporting"
48 depends on EDAC
49 default y
50 help
51 Some systems are able to detect and correct errors in main
52 memory. EDAC can report statistics on memory error
53 detection and correction (EDAC - or commonly referred to ECC
54 errors). EDAC will also try to decode where these errors
55 occurred so that a particular failing memory module can be
56 replaced. If unsure, select 'Y'.
57
58
59config EDAC_AMD76X
60 tristate "AMD 76x (760, 762, 768)"
90cbc45b 61 depends on EDAC_MM_EDAC && PCI && X86_32
da9bb1d2
AC
62 help
63 Support for error detection and correction on the AMD 76x
64 series of chipsets used with the Athlon processor.
65
66config EDAC_E7XXX
67 tristate "Intel e7xxx (e7205, e7500, e7501, e7505)"
39f1d8d3 68 depends on EDAC_MM_EDAC && PCI && X86_32
da9bb1d2
AC
69 help
70 Support for error detection and correction on the Intel
71 E7205, E7500, E7501 and E7505 server chipsets.
72
73config EDAC_E752X
74 tristate "Intel e752x (e7520, e7525, e7320)"
da960a6a 75 depends on EDAC_MM_EDAC && PCI && X86 && HOTPLUG
da9bb1d2
AC
76 help
77 Support for error detection and correction on the Intel
78 E7520, E7525, E7320 server chipsets.
79
80config EDAC_I82875P
81 tristate "Intel 82875p (D82875P, E7210)"
39f1d8d3 82 depends on EDAC_MM_EDAC && PCI && X86_32
da9bb1d2
AC
83 help
84 Support for error detection and correction on the Intel
85 DP82785P and E7210 server chipsets.
86
87config EDAC_I82860
88 tristate "Intel 82860"
39f1d8d3 89 depends on EDAC_MM_EDAC && PCI && X86_32
da9bb1d2
AC
90 help
91 Support for error detection and correction on the Intel
92 82860 chipset.
93
94config EDAC_R82600
95 tristate "Radisys 82600 embedded chipset"
39f1d8d3 96 depends on EDAC_MM_EDAC && PCI && X86_32
da9bb1d2
AC
97 help
98 Support for error detection and correction on the Radisys
99 82600 embedded chipset.
100
101choice
102 prompt "Error detecting method"
103 depends on EDAC
104 default EDAC_POLL
105
106config EDAC_POLL
107 bool "Poll for errors"
108 depends on EDAC
109 help
110 Poll the chipset periodically to detect errors.
111
112endchoice
113
114endmenu