Kconfig 2.1 KB

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