drm: add support Sharp Brain 2nd generation SubLCD

This commit is contained in:
Suguru Saito 2021-10-03 20:52:12 +09:00 committed by Takumi Sueda
parent ec75fd1c93
commit c0654c3cde
2 changed files with 13 additions and 0 deletions

View File

@ -108,6 +108,18 @@ config TINYDRM_ST7586
If M is selected the module will be called st7586.
config TINYDRM_BRAIN_ST7586
tristate "DRM support for Sitronix ST7586 display panels on Sharp Brain"
depends on DRM && SPI
select DRM_KMS_HELPER
select DRM_KMS_CMA_HELPER
select DRM_MIPI_DBI
help
DRM driver for the following Sitronix ST7586 panels:
* Sharp Brain 240x120 LCD
If M is selected the module will be called brain-st7586.
config TINYDRM_ST7735R
tristate "DRM support for Sitronix ST7735R display panels"
depends on DRM && SPI

View File

@ -9,4 +9,5 @@ obj-$(CONFIG_TINYDRM_BRAIN_2G) += brain-lq050j1ug01.o
obj-$(CONFIG_TINYDRM_MI0283QT) += mi0283qt.o
obj-$(CONFIG_TINYDRM_REPAPER) += repaper.o
obj-$(CONFIG_TINYDRM_ST7586) += st7586.o
obj-$(CONFIG_TINYDRM_BRAIN_ST7586) += brain-st7586.o
obj-$(CONFIG_TINYDRM_ST7735R) += st7735r.o