Kconfig 944 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Virtualization support drivers
  3. #
  4. menuconfig VIRT_DRIVERS
  5. bool "Virtualization drivers"
  6. ---help---
  7. Say Y here to get to see options for device drivers that support
  8. virtualization environments.
  9. If you say N, all options in this submenu will be skipped and disabled.
  10. if VIRT_DRIVERS
  11. config FSL_HV_MANAGER
  12. tristate "Freescale hypervisor management driver"
  13. depends on FSL_SOC
  14. select EPAPR_PARAVIRT
  15. help
  16. The Freescale hypervisor management driver provides several services
  17. to drivers and applications related to the Freescale hypervisor:
  18. 1) An ioctl interface for querying and managing partitions.
  19. 2) A file interface to reading incoming doorbells.
  20. 3) An interrupt handler for shutting down the partition upon
  21. receiving the shutdown doorbell from a manager partition.
  22. 4) A kernel interface for receiving callbacks when a managed
  23. partition shuts down.
  24. endif