Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 FSL_HV_MANAGER
  13. tristate "Freescale hypervisor management driver"
  14. depends on FSL_SOC
  15. select EPAPR_PARAVIRT
  16. help
  17. The Freescale hypervisor management driver provides several services
  18. to drivers and applications related to the Freescale hypervisor:
  19. 1) An ioctl interface for querying and managing partitions.
  20. 2) A file interface to reading incoming doorbells.
  21. 3) An interrupt handler for shutting down the partition upon
  22. receiving the shutdown doorbell from a manager partition.
  23. 4) A kernel interface for receiving callbacks when a managed
  24. partition shuts down.
  25. source "drivers/virt/vboxguest/Kconfig"
  26. source "drivers/virt/nitro_enclaves/Kconfig"
  27. endif