Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 && 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 OF && SPI
  19. select VIDEOMODE_HELPERS
  20. config DRM_PANEL_S6E8AA0
  21. tristate "S6E8AA0 DSI video mode panel"
  22. depends on OF
  23. select DRM_MIPI_DSI
  24. select VIDEOMODE_HELPERS
  25. config DRM_PANEL_SHARP_LQ101R1SX01
  26. tristate "Sharp LQ101R1SX01 panel"
  27. depends on OF
  28. depends on DRM_MIPI_DSI
  29. help
  30. Say Y here if you want to enable support for Sharp LQ101R1SX01
  31. TFT-LCD modules. The panel has a 2560x1600 resolution and uses
  32. 24 bit RGB per pixel. It provides a dual MIPI DSI interface to
  33. the host and has a built-in LED backlight.
  34. To compile this driver as a module, choose M here: the module
  35. will be called panel-sharp-lq101r1sx01.
  36. endmenu