Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config DRM_TEGRA
  3. tristate "NVIDIA Tegra DRM"
  4. depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
  5. depends on COMMON_CLK
  6. depends on DRM
  7. depends on OF
  8. select DRM_DISPLAY_DP_HELPER
  9. select DRM_DISPLAY_HDMI_HELPER
  10. select DRM_DISPLAY_HELPER
  11. select DRM_DP_AUX_BUS
  12. select DRM_KMS_HELPER
  13. select DRM_MIPI_DSI
  14. select DRM_PANEL
  15. select TEGRA_HOST1X
  16. select INTERCONNECT
  17. select IOMMU_IOVA
  18. select CEC_CORE if CEC_NOTIFIER
  19. select SND_SIMPLE_CARD if SND_SOC_TEGRA20_SPDIF
  20. select SND_SOC_HDMI_CODEC if SND_SOC_TEGRA20_SPDIF
  21. select SND_AUDIO_GRAPH_CARD if SND_SOC_TEGRA20_SPDIF
  22. help
  23. Choose this option if you have an NVIDIA Tegra SoC.
  24. To compile this driver as a module, choose M here: the module
  25. will be called tegra-drm.
  26. if DRM_TEGRA
  27. config DRM_TEGRA_DEBUG
  28. bool "NVIDIA Tegra DRM debug support"
  29. help
  30. Say yes here to enable debugging support.
  31. config DRM_TEGRA_STAGING
  32. bool "Enable HOST1X interface"
  33. depends on STAGING
  34. help
  35. Say yes if HOST1X should be available for userspace DRM users.
  36. If unsure, choose N.
  37. endif