Kconfig 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. menuconfig EDAC
  9. tristate "EDAC - error detection and reporting (EXPERIMENTAL)"
  10. depends on HAS_IOMEM
  11. depends on X86 && EXPERIMENTAL
  12. help
  13. EDAC is designed to report errors in the core system.
  14. These are low-level errors that are reported in the CPU or
  15. supporting chipset or other subsystems:
  16. memory errors, cache errors, PCI errors, thermal throttling, etc..
  17. If unsure, select 'Y'.
  18. If this code is reporting problems on your system, please
  19. see the EDAC project web pages for more information at:
  20. <http://bluesmoke.sourceforge.net/>
  21. and:
  22. <http://buttersideup.com/edacwiki>
  23. There is also a mailing list for the EDAC project, which can
  24. be found via the sourceforge page.
  25. if EDAC
  26. comment "Reporting subsystems"
  27. config EDAC_DEBUG
  28. bool "Debugging"
  29. help
  30. This turns on debugging information for the entire EDAC
  31. sub-system. You can insert module with "debug_level=x", current
  32. there're four debug levels (x=0,1,2,3 from low to high).
  33. Usually you should select 'N'.
  34. config EDAC_MM_EDAC
  35. tristate "Main Memory EDAC (Error Detection And Correction) reporting"
  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. config EDAC_AMD76X
  45. tristate "AMD 76x (760, 762, 768)"
  46. depends on EDAC_MM_EDAC && PCI && X86_32
  47. help
  48. Support for error detection and correction on the AMD 76x
  49. series of chipsets used with the Athlon processor.
  50. config EDAC_E7XXX
  51. tristate "Intel e7xxx (e7205, e7500, e7501, e7505)"
  52. depends on EDAC_MM_EDAC && PCI && X86_32
  53. help
  54. Support for error detection and correction on the Intel
  55. E7205, E7500, E7501 and E7505 server chipsets.
  56. config EDAC_E752X
  57. tristate "Intel e752x (e7520, e7525, e7320)"
  58. depends on EDAC_MM_EDAC && PCI && X86 && HOTPLUG
  59. help
  60. Support for error detection and correction on the Intel
  61. E7520, E7525, E7320 server chipsets.
  62. config EDAC_I82443BXGX
  63. tristate "Intel 82443BX/GX (440BX/GX)"
  64. depends on EDAC_MM_EDAC && PCI && X86_32
  65. depends on BROKEN
  66. help
  67. Support for error detection and correction on the Intel
  68. 82443BX/GX memory controllers (440BX/GX chipsets).
  69. config EDAC_I82875P
  70. tristate "Intel 82875p (D82875P, E7210)"
  71. depends on EDAC_MM_EDAC && PCI && X86_32
  72. help
  73. Support for error detection and correction on the Intel
  74. DP82785P and E7210 server chipsets.
  75. config EDAC_I3000
  76. tristate "Intel 3000/3010"
  77. depends on EDAC_MM_EDAC && PCI && X86_32
  78. help
  79. Support for error detection and correction on the Intel
  80. 3000 and 3010 server chipsets.
  81. config EDAC_I82860
  82. tristate "Intel 82860"
  83. depends on EDAC_MM_EDAC && PCI && X86_32
  84. help
  85. Support for error detection and correction on the Intel
  86. 82860 chipset.
  87. config EDAC_R82600
  88. tristate "Radisys 82600 embedded chipset"
  89. depends on EDAC_MM_EDAC && PCI && X86_32
  90. help
  91. Support for error detection and correction on the Radisys
  92. 82600 embedded chipset.
  93. config EDAC_I5000
  94. tristate "Intel Greencreek/Blackford chipset"
  95. depends on EDAC_MM_EDAC && X86 && PCI
  96. help
  97. Support for error detection and correction the Intel
  98. Greekcreek/Blackford chipsets.
  99. endif # EDAC