blob: d8c57636b9ce8750d128169e85b1c9ce3094219a [file] [log] [blame]
Alex Williamson73fa0d12012-07-31 08:16:23 -06001config VFIO_IOMMU_TYPE1
2 tristate
3 depends on VFIO
4 default n
5
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10006config VFIO_IOMMU_SPAPR_TCE
7 tristate
8 depends on VFIO && SPAPR_TCE_IOMMU
9 default n
10
Gavin Shan92d18a62014-08-08 10:36:20 -060011config VFIO_SPAPR_EEH
12 tristate
13 depends on EEH && VFIO_IOMMU_SPAPR_TCE
14 default n
15
Alex Williamsoncba33452012-07-31 08:16:22 -060016menuconfig VFIO
17 tristate "VFIO Non-Privileged userspace driver framework"
18 depends on IOMMU_API
Alex Williamson73fa0d12012-07-31 08:16:23 -060019 select VFIO_IOMMU_TYPE1 if X86
Alexey Kardashevskiy5b251992013-05-21 13:33:11 +100020 select VFIO_IOMMU_SPAPR_TCE if (PPC_POWERNV || PPC_PSERIES)
Gavin Shan92d18a62014-08-08 10:36:20 -060021 select VFIO_SPAPR_EEH if (PPC_POWERNV || PPC_PSERIES)
Arnd Bergmann4379d2a2014-03-27 11:58:58 -060022 select ANON_INODES
Alex Williamsoncba33452012-07-31 08:16:22 -060023 help
24 VFIO provides a framework for secure userspace device drivers.
25 See Documentation/vfio.txt for more details.
26
27 If you don't know what to do here, say N.
Alex Williamson89e1f7d2012-07-31 08:16:24 -060028
29source "drivers/vfio/pci/Kconfig"