]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/edac/Kconfig
[PATCH] ARM: OMAP: IrDA: Update
[linux-2.6-omap-h63xx.git] / drivers / edac / Kconfig
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         help
15           EDAC is designed to report errors in the core system.
16           These are low-level errors that are reported in the CPU or
17           supporting chipset: memory errors, cache errors, PCI errors,
18           thermal throttling, etc..  If unsure, select 'Y'.
19
20
21 comment "Reporting subsystems"
22         depends on EDAC
23
24 config EDAC_DEBUG
25         bool "Debugging"
26         depends on EDAC
27         help
28           This turns on debugging information for the entire EDAC
29           sub-system. You can insert module with "debug_level=x", current
30           there're four debug levels (x=0,1,2,3 from low to high).
31           Usually you should select 'N'.
32
33 config EDAC_MM_EDAC
34         tristate "Main Memory EDAC (Error Detection And Correction) reporting"
35         depends on EDAC
36         default y
37         help
38           Some systems are able to detect and correct errors in main
39           memory.  EDAC can report statistics on memory error
40           detection and correction (EDAC - or commonly referred to ECC
41           errors).  EDAC will also try to decode where these errors
42           occurred so that a particular failing memory module can be
43           replaced.  If unsure, select 'Y'.
44
45
46 config EDAC_AMD76X
47         tristate "AMD 76x (760, 762, 768)"
48         depends on EDAC_MM_EDAC && PCI && X86_32
49         help
50           Support for error detection and correction on the AMD 76x
51           series of chipsets used with the Athlon processor.
52
53 config EDAC_E7XXX
54         tristate "Intel e7xxx (e7205, e7500, e7501, e7505)"
55         depends on EDAC_MM_EDAC && PCI
56         help
57           Support for error detection and correction on the Intel
58           E7205, E7500, E7501 and E7505 server chipsets.
59
60 config EDAC_E752X
61         tristate "Intel e752x (e7520, e7525, e7320)"
62         depends on EDAC_MM_EDAC && PCI
63         help
64           Support for error detection and correction on the Intel
65           E7520, E7525, E7320 server chipsets.
66
67 config EDAC_I82875P
68         tristate "Intel 82875p (D82875P, E7210)"
69         depends on EDAC_MM_EDAC && PCI
70         help
71           Support for error detection and correction on the Intel
72           DP82785P and E7210 server chipsets.
73
74 config EDAC_I82860
75         tristate "Intel 82860"
76         depends on EDAC_MM_EDAC && PCI
77         help
78           Support for error detection and correction on the Intel
79           82860 chipset.
80
81 config EDAC_R82600
82         tristate "Radisys 82600 embedded chipset"
83         depends on EDAC_MM_EDAC
84         help
85           Support for error detection and correction on the Radisys
86           82600 embedded chipset.
87
88 choice
89         prompt "Error detecting method"
90         depends on EDAC
91         default EDAC_POLL
92
93 config EDAC_POLL
94         bool "Poll for errors"
95         depends on EDAC
96         help
97           Poll the chipset periodically to detect errors.
98
99 endchoice
100
101 endmenu