Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c253948 | 2016-01-21 19:45:03 -0700 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2007 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | c253948 | 2016-01-21 19:45:03 -0700 | [diff] [blame] | 5 | |
eric.gao@rock-chips.com | da10dd1a | 2017-04-17 22:24:24 +0800 | [diff] [blame] | 6 | ifdef CONFIG_VIDEO_ROCKCHIP |
| 7 | obj-y += rk_vop.o |
Philipp Tomsich | d46d404 | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 8 | obj-$(CONFIG_ROCKCHIP_RK3288) += rk3288_vop.o |
Philipp Tomsich | cc75afc | 2017-05-31 17:59:31 +0200 | [diff] [blame] | 9 | obj-$(CONFIG_ROCKCHIP_RK3399) += rk3399_vop.o |
eric.gao@rock-chips.com | da10dd1a | 2017-04-17 22:24:24 +0800 | [diff] [blame] | 10 | obj-$(CONFIG_DISPLAY_ROCKCHIP_EDP) += rk_edp.o |
| 11 | obj-$(CONFIG_DISPLAY_ROCKCHIP_LVDS) += rk_lvds.o |
Philipp Tomsich | 147fd3a | 2017-05-31 17:59:33 +0200 | [diff] [blame] | 12 | obj-hdmi-$(CONFIG_ROCKCHIP_RK3288) += rk3288_hdmi.o |
Philipp Tomsich | ca562b6 | 2017-05-31 17:59:34 +0200 | [diff] [blame] | 13 | obj-hdmi-$(CONFIG_ROCKCHIP_RK3399) += rk3399_hdmi.o |
Philipp Tomsich | 147fd3a | 2017-05-31 17:59:33 +0200 | [diff] [blame] | 14 | obj-$(CONFIG_DISPLAY_ROCKCHIP_HDMI) += rk_hdmi.o $(obj-hdmi-y) |
eric.gao@rock-chips.com | fcc1d05 | 2017-06-21 11:22:02 +0800 | [diff] [blame] | 15 | obj-mipi-$(CONFIG_ROCKCHIP_RK3288) += rk3288_mipi.o |
eric.gao@rock-chips.com | e9037fb | 2017-06-21 11:20:34 +0800 | [diff] [blame] | 16 | obj-mipi-$(CONFIG_ROCKCHIP_RK3399) += rk3399_mipi.o |
| 17 | obj-$(CONFIG_DISPLAY_ROCKCHIP_MIPI) += rk_mipi.o $(obj-mipi-y) |
eric.gao@rock-chips.com | da10dd1a | 2017-04-17 22:24:24 +0800 | [diff] [blame] | 18 | endif |