diff options
author | Icenowy Zheng <icenowy@aosc.io> | 2017-05-17 16:47:20 +0200 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2017-06-01 09:49:54 +0200 |
commit | 9d75b8c0b999663d85cddda2791bb15b5f4a8f4a (patch) | |
tree | 1edaf35793cce81ab73f00819d201d508441a630 /drivers/gpu/drm/sun4i/Makefile | |
parent | drm/sun4i: add a Kconfig option for sun4i-backend (diff) | |
download | linux-9d75b8c0b999663d85cddda2791bb15b5f4a8f4a.tar.xz linux-9d75b8c0b999663d85cddda2791bb15b5f4a8f4a.zip |
drm/sun4i: add support for Allwinner DE2 mixers
Allwinner have a new "Display Engine 2.0" in their new SoCs, which comes
with mixers to do graphic processing and feed data to TCON, like the old
backends and frontends.
Add support for the mixer on Allwinner V3s SoC; it's the simplest one.
Currently a lot of functions are still missing -- more investigations
are needed to gain enough information for them.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'drivers/gpu/drm/sun4i/Makefile')
-rw-r--r-- | drivers/gpu/drm/sun4i/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/sun4i/Makefile b/drivers/gpu/drm/sun4i/Makefile index da561d064ab8..7fce97a6f4b8 100644 --- a/drivers/gpu/drm/sun4i/Makefile +++ b/drivers/gpu/drm/sun4i/Makefile @@ -8,8 +8,11 @@ sun4i-tcon-y += sun4i_crtc.o sun4i-backend-y += sun4i_backend.o sun4i_layer.o +sun8i-mixer-y += sun8i_mixer.o sun8i_layer.o + obj-$(CONFIG_DRM_SUN4I) += sun4i-drm.o sun4i-tcon.o obj-$(CONFIG_DRM_SUN4I) += sun6i_drc.o obj-$(CONFIG_DRM_SUN4I) += sun4i_tv.o obj-$(CONFIG_DRM_SUN4I_BACKEND) += sun4i-backend.o +obj-$(CONFIG_DRM_SUN8I_MIXER) += sun8i-mixer.o |