xref: /linux/drivers/gpu/drm/tegra/Kconfig (revision a13d7201d7deedcbb6ac6efa94a1a7d34d3d79ec)
1config 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 RESET_CONTROLLER
7	select DRM_KMS_HELPER
8	select DRM_MIPI_DSI
9	select DRM_PANEL
10	select TEGRA_HOST1X
11	help
12	  Choose this option if you have an NVIDIA Tegra SoC.
13
14	  To compile this driver as a module, choose M here: the module
15	  will be called tegra-drm.
16
17if DRM_TEGRA
18
19config DRM_TEGRA_FBDEV
20	bool "Enable legacy fbdev support"
21	select DRM_KMS_FB_HELPER
22	select FB_SYS_FILLRECT
23	select FB_SYS_COPYAREA
24	select FB_SYS_IMAGEBLIT
25	default y
26	help
27	  Choose this option if you have a need for the legacy fbdev support.
28	  Note that this support also provides the Linux console on top of
29	  the Tegra modesetting driver.
30
31config DRM_TEGRA_DEBUG
32	bool "NVIDIA Tegra DRM debug support"
33	help
34	  Say yes here to enable debugging support.
35
36config DRM_TEGRA_STAGING
37	bool "Enable HOST1X interface"
38	depends on STAGING
39	help
40	  Say yes if HOST1X should be available for userspace DRM users.
41
42	  If unsure, choose N.
43
44endif
45