Kconfig 934 B

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