mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 14:38:02 +07:00
f300c86e33
I want to sort out support for tinydrm in vc4, so I needed to get a tinydrm-appropriate panel working and this is what I had on hand. This is derived from a combination of ili9341.c from tinydrm and fb_hx8357d.c from staging's fbtft. v2: Write my own register defs from the spec to not need the header from fbtft. Fix spi device string to enable module autoloading. (Suggestions by Noralf) Signed-off-by: Eric Anholt <eric@anholt.net> Link: https://patchwork.freedesktop.org/patch/msgid/20181024184313.2967-3-eric@anholt.net Reviewed-by: Noralf Trønnes <noralf@tronnes.org> (v1)
14 lines
417 B
Makefile
14 lines
417 B
Makefile
obj-$(CONFIG_DRM_TINYDRM) += core/
|
|
|
|
# Controllers
|
|
obj-$(CONFIG_TINYDRM_MIPI_DBI) += mipi-dbi.o
|
|
|
|
# Displays
|
|
obj-$(CONFIG_TINYDRM_HX8357D) += hx8357d.o
|
|
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
|