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