Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. bool "APEI Generic Hardware Error Source"
  13. depends on ACPI_APEI && X86
  14. select ACPI_HED
  15. select IRQ_WORK
  16. select GENERIC_ALLOCATOR
  17. help
  18. Generic Hardware Error Source provides a way to report
  19. platform hardware errors (such as that from chipset). It
  20. works in so called "Firmware First" mode, that is, hardware
  21. errors are reported to firmware firstly, then reported to
  22. Linux by firmware. This way, some non-standard hardware
  23. error registers or non-standard hardware link can be checked
  24. by firmware to produce more valuable hardware error
  25. information for Linux.
  26. config ACPI_APEI_PCIEAER
  27. bool "APEI PCIe AER logging/recovering support"
  28. depends on ACPI_APEI && PCIEAER
  29. help
  30. PCIe AER errors may be reported via APEI firmware first mode.
  31. Turn on this option to enable the corresponding support.
  32. config ACPI_APEI_MEMORY_FAILURE
  33. bool "APEI memory error recovering support"
  34. depends on ACPI_APEI && MEMORY_FAILURE
  35. help
  36. Memory errors may be reported via APEI firmware first mode.
  37. Turn on this option to enable the memory recovering support.
  38. config ACPI_APEI_EINJ
  39. tristate "APEI Error INJection (EINJ)"
  40. depends on ACPI_APEI && DEBUG_FS
  41. help
  42. EINJ provides a hardware error injection mechanism, it is
  43. mainly used for debugging and testing the other parts of
  44. APEI and some other RAS features.
  45. config ACPI_APEI_ERST_DEBUG
  46. tristate "APEI Error Record Serialization Table (ERST) Debug Support"
  47. depends on ACPI_APEI
  48. help
  49. ERST is a way provided by APEI to save and retrieve hardware
  50. error information to and from a persistent store. Enable this
  51. if you want to debugging and testing the ERST kernel support
  52. and firmware implementation.