Kconfig 755 B

123456789101112131415161718192021222324252627282930313233
  1. config DRM_PANEL
  2. bool
  3. depends on DRM
  4. help
  5. Panel registration and lookup framework.
  6. menu "Display Panels"
  7. depends on DRM_PANEL
  8. config DRM_PANEL_SIMPLE
  9. tristate "support for simple panels"
  10. depends on OF
  11. help
  12. DRM panel driver for dumb panels that need at most a regulator and
  13. a GPIO to be powered up. Optionally a backlight can be attached so
  14. that it can be automatically turned off when the panel goes into a
  15. low power state.
  16. config DRM_PANEL_LD9040
  17. tristate "LD9040 RGB/SPI panel"
  18. depends on DRM && DRM_PANEL
  19. depends on OF
  20. select SPI
  21. select VIDEOMODE_HELPERS
  22. config DRM_PANEL_S6E8AA0
  23. tristate "S6E8AA0 DSI video mode panel"
  24. depends on DRM && DRM_PANEL
  25. depends on OF
  26. select DRM_MIPI_DSI
  27. select VIDEOMODE_HELPERS
  28. endmenu