Kconfig 1.3 KB

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