Kconfig 774 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # Exynos Video configuration
  3. #
  4. menuconfig EXYNOS_VIDEO
  5. bool "Exynos Video driver support"
  6. help
  7. This enables support for EXYNOS Video device.
  8. if EXYNOS_VIDEO
  9. #
  10. # MIPI DSI driver
  11. #
  12. config EXYNOS_MIPI_DSI
  13. bool "EXYNOS MIPI DSI driver support."
  14. depends on ARCH_S5PV210 || ARCH_EXYNOS
  15. select GENERIC_PHY
  16. help
  17. This enables support for MIPI-DSI device.
  18. config EXYNOS_LCD_S6E8AX0
  19. bool "S6E8AX0 MIPI AMOLED LCD Driver"
  20. depends on (EXYNOS_MIPI_DSI && BACKLIGHT_CLASS_DEVICE && LCD_CLASS_DEVICE)
  21. default n
  22. help
  23. If you have an S6E8AX0 MIPI AMOLED LCD Panel, say Y to enable its
  24. LCD control driver.
  25. config EXYNOS_DP
  26. bool "EXYNOS DP driver support"
  27. depends on OF && ARCH_EXYNOS
  28. default n
  29. help
  30. This enables support for DP device.
  31. endif # EXYNOS_VIDEO