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