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