Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Virtualization support drivers
  4. #
  5. menuconfig VIRT_DRIVERS
  6. bool "Virtualization drivers"
  7. help
  8. Say Y here to get to see options for device drivers that support
  9. virtualization environments.
  10. If you say N, all options in this submenu will be skipped and disabled.
  11. if VIRT_DRIVERS
  12. config VMGENID
  13. tristate "Virtual Machine Generation ID driver"
  14. default y
  15. depends on ACPI
  16. help
  17. Say Y here to use the hypervisor-provided Virtual Machine Generation ID
  18. to reseed the RNG when the VM is cloned. This is highly recommended if
  19. you intend to do any rollback / cloning / snapshotting of VMs.
  20. Prefer Y to M so that this protection is activated very early.
  21. config FSL_HV_MANAGER
  22. tristate "Freescale hypervisor management driver"
  23. depends on FSL_SOC
  24. select EPAPR_PARAVIRT
  25. help
  26. The Freescale hypervisor management driver provides several services
  27. to drivers and applications related to the Freescale hypervisor:
  28. 1) An ioctl interface for querying and managing partitions.
  29. 2) A file interface to reading incoming doorbells.
  30. 3) An interrupt handler for shutting down the partition upon
  31. receiving the shutdown doorbell from a manager partition.
  32. 4) A kernel interface for receiving callbacks when a managed
  33. partition shuts down.
  34. source "drivers/virt/vboxguest/Kconfig"
  35. source "drivers/virt/nitro_enclaves/Kconfig"
  36. source "drivers/virt/acrn/Kconfig"
  37. source "drivers/virt/coco/efi_secret/Kconfig"
  38. source "drivers/virt/coco/sev-guest/Kconfig"
  39. source "drivers/virt/gunyah/Kconfig"
  40. source "drivers/virt/geniezone/Kconfig"
  41. endif