1# SPDX-License-Identifier: GPL-2.0-only 2config DRM_IMX 3 tristate "DRM Support for Freescale i.MX" 4 select DRM_KMS_HELPER 5 select VIDEOMODE_HELPERS 6 select DRM_GEM_DMA_HELPER 7 depends on DRM && (ARCH_MXC || ARCH_MULTIPLATFORM || COMPILE_TEST) 8 depends on IMX_IPUV3_CORE 9 help 10 enable i.MX graphics support 11 12config DRM_IMX_PARALLEL_DISPLAY 13 tristate "Support for parallel displays" 14 select DRM_PANEL 15 depends on DRM_IMX 16 select VIDEOMODE_HELPERS 17 18config DRM_IMX_TVE 19 tristate "Support for TV and VGA displays" 20 depends on DRM_IMX 21 depends on COMMON_CLK 22 select REGMAP_MMIO 23 help 24 Choose this to enable the internal Television Encoder (TVe) 25 found on i.MX53 processors. 26 27config DRM_IMX_LDB 28 tristate "Support for LVDS displays" 29 depends on DRM_IMX && MFD_SYSCON 30 depends on COMMON_CLK 31 select DRM_PANEL 32 help 33 Choose this to enable the internal LVDS Display Bridge (LDB) 34 found on i.MX53 and i.MX6 processors. 35 36config DRM_IMX_HDMI 37 tristate "Freescale i.MX DRM HDMI" 38 select DRM_DW_HDMI 39 depends on DRM_IMX && OF 40 help 41 Choose this if you want to use HDMI on i.MX6. 42 43source "drivers/gpu/drm/imx/dcss/Kconfig" 44