diff options
author | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2014-07-30 19:28:27 +0200 |
---|---|---|
committer | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2014-07-30 19:28:27 +0200 |
commit | d219673d8437ff1073c11d30ac496fa42b09662c (patch) | |
tree | 08bef22f55cfaeea4b3f3c12e3421547ed1f490f /drivers/gpu/drm/sti/Makefile | |
parent | e21e21939ce0031c11605cc4a7fed83c8ed42b52 (diff) |
drm: sti: add Compositor
Compositor control all the input sub-device (VID, GDP)
and the mixer(s).
It is the main entry point for composition.
Layer interface is used to control the abstracted layers.
Add debug in mixer and GDP.
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/sti/Makefile')
-rw-r--r-- | drivers/gpu/drm/sti/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sti/Makefile b/drivers/gpu/drm/sti/Makefile index 4a3a8168c30e..c5838f20f122 100644 --- a/drivers/gpu/drm/sti/Makefile +++ b/drivers/gpu/drm/sti/Makefile @@ -1,7 +1,9 @@ sticompositor-y := \ + sti_layer.o \ sti_mixer.o \ sti_gdp.o \ - sti_vid.o + sti_vid.o \ + sti_compositor.o stihdmi-y := sti_hdmi.o \ sti_hdmi_tx3g0c55phy.o \ |