Kconfig 2.7 KB

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