Kconfig 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. #
  2. # EDAC Kconfig
  3. # Copyright (c) 2008 Doug Thompson www.softwarebitmaker.com
  4. # Licensed and distributed under the GPL
  5. #
  6. menuconfig EDAC
  7. bool "EDAC - error detection and reporting"
  8. depends on HAS_IOMEM
  9. depends on X86 || PPC
  10. help
  11. EDAC is designed to report errors in the core system.
  12. These are low-level errors that are reported in the CPU or
  13. supporting chipset or other subsystems:
  14. memory errors, cache errors, PCI errors, thermal throttling, etc..
  15. If unsure, select 'Y'.
  16. If this code is reporting problems on your system, please
  17. see the EDAC project web pages for more information at:
  18. <http://bluesmoke.sourceforge.net/>
  19. and:
  20. <http://buttersideup.com/edacwiki>
  21. There is also a mailing list for the EDAC project, which can
  22. be found via the sourceforge page.
  23. if EDAC
  24. comment "Reporting subsystems"
  25. config EDAC_DEBUG
  26. bool "Debugging"
  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. config EDAC_DEBUG_VERBOSE
  33. bool "More verbose debugging"
  34. depends on EDAC_DEBUG
  35. help
  36. This option makes debugging information more verbose.
  37. Source file name and line number where debugging message
  38. printed will be added to debugging message.
  39. config EDAC_MM_EDAC
  40. tristate "Main Memory EDAC (Error Detection And Correction) reporting"
  41. default y
  42. help
  43. Some systems are able to detect and correct errors in main
  44. memory. EDAC can report statistics on memory error
  45. detection and correction (EDAC - or commonly referred to ECC
  46. errors). EDAC will also try to decode where these errors
  47. occurred so that a particular failing memory module can be
  48. replaced. If unsure, select 'Y'.
  49. config EDAC_AMD76X
  50. tristate "AMD 76x (760, 762, 768)"
  51. depends on EDAC_MM_EDAC && PCI && X86_32
  52. help
  53. Support for error detection and correction on the AMD 76x
  54. series of chipsets used with the Athlon processor.
  55. config EDAC_E7XXX
  56. tristate "Intel e7xxx (e7205, e7500, e7501, e7505)"
  57. depends on EDAC_MM_EDAC && PCI && X86_32
  58. help
  59. Support for error detection and correction on the Intel
  60. E7205, E7500, E7501 and E7505 server chipsets.
  61. config EDAC_E752X
  62. tristate "Intel e752x (e7520, e7525, e7320) and 3100"
  63. depends on EDAC_MM_EDAC && PCI && X86 && HOTPLUG
  64. help
  65. Support for error detection and correction on the Intel
  66. E7520, E7525, E7320 server chipsets.
  67. config EDAC_I82443BXGX
  68. tristate "Intel 82443BX/GX (440BX/GX)"
  69. depends on EDAC_MM_EDAC && PCI && X86_32
  70. depends on BROKEN
  71. help
  72. Support for error detection and correction on the Intel
  73. 82443BX/GX memory controllers (440BX/GX chipsets).
  74. config EDAC_I82875P
  75. tristate "Intel 82875p (D82875P, E7210)"
  76. depends on EDAC_MM_EDAC && PCI && X86_32
  77. help
  78. Support for error detection and correction on the Intel
  79. DP82785P and E7210 server chipsets.
  80. config EDAC_I82975X
  81. tristate "Intel 82975x (D82975x)"
  82. depends on EDAC_MM_EDAC && PCI && X86
  83. help
  84. Support for error detection and correction on the Intel
  85. DP82975x server chipsets.
  86. config EDAC_I3000
  87. tristate "Intel 3000/3010"
  88. depends on EDAC_MM_EDAC && PCI && X86
  89. help
  90. Support for error detection and correction on the Intel
  91. 3000 and 3010 server chipsets.
  92. config EDAC_X38
  93. tristate "Intel X38"
  94. depends on EDAC_MM_EDAC && PCI && X86
  95. help
  96. Support for error detection and correction on the Intel
  97. X38 server chipsets.
  98. config EDAC_I5400
  99. tristate "Intel 5400 (Seaburg) chipsets"
  100. depends on EDAC_MM_EDAC && PCI && X86
  101. help
  102. Support for error detection and correction the Intel
  103. i5400 MCH chipset (Seaburg).
  104. config EDAC_I82860
  105. tristate "Intel 82860"
  106. depends on EDAC_MM_EDAC && PCI && X86_32
  107. help
  108. Support for error detection and correction on the Intel
  109. 82860 chipset.
  110. config EDAC_R82600
  111. tristate "Radisys 82600 embedded chipset"
  112. depends on EDAC_MM_EDAC && PCI && X86_32
  113. help
  114. Support for error detection and correction on the Radisys
  115. 82600 embedded chipset.
  116. config EDAC_I5000
  117. tristate "Intel Greencreek/Blackford chipset"
  118. depends on EDAC_MM_EDAC && X86 && PCI
  119. help
  120. Support for error detection and correction the Intel
  121. Greekcreek/Blackford chipsets.
  122. config EDAC_I5100
  123. tristate "Intel San Clemente MCH"
  124. depends on EDAC_MM_EDAC && X86 && PCI
  125. help
  126. Support for error detection and correction the Intel
  127. San Clemente MCH.
  128. config EDAC_MPC85XX
  129. tristate "Freescale MPC85xx"
  130. depends on EDAC_MM_EDAC && FSL_SOC && MPC85xx
  131. help
  132. Support for error detection and correction on the Freescale
  133. MPC8560, MPC8540, MPC8548
  134. config EDAC_MV64X60
  135. tristate "Marvell MV64x60"
  136. depends on EDAC_MM_EDAC && MV64X60
  137. help
  138. Support for error detection and correction on the Marvell
  139. MV64360 and MV64460 chipsets.
  140. config EDAC_PASEMI
  141. tristate "PA Semi PWRficient"
  142. depends on EDAC_MM_EDAC && PCI
  143. depends on PPC_PASEMI
  144. help
  145. Support for error detection and correction on PA Semi
  146. PWRficient.
  147. config EDAC_CELL
  148. tristate "Cell Broadband Engine memory controller"
  149. depends on EDAC_MM_EDAC && PPC_CELL_COMMON
  150. help
  151. Support for error detection and correction on the
  152. Cell Broadband Engine internal memory controller
  153. on platform without a hypervisor
  154. config EDAC_PPC4XX
  155. tristate "PPC4xx IBM DDR2 Memory Controller"
  156. depends on EDAC_MM_EDAC && 4xx
  157. help
  158. This enables support for EDAC on the ECC memory used
  159. with the IBM DDR2 memory controller found in various
  160. PowerPC 4xx embedded processors such as the 405EX[r],
  161. 440SP, 440SPe, 460EX, 460GT and 460SX.
  162. config EDAC_AMD8131
  163. tristate "AMD8131 HyperTransport PCI-X Tunnel"
  164. depends on EDAC_MM_EDAC && PCI
  165. help
  166. Support for error detection and correction on the
  167. AMD8131 HyperTransport PCI-X Tunnel chip.
  168. config EDAC_AMD8111
  169. tristate "AMD8111 HyperTransport I/O Hub"
  170. depends on EDAC_MM_EDAC && PCI
  171. help
  172. Support for error detection and correction on the
  173. AMD8111 HyperTransport I/O Hub chip.
  174. endif # EDAC