Skip to content

Commit 5a04227

Browse files
dillon-minlinusw
authored andcommitted
drm/panel: Add ilitek ili9341 panel driver
This driver combines tiny/ili9341.c mipi_dbi_interface driver with mipi_dpi_interface driver, can support ili9341 with serial mode and parallel rgb interface mode by different dts bindings. Signed-off-by: Dillon Min <[email protected]> Reported-by: kernel test robot <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Reviewed-by: Jagan Teki <[email protected]> Signed-off-by: Linus Walleij <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 7dbdce8 commit 5a04227

File tree

3 files changed

+805
-0
lines changed

3 files changed

+805
-0
lines changed

drivers/gpu/drm/panel/Kconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,18 @@ config DRM_PANEL_ILITEK_IL9322
125125
Say Y here if you want to enable support for Ilitek IL9322
126126
QVGA (320x240) RGB, YUV and ITU-T BT.656 panels.
127127

128+
config DRM_PANEL_ILITEK_ILI9341
129+
tristate "Ilitek ILI9341 240x320 QVGA panels"
130+
depends on OF && SPI
131+
depends on DRM_KMS_HELPER
132+
depends on DRM_KMS_CMA_HELPER
133+
depends on BACKLIGHT_CLASS_DEVICE
134+
select DRM_MIPI_DBI
135+
help
136+
Say Y here if you want to enable support for Ilitek IL9341
137+
QVGA (240x320) RGB panels. support serial & parallel rgb
138+
interface.
139+
128140
config DRM_PANEL_ILITEK_ILI9881C
129141
tristate "Ilitek ILI9881C-based panels"
130142
depends on OF

drivers/gpu/drm/panel/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ obj-$(CONFIG_DRM_PANEL_ELIDA_KD35T133) += panel-elida-kd35t133.o
1111
obj-$(CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02) += panel-feixin-k101-im2ba02.o
1212
obj-$(CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D) += panel-feiyang-fy07024di26a30d.o
1313
obj-$(CONFIG_DRM_PANEL_ILITEK_IL9322) += panel-ilitek-ili9322.o
14+
obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9341) += panel-ilitek-ili9341.o
1415
obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9881C) += panel-ilitek-ili9881c.o
1516
obj-$(CONFIG_DRM_PANEL_INNOLUX_EJ030NA) += panel-innolux-ej030na.o
1617
obj-$(CONFIG_DRM_PANEL_INNOLUX_P079ZCA) += panel-innolux-p079zca.o

0 commit comments

Comments
 (0)