Kconfig 650 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Exynos Video configuration
  3. #
  4. menuconfig EXYNOS_VIDEO
  5. bool "Exynos Video driver support"
  6. depends on ARCH_S5PV210 || ARCH_EXYNOS
  7. help
  8. This enables support for EXYNOS Video device.
  9. if EXYNOS_VIDEO
  10. #
  11. # MIPI DSI driver
  12. #
  13. config EXYNOS_MIPI_DSI
  14. bool "EXYNOS MIPI DSI driver support."
  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
  21. depends on (LCD_CLASS_DEVICE = y)
  22. default n
  23. help
  24. If you have an S6E8AX0 MIPI AMOLED LCD Panel, say Y to enable its
  25. LCD control driver.
  26. endif # EXYNOS_VIDEO