Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # KVM configuration
  4. #
  5. source "virt/kvm/Kconfig"
  6. menuconfig VIRTUALIZATION
  7. bool "Virtualization"
  8. help
  9. Say Y here to get to see options for using your Linux host to run
  10. other operating systems inside virtual machines (guests).
  11. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. if VIRTUALIZATION
  14. config KVM
  15. tristate "Kernel-based Virtual Machine (KVM) support"
  16. depends on HAVE_KVM
  17. depends on MIPS_FP_SUPPORT
  18. select EXPORT_UASM
  19. select PREEMPT_NOTIFIERS
  20. select KVM_GENERIC_DIRTYLOG_READ_PROTECT
  21. select HAVE_KVM_EVENTFD
  22. select HAVE_KVM_VCPU_ASYNC_IOCTL
  23. select KVM_MMIO
  24. select MMU_NOTIFIER
  25. select SRCU
  26. select INTERVAL_TREE
  27. help
  28. Support for hosting Guest kernels.
  29. config KVM_MIPS_DEBUG_COP0_COUNTERS
  30. bool "Maintain counters for COP0 accesses"
  31. depends on KVM
  32. help
  33. Maintain statistics for Guest COP0 accesses.
  34. A histogram of COP0 accesses is printed when the VM is
  35. shutdown.
  36. If unsure, say N.
  37. endif # VIRTUALIZATION