Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #
  2. # KVM configuration
  3. #
  4. source "virt/kvm/Kconfig"
  5. menuconfig VIRTUALIZATION
  6. bool "Virtualization"
  7. ---help---
  8. Say Y here to get to see options for using your Linux host to run
  9. other operating systems inside virtual machines (guests).
  10. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and
  12. disabled.
  13. if VIRTUALIZATION
  14. config KVM
  15. bool "Kernel-based Virtual Machine (KVM) support"
  16. select MMU_NOTIFIER
  17. select PREEMPT_NOTIFIERS
  18. select ANON_INODES
  19. select HAVE_KVM_CPU_RELAX_INTERCEPT
  20. select KVM_MMIO
  21. select KVM_ARM_HOST
  22. select KVM_ARM_VGIC
  23. select KVM_ARM_TIMER
  24. ---help---
  25. Support hosting virtualized guest machines.
  26. If unsure, say N.
  27. config KVM_ARM_HOST
  28. bool
  29. ---help---
  30. Provides host support for ARM processors.
  31. config KVM_ARM_VGIC
  32. bool
  33. depends on KVM_ARM_HOST && OF
  34. select HAVE_KVM_IRQCHIP
  35. ---help---
  36. Adds support for a hardware assisted, in-kernel GIC emulation.
  37. config KVM_ARM_TIMER
  38. bool
  39. depends on KVM_ARM_VGIC
  40. ---help---
  41. Adds support for the Architected Timers in virtual machines.
  42. endif # VIRTUALIZATION