mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 10:37:51 +07:00
dd0421f475
The display frontend is an hardware block that can be used to implement some more advanced features like hardware scaling or colorspace conversions. It can also be used to implement the output format of the VPU. Let's create a minimal driver for it that will only enable the hardware scaling features. Reviewed-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Link: https://patchwork.freedesktop.org/patch/msgid/029cdc3478bf89d422f5e8d9e600baf5e48ce4db.1516613040.git-series.maxime.ripard@free-electrons.com
31 lines
972 B
Makefile
31 lines
972 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
sun4i-backend-y += sun4i_backend.o sun4i_layer.o
|
|
sun4i-frontend-y += sun4i_frontend.o
|
|
|
|
sun4i-drm-y += sun4i_drv.o
|
|
sun4i-drm-y += sun4i_framebuffer.o
|
|
|
|
sun4i-drm-hdmi-y += sun4i_hdmi_ddc_clk.o
|
|
sun4i-drm-hdmi-y += sun4i_hdmi_enc.o
|
|
sun4i-drm-hdmi-y += sun4i_hdmi_i2c.o
|
|
sun4i-drm-hdmi-y += sun4i_hdmi_tmds_clk.o
|
|
|
|
sun8i-mixer-y += sun8i_mixer.o sun8i_ui_layer.o \
|
|
sun8i_vi_layer.o sun8i_ui_scaler.o \
|
|
sun8i_vi_scaler.o sun8i_csc.o
|
|
|
|
sun4i-tcon-y += sun4i_crtc.o
|
|
sun4i-tcon-y += sun4i_dotclock.o
|
|
sun4i-tcon-y += sun4i_lvds.o
|
|
sun4i-tcon-y += sun4i_tcon.o
|
|
sun4i-tcon-y += sun4i_rgb.o
|
|
|
|
obj-$(CONFIG_DRM_SUN4I) += sun4i-drm.o
|
|
obj-$(CONFIG_DRM_SUN4I) += sun4i-tcon.o
|
|
obj-$(CONFIG_DRM_SUN4I) += sun4i_tv.o
|
|
obj-$(CONFIG_DRM_SUN4I) += sun6i_drc.o
|
|
|
|
obj-$(CONFIG_DRM_SUN4I_BACKEND) += sun4i-backend.o sun4i-frontend.o
|
|
obj-$(CONFIG_DRM_SUN4I_HDMI) += sun4i-drm-hdmi.o
|
|
obj-$(CONFIG_DRM_SUN8I_MIXER) += sun8i-mixer.o
|