mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 13:47:14 +07:00
ff21993776
The patch adds LD9040 parallel RGB panel driver with SPI control interface. The driver uses drm_panel framework. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
27 lines
597 B
Plaintext
27 lines
597 B
Plaintext
config DRM_PANEL
|
|
bool
|
|
depends on DRM
|
|
help
|
|
Panel registration and lookup framework.
|
|
|
|
menu "Display Panels"
|
|
depends on DRM_PANEL
|
|
|
|
config DRM_PANEL_SIMPLE
|
|
tristate "support for simple panels"
|
|
depends on OF
|
|
help
|
|
DRM panel driver for dumb panels that need at most a regulator and
|
|
a GPIO to be powered up. Optionally a backlight can be attached so
|
|
that it can be automatically turned off when the panel goes into a
|
|
low power state.
|
|
|
|
config DRM_PANEL_LD9040
|
|
tristate "LD9040 RGB/SPI panel"
|
|
depends on DRM && DRM_PANEL
|
|
depends on OF
|
|
select SPI
|
|
select VIDEOMODE_HELPERS
|
|
|
|
endmenu
|