Kconfig 775 B

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config TEGRA_HOST1X_CONTEXT_BUS
  3. bool
  4. config TEGRA_HOST1X
  5. tristate "NVIDIA Tegra host1x driver"
  6. depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
  7. select DMA_SHARED_BUFFER
  8. select TEGRA_HOST1X_CONTEXT_BUS
  9. select IOMMU_IOVA
  10. help
  11. Driver for the NVIDIA Tegra host1x hardware.
  12. The Tegra host1x module is the DMA engine for register access to
  13. Tegra's graphics- and multimedia-related modules. The modules served
  14. by host1x are referred to as clients. host1x includes some other
  15. functionality, such as synchronization.
  16. if TEGRA_HOST1X
  17. config TEGRA_HOST1X_FIREWALL
  18. bool "Enable HOST1X security firewall"
  19. default y
  20. help
  21. Say yes if kernel should protect command streams from tampering.
  22. If unsure, choose Y.
  23. endif