mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 20:36:49 +07:00
3fa0e8f6f9
This adds a new driver for display panels that use the Ilitek ILI9341 controller. It currently supports a single display panel, namely the YX240QV29-T (e.g. Adafruit 2.4" TFT). The init sequence is from the Adafruit Python library for the ILI9341 controller. https://github.com/adafruit/Adafruit_Python_ILI9341 Signed-off-by: David Lechner <david@lechnology.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Reviewed-by: Noralf Trønnes <noralf@tronnes.org> Link: https://patchwork.freedesktop.org/patch/msgid/20180525193623.15533-5-david@lechnology.com
13 lines
373 B
Makefile
13 lines
373 B
Makefile
obj-$(CONFIG_DRM_TINYDRM) += core/
|
|
|
|
# Controllers
|
|
obj-$(CONFIG_TINYDRM_MIPI_DBI) += mipi-dbi.o
|
|
|
|
# Displays
|
|
obj-$(CONFIG_TINYDRM_ILI9225) += ili9225.o
|
|
obj-$(CONFIG_TINYDRM_ILI9341) += ili9341.o
|
|
obj-$(CONFIG_TINYDRM_MI0283QT) += mi0283qt.o
|
|
obj-$(CONFIG_TINYDRM_REPAPER) += repaper.o
|
|
obj-$(CONFIG_TINYDRM_ST7586) += st7586.o
|
|
obj-$(CONFIG_TINYDRM_ST7735R) += st7735r.o
|