Kconfig 2.7 KB

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