mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-01 22:07:21 +00:00
To prepare for the addition of RK3399 HDMI support, the HDMI driver is refactored and broken into a chip-specific and a generic part. This change adds the internal interfaces, makes common/reusable functions externally visible and splits the RK3288 driver into a separate file. For the probing of regulators, we reuse the infrastructure created during the VOP refactoring... i.e. we simply call into the helper function defined for the VOP. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
17 lines
529 B
Makefile
17 lines
529 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-hdmi-$(CONFIG_ROCKCHIP_RK3288) += rk3288_hdmi.o
|
|
obj-$(CONFIG_DISPLAY_ROCKCHIP_HDMI) += rk_hdmi.o $(obj-hdmi-y)
|
|
obj-$(CONFIG_DISPLAY_ROCKCHIP_MIPI) += rk_mipi.o
|
|
endif
|