Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. config ACPI_APEI
  2. bool "ACPI Platform Error Interface (APEI)"
  3. depends on X86
  4. help
  5. APEI allows to report errors (for example from the chipset)
  6. to the operating system. This improves NMI handling
  7. especially. In addition it supports error serialization and
  8. error injection.
  9. config ACPI_APEI_GHES
  10. tristate "APEI Generic Hardware Error Source"
  11. depends on ACPI_APEI && X86
  12. select ACPI_HED
  13. help
  14. Generic Hardware Error Source provides a way to report
  15. platform hardware errors (such as that from chipset). It
  16. works in so called "Firmware First" mode, that is, hardware
  17. errors are reported to firmware firstly, then reported to
  18. Linux by firmware. This way, some non-standard hardware
  19. error registers or non-standard hardware link can be checked
  20. by firmware to produce more valuable hardware error
  21. information for Linux.
  22. config ACPI_APEI_EINJ
  23. tristate "APEI Error INJection (EINJ)"
  24. depends on ACPI_APEI && DEBUG_FS
  25. help
  26. EINJ provides a hardware error injection mechanism, it is
  27. mainly used for debugging and testing the other parts of
  28. APEI and some other RAS features.
  29. config ACPI_APEI_ERST_DEBUG
  30. tristate "APEI Error Record Serialization Table (ERST) Debug Support"
  31. depends on ACPI_APEI
  32. help
  33. ERST is a way provided by APEI to save and retrieve hardware
  34. error information to and from a persistent store. Enable this
  35. if you want to debugging and testing the ERST kernel support
  36. and firmware implementation.