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_IMX_LEGACY_BRIDGE 19 select DRM_PANEL_BRIDGE 20 select VIDEOMODE_HELPERS 21 22config DRM_IMX_TVE 23 tristate "Support for TV and VGA displays" 24 depends on DRM_IMX 25 depends on COMMON_CLK 26 select REGMAP_MMIO 27 help 28 Choose this to enable the internal Television Encoder (TVe) 29 found on i.MX53 processors. 30 31config DRM_IMX_LDB 32 tristate "Support for LVDS displays" 33 depends on DRM_IMX 34 depends on COMMON_CLK 35 select MFD_SYSCON 36 select DRM_BRIDGE 37 select DRM_BRIDGE_CONNECTOR 38 select DRM_PANEL_BRIDGE 39 select DRM_IMX_LEGACY_BRIDGE 40 help 41 Choose this to enable the internal LVDS Display Bridge (LDB) 42 found on i.MX53 and i.MX6 processors. 43 44config DRM_IMX_HDMI 45 tristate "Freescale i.MX DRM HDMI" 46 select DRM_DW_HDMI 47 depends on DRM_IMX && OF 48 help 49 Choose this if you want to use HDMI on i.MX6. 50