Skip to content

Commit c9e7063

Browse files
lc-wangtdz
authored andcommitted
drm: tiny: Add support for Mayqueen Pixpaper e-ink panel
Introduce a DRM driver for the Mayqueen Pixpaper e-ink display panel, which is controlled via SPI. The driver supports a 122x250 resolution display with XRGB8888 format. Also, add a MAINTAINERS entry for the Pixpaper driver. Signed-off-by: LiangCheng Wang <zaq14760@gmail.com> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Link: https://lore.kernel.org/r/20250902-drm-v5-3-d77c678c4ae3@gmail.com
1 parent d309c5f commit c9e7063

File tree

4 files changed

+1188
-0
lines changed

4 files changed

+1188
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7877,6 +7877,13 @@ T: git https://gitlab.freedesktop.org/drm/misc/kernel.git
78777877
F: Documentation/devicetree/bindings/display/repaper.txt
78787878
F: drivers/gpu/drm/tiny/repaper.c
78797879

7880+
DRM DRIVER FOR PIXPAPER E-INK PANEL
7881+
M: LiangCheng Wang <zaq14760@gmail.com>
7882+
L: dri-devel@lists.freedesktop.org
7883+
S: Maintained
7884+
F: Documentation/devicetree/bindings/display/mayqueen,pixpaper.yaml
7885+
F: drivers/gpu/drm/tiny/pixpaper.c
7886+
78807887
DRM DRIVER FOR QEMU'S CIRRUS DEVICE
78817888
M: Dave Airlie <airlied@redhat.com>
78827889
M: Gerd Hoffmann <kraxel@redhat.com>

drivers/gpu/drm/tiny/Kconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,21 @@ config DRM_PANEL_MIPI_DBI
8282
https://github.com/notro/panel-mipi-dbi/wiki.
8383
To compile this driver as a module, choose M here.
8484

85+
config DRM_PIXPAPER
86+
tristate "DRM support for PIXPAPER display panels"
87+
depends on DRM && SPI
88+
select DRM_CLIENT_SELECTION
89+
select DRM_GEM_DMA_HELPER
90+
select DRM_KMS_HELPER
91+
help
92+
DRM driver for the Mayqueen Pixpaper e-ink display panel.
93+
94+
This driver supports small e-paper displays connected over SPI,
95+
with a resolution of 122x250 and XRGB8888 framebuffer format.
96+
It is intended for low-power embedded applications.
97+
98+
If M is selected, the module will be built as pixpaper.ko.
99+
85100
config TINYDRM_HX8357D
86101
tristate "DRM support for HX8357D display panels"
87102
depends on DRM && SPI

drivers/gpu/drm/tiny/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ obj-$(CONFIG_DRM_BOCHS) += bochs.o
66
obj-$(CONFIG_DRM_CIRRUS_QEMU) += cirrus-qemu.o
77
obj-$(CONFIG_DRM_GM12U320) += gm12u320.o
88
obj-$(CONFIG_DRM_PANEL_MIPI_DBI) += panel-mipi-dbi.o
9+
obj-$(CONFIG_DRM_PIXPAPER) += pixpaper.o
910
obj-$(CONFIG_TINYDRM_HX8357D) += hx8357d.o
1011
obj-$(CONFIG_TINYDRM_ILI9163) += ili9163.o
1112
obj-$(CONFIG_TINYDRM_ILI9225) += ili9225.o

0 commit comments

Comments
 (0)