Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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_ARM_VGIC_V3_ITS
  15. bool
  16. config KVM
  17. bool "Kernel-based Virtual Machine (KVM) support"
  18. depends on OF
  19. select MMU_NOTIFIER
  20. select PREEMPT_NOTIFIERS
  21. select ANON_INODES
  22. select HAVE_KVM_CPU_RELAX_INTERCEPT
  23. select HAVE_KVM_ARCH_TLB_FLUSH_ALL
  24. select KVM_MMIO
  25. select KVM_ARM_HOST
  26. select KVM_GENERIC_DIRTYLOG_READ_PROTECT
  27. select SRCU
  28. select KVM_VFIO
  29. select HAVE_KVM_EVENTFD
  30. select HAVE_KVM_IRQFD
  31. select KVM_ARM_VGIC_V3_ITS
  32. select KVM_ARM_PMU if HW_PERF_EVENTS
  33. select HAVE_KVM_MSI
  34. select HAVE_KVM_IRQCHIP
  35. select HAVE_KVM_IRQ_ROUTING
  36. ---help---
  37. Support hosting virtualized guest machines.
  38. We don't support KVM with 16K page tables yet, due to the multiple
  39. levels of fake page tables.
  40. If unsure, say N.
  41. config KVM_ARM_HOST
  42. bool
  43. ---help---
  44. Provides host support for ARM processors.
  45. config KVM_ARM_PMU
  46. bool
  47. ---help---
  48. Adds support for a virtual Performance Monitoring Unit (PMU) in
  49. virtual machines.
  50. source drivers/vhost/Kconfig
  51. endif # VIRTUALIZATION