Kconfig 560 B

1234567891011121314151617181920212223
  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. select ANON_INODES
  15. help
  16. VFIO provides a framework for secure userspace device drivers.
  17. See Documentation/vfio.txt for more details.
  18. If you don't know what to do here, say N.
  19. source "drivers/vfio/pci/Kconfig"