Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1config DRM_PANEL
2 bool
3 depends on DRM
4 help
5 Panel registration and lookup framework.
6
7menu "Display Panels"
8 depends on DRM && DRM_PANEL
9
10config DRM_PANEL_SIMPLE
11 tristate "support for simple panels"
12 depends on OF
13 depends on BACKLIGHT_CLASS_DEVICE
14 select VIDEOMODE_HELPERS
15 help
16 DRM panel driver for dumb panels that need at most a regulator and
17 a GPIO to be powered up. Optionally a backlight can be attached so
18 that it can be automatically turned off when the panel goes into a
19 low power state.
20
21config DRM_PANEL_LD9040
22 tristate "LD9040 RGB/SPI panel"
23 depends on OF && SPI
24 select VIDEOMODE_HELPERS
25
26config DRM_PANEL_S6E8AA0
27 tristate "S6E8AA0 DSI video mode panel"
28 depends on OF
29 select DRM_MIPI_DSI
30 select VIDEOMODE_HELPERS
31
32config DRM_PANEL_SHARP_LQ101R1SX01
33 tristate "Sharp LQ101R1SX01 panel"
34 depends on OF
35 depends on DRM_MIPI_DSI
36 depends on BACKLIGHT_CLASS_DEVICE
37 help
38 Say Y here if you want to enable support for Sharp LQ101R1SX01
39 TFT-LCD modules. The panel has a 2560x1600 resolution and uses
40 24 bit RGB per pixel. It provides a dual MIPI DSI interface to
41 the host and has a built-in LED backlight.
42
43 To compile this driver as a module, choose M here: the module
44 will be called panel-sharp-lq101r1sx01.
45
46endmenu