Kconfig 766 B

12345678910111213141516171819202122232425262728293031323334
  1. config DRM_TEGRA
  2. tristate "NVIDIA Tegra DRM"
  3. depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
  4. depends on COMMON_CLK
  5. depends on DRM
  6. depends on OF
  7. select DRM_KMS_HELPER
  8. select DRM_MIPI_DSI
  9. select DRM_PANEL
  10. select TEGRA_HOST1X
  11. select IOMMU_IOVA if IOMMU_SUPPORT
  12. select CEC_CORE if CEC_NOTIFIER
  13. help
  14. Choose this option if you have an NVIDIA Tegra SoC.
  15. To compile this driver as a module, choose M here: the module
  16. will be called tegra-drm.
  17. if DRM_TEGRA
  18. config DRM_TEGRA_DEBUG
  19. bool "NVIDIA Tegra DRM debug support"
  20. help
  21. Say yes here to enable debugging support.
  22. config DRM_TEGRA_STAGING
  23. bool "Enable HOST1X interface"
  24. depends on STAGING
  25. help
  26. Say yes if HOST1X should be available for userspace DRM users.
  27. If unsure, choose N.
  28. endif