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