Skip to content

Commit 7ce7264

Browse files
committed
drm: tiny: Add support for Mayqueen Pixpaper e-ink panel
Introduce a DRM driver for the Mayqueen PIxpaper e-ink display panel, which iscontrolled via SPI. The driver supports a 122x250 resolution display with XRGB8888 format, using the DRM simple KMS helper framework. Signed-off-by: LiangCheng Wang <zaq14760@gmail.com>
1 parent 37a8d71 commit 7ce7264

File tree

3 files changed

+766
-0
lines changed

3 files changed

+766
-0
lines changed

drivers/gpu/drm/tiny/Kconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,3 +199,15 @@ config TINYDRM_SHARP_MEMORY
199199
* 4.40" Sharp Memory LCD (LS044Q7DH01)
200200

201201
If M is selected the module will be called sharp_memory.
202+
203+
config DRM_PIXPAPER
204+
tristate "DRM support for PIXPAPER display panels"
205+
depends on DRM && SPI
206+
select DRM_KMS_HELPER
207+
select DRM_GEM_CMA_HELPER
208+
select DRM_CLIENT_SELECTION
209+
help
210+
DRM driver for the following PIXPAPER panels
211+
212+
If M is selected the module will be called pixpaper .
213+

drivers/gpu/drm/tiny/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ obj-$(CONFIG_TINYDRM_ILI9486) += ili9486.o
1414
obj-$(CONFIG_TINYDRM_MI0283QT) += mi0283qt.o
1515
obj-$(CONFIG_TINYDRM_REPAPER) += repaper.o
1616
obj-$(CONFIG_TINYDRM_SHARP_MEMORY) += sharp-memory.o
17+
obj-$(CONFIG_DRM_PIXPAPER) += pixpaper.o

0 commit comments

Comments
 (0)