mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
cc75afc5d7
This commit adds a driver for the RK3399 VOPs capable and all the necessary plumbing to feed the HDMI encoder. For the VOP-big, this correctly tracks the ability to feed 10bit RGB data to the encoder. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
16 lines
463 B
Makefile
16 lines
463 B
Makefile
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_VIDEO_ROCKCHIP
|
|
obj-y += rk_vop.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3288) += rk3288_vop.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3399) += rk3399_vop.o
|
|
obj-$(CONFIG_DISPLAY_ROCKCHIP_EDP) += rk_edp.o
|
|
obj-$(CONFIG_DISPLAY_ROCKCHIP_LVDS) += rk_lvds.o
|
|
obj-$(CONFIG_DISPLAY_ROCKCHIP_HDMI) += rk_hdmi.o
|
|
obj-$(CONFIG_DISPLAY_ROCKCHIP_MIPI) += rk_mipi.o
|
|
endif
|