Kconfig 788 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Pvpanic Kconfig
  4. #
  5. # Copyright (C) 2021 Oracle.
  6. #
  7. config PVPANIC
  8. bool "pvpanic device support"
  9. help
  10. This option allows to select a specific pvpanic device driver.
  11. pvpanic is a paravirtualized device provided by QEMU; it lets
  12. a virtual machine (guest) communicate panic events to the host.
  13. config PVPANIC_MMIO
  14. tristate "pvpanic MMIO device support"
  15. depends on HAS_IOMEM && (ACPI || OF) && PVPANIC
  16. help
  17. This driver provides support for the MMIO pvpanic device.
  18. config PVPANIC_PCI
  19. tristate "pvpanic PCI device support"
  20. depends on PCI && PVPANIC
  21. help
  22. This driver provides support for the PCI pvpanic device.
  23. pvpanic is a paravirtualized device provided by QEMU which
  24. forwards the panic events from the guest to the host.