Kconfig 728 B

123456789101112131415161718192021222324252627
  1. #
  2. # IOMMU devices
  3. #
  4. menu "IOMMU device drivers"
  5. config IOMMU
  6. bool "Enable Driver Model for IOMMU drivers"
  7. depends on DM
  8. help
  9. Enable driver model for IOMMU devices. An IOMMU maps device
  10. virtiual memory addresses to physical addresses. Devices
  11. that sit behind an IOMMU can typically only access physical
  12. memory if the IOMMU has been programmed to allow access to
  13. that memory.
  14. config APPLE_DART
  15. bool "Apple DART support"
  16. depends on IOMMU && ARCH_APPLE
  17. default y
  18. help
  19. Enable support for the DART on Apple SoCs. The DART is Apple's
  20. IOMMU implementation. The driver performs the necessary
  21. configuration to put the DART into bypass mode such that it can
  22. be used transparently by U-Boot.
  23. endmenu