blob: aed379a0dc62571fed81b69cf83dcc6b24ab51c1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass2cffe662015-08-30 16:55:38 -06002#
3# Copyright (c) 2014 Google, Inc
Simon Glass2cffe662015-08-30 16:55:38 -06004
Philipp Tomsich5e58afe2017-07-04 14:38:28 +02005# We don't want the bootrom-helper present in a full U-Boot build, as
6# this may have entered from ATF with the stack-pointer pointing to
7# inaccessible/protected memory (and the bootrom-helper assumes that
8# the stack-pointer is valid before switching to the U-Boot stack).
Philipp Tomsich39bf18d2017-10-10 16:21:14 +02009obj-spl-$(CONFIG_ROCKCHIP_BROM_HELPER) += bootrom.o
Kever Yang1d7cc72a2019-07-22 19:59:12 +080010obj-spl-$(CONFIG_SPL_ROCKCHIP_COMMON_BOARD) += spl.o spl-boot-order.o
Philipp Tomsich39bf18d2017-10-10 16:21:14 +020011obj-tpl-$(CONFIG_ROCKCHIP_BROM_HELPER) += bootrom.o
Kever Yang34ead0f2019-07-09 22:05:55 +080012obj-tpl-$(CONFIG_TPL_ROCKCHIP_COMMON_BOARD) += tpl.o
Philipp Tomsich5e58afe2017-07-04 14:38:28 +020013
Philipp Tomsich5e58afe2017-07-04 14:38:28 +020014obj-spl-$(CONFIG_ROCKCHIP_RK3036) += rk3036-board-spl.o
Simon Glassef0ab852017-04-15 13:11:31 -060015
Philipp Tomsich5e58afe2017-07-04 14:38:28 +020016ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),)
Andy Yan70378cb2017-10-11 15:00:16 +080017
Philipp Tomsich3a0df082017-11-24 14:44:58 +010018# Always include boot_mode.o, as we bypass it (i.e. turn it off)
19# inside of boot_mode.c when CONFIG_BOOT_MODE_REG is 0. This way,
20# we can have the preprocessor correctly recognise both 0x0 and 0
21# meaning "turn it off".
Andy Yan70378cb2017-10-11 15:00:16 +080022obj-y += boot_mode.o
Kever Yangbb337732019-07-22 20:02:01 +080023obj-$(CONFIG_ROCKCHIP_COMMON_BOARD) += board.o
Simon Glass2cffe662015-08-30 16:55:38 -060024endif
Philipp Tomsich5e58afe2017-07-04 14:38:28 +020025
26obj-$(CONFIG_$(SPL_TPL_)RAM) += sdram_common.o
27
Philipp Tomsich5e58afe2017-07-04 14:38:28 +020028obj-$(CONFIG_ROCKCHIP_RK3036) += rk3036/
Kever Yangaa827752017-11-28 16:04:16 +080029obj-$(CONFIG_ROCKCHIP_RK3128) += rk3128/
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +020030ifndef CONFIG_TPL_BUILD
31obj-$(CONFIG_ROCKCHIP_RK3188) += rk3188/
32endif
Kever Yang57d4dbf2017-06-23 17:17:52 +080033obj-$(CONFIG_ROCKCHIP_RK322X) += rk322x/
Heiko Stübner5c91e2b2016-07-16 00:17:15 +020034obj-$(CONFIG_ROCKCHIP_RK3288) += rk3288/
Kever Yangec02b3c2017-02-23 15:37:51 +080035obj-$(CONFIG_ROCKCHIP_RK3328) += rk3328/
Andreas Färber9e3ad682017-05-15 17:51:18 +080036obj-$(CONFIG_ROCKCHIP_RK3368) += rk3368/
Kever Yang0d3d7832016-07-19 21:16:59 +080037obj-$(CONFIG_ROCKCHIP_RK3399) += rk3399/
Andy Yan2d982da2017-06-01 18:00:55 +080038obj-$(CONFIG_ROCKCHIP_RV1108) += rv1108/
Philipp Tomsich5e58afe2017-07-04 14:38:28 +020039
40# Clear out SPL objects, in case this is a TPL build
41obj-spl-$(CONFIG_TPL_BUILD) =
42
43# Now add SPL/TPL objects back into the main build
44obj-$(CONFIG_SPL_BUILD) += $(obj-spl-y)
45obj-$(CONFIG_TPL_BUILD) += $(obj-tpl-y)