Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config 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. config DRM_IMX_PARALLEL_DISPLAY
  12. tristate "Support for parallel displays"
  13. select DRM_PANEL
  14. depends on DRM_IMX
  15. select VIDEOMODE_HELPERS
  16. config DRM_IMX_TVE
  17. tristate "Support for TV and VGA displays"
  18. depends on DRM_IMX
  19. depends on COMMON_CLK
  20. select REGMAP_MMIO
  21. help
  22. Choose this to enable the internal Television Encoder (TVe)
  23. found on i.MX53 processors.
  24. config DRM_IMX_LDB
  25. tristate "Support for LVDS displays"
  26. depends on DRM_IMX && MFD_SYSCON
  27. depends on COMMON_CLK
  28. select DRM_PANEL
  29. help
  30. Choose this to enable the internal LVDS Display Bridge (LDB)
  31. found on i.MX53 and i.MX6 processors.
  32. config DRM_IMX_HDMI
  33. tristate "Freescale i.MX DRM HDMI"
  34. select DRM_DW_HDMI
  35. depends on DRM_IMX && OF
  36. help
  37. Choose this if you want to use HDMI on i.MX6.
  38. source "drivers/gpu/drm/imx/dcss/Kconfig"