Kconfig 721 B

1234567891011121314151617181920212223242526272829
  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. config VFIO_SPAPR_EEH
  10. tristate
  11. depends on EEH && VFIO_IOMMU_SPAPR_TCE
  12. default n
  13. menuconfig VFIO
  14. tristate "VFIO Non-Privileged userspace driver framework"
  15. depends on IOMMU_API
  16. select VFIO_IOMMU_TYPE1 if (X86 || S390 || ARM_SMMU)
  17. select VFIO_IOMMU_SPAPR_TCE if (PPC_POWERNV || PPC_PSERIES)
  18. select VFIO_SPAPR_EEH if (PPC_POWERNV || PPC_PSERIES)
  19. select ANON_INODES
  20. help
  21. VFIO provides a framework for secure userspace device drivers.
  22. See Documentation/vfio.txt for more details.
  23. If you don't know what to do here, say N.
  24. source "drivers/vfio/pci/Kconfig"