1# SPDX-License-Identifier: GPL-2.0-only 2config 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_DP_AUX_BUS 9 select DRM_KMS_HELPER 10 select DRM_MIPI_DSI 11 select DRM_PANEL 12 select TEGRA_HOST1X 13 select INTERCONNECT 14 select IOMMU_IOVA 15 select CEC_CORE if CEC_NOTIFIER 16 select SND_SIMPLE_CARD if SND_SOC_TEGRA20_SPDIF 17 select SND_SOC_HDMI_CODEC if SND_SOC_TEGRA20_SPDIF 18 select SND_AUDIO_GRAPH_CARD if SND_SOC_TEGRA20_SPDIF 19 help 20 Choose this option if you have an NVIDIA Tegra SoC. 21 22 To compile this driver as a module, choose M here: the module 23 will be called tegra-drm. 24 25if DRM_TEGRA 26 27config DRM_TEGRA_DEBUG 28 bool "NVIDIA Tegra DRM debug support" 29 help 30 Say yes here to enable debugging support. 31 32config DRM_TEGRA_STAGING 33 bool "Enable HOST1X interface" 34 depends on STAGING 35 help 36 Say yes if HOST1X should be available for userspace DRM users. 37 38 If unsure, choose N. 39 40endif 41