Kconfig 1.7 KB

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