Kconfig 1.4 KB

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