Kconfig 730 B

12345678910111213141516171819202122232425
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config VFIO_PLATFORM
  3. tristate "VFIO support for platform devices"
  4. depends on ARM || ARM64 || COMPILE_TEST
  5. select VFIO_VIRQFD
  6. help
  7. Support for platform devices with VFIO. This is required to make
  8. use of platform devices present on the system using the VFIO
  9. framework.
  10. If you don't know what to do here, say N.
  11. if VFIO_PLATFORM
  12. config VFIO_AMBA
  13. tristate "VFIO support for AMBA devices"
  14. depends on ARM_AMBA || COMPILE_TEST
  15. help
  16. Support for ARM AMBA devices with VFIO. This is required to make
  17. use of ARM AMBA devices present on the system using the VFIO
  18. framework.
  19. If you don't know what to do here, say N.
  20. source "drivers/vfio/platform/reset/Kconfig"
  21. endif