Kconfig 540 B

12345678910111213141516171819202122
  1. config VFIO_IOMMU_TYPE1
  2. tristate
  3. depends on VFIO
  4. default n
  5. config VFIO_IOMMU_SPAPR_TCE
  6. tristate
  7. depends on VFIO && SPAPR_TCE_IOMMU
  8. default n
  9. menuconfig VFIO
  10. tristate "VFIO Non-Privileged userspace driver framework"
  11. depends on IOMMU_API
  12. select VFIO_IOMMU_TYPE1 if X86
  13. select VFIO_IOMMU_SPAPR_TCE if (PPC_POWERNV || PPC_PSERIES)
  14. help
  15. VFIO provides a framework for secure userspace device drivers.
  16. See Documentation/vfio.txt for more details.
  17. If you don't know what to do here, say N.
  18. source "drivers/vfio/pci/Kconfig"