Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 2 | # |
| 3 | # Copyright (c) 2014 Google, Inc |
Kever Yang | c9ec5fe | 2019-09-02 15:59:04 +0800 | [diff] [blame^] | 4 | # Copyright (c) 2019 Rockchip Electronics Co., Ltd. |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 5 | |
Philipp Tomsich | 832567d | 2017-07-04 14:38:28 +0200 | [diff] [blame] | 6 | # We don't want the bootrom-helper present in a full U-Boot build, as |
| 7 | # this may have entered from ATF with the stack-pointer pointing to |
| 8 | # inaccessible/protected memory (and the bootrom-helper assumes that |
| 9 | # the stack-pointer is valid before switching to the U-Boot stack). |
Philipp Tomsich | ecfd718 | 2017-10-10 16:21:14 +0200 | [diff] [blame] | 10 | obj-spl-$(CONFIG_ROCKCHIP_BROM_HELPER) += bootrom.o |
Kever Yang | 49105fb | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 11 | obj-spl-$(CONFIG_SPL_ROCKCHIP_COMMON_BOARD) += spl.o spl-boot-order.o |
Philipp Tomsich | ecfd718 | 2017-10-10 16:21:14 +0200 | [diff] [blame] | 12 | obj-tpl-$(CONFIG_ROCKCHIP_BROM_HELPER) += bootrom.o |
Kever Yang | 18f8508 | 2019-07-09 22:05:55 +0800 | [diff] [blame] | 13 | obj-tpl-$(CONFIG_TPL_ROCKCHIP_COMMON_BOARD) += tpl.o |
Simon Glass | e1bc64e | 2017-04-15 13:11:31 -0600 | [diff] [blame] | 14 | |
Philipp Tomsich | 832567d | 2017-07-04 14:38:28 +0200 | [diff] [blame] | 15 | obj-spl-$(CONFIG_ROCKCHIP_RK3036) += rk3036-board-spl.o |
Philipp Tomsich | 832567d | 2017-07-04 14:38:28 +0200 | [diff] [blame] | 16 | |
| 17 | ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),) |
Andy Yan | e306779 | 2017-10-11 15:00:16 +0800 | [diff] [blame] | 18 | |
Philipp Tomsich | f07d76c | 2017-11-24 14:44:58 +0100 | [diff] [blame] | 19 | # Always include boot_mode.o, as we bypass it (i.e. turn it off) |
| 20 | # inside of boot_mode.c when CONFIG_BOOT_MODE_REG is 0. This way, |
| 21 | # we can have the preprocessor correctly recognise both 0x0 and 0 |
| 22 | # meaning "turn it off". |
Andy Yan | e306779 | 2017-10-11 15:00:16 +0800 | [diff] [blame] | 23 | obj-y += boot_mode.o |
Kever Yang | 54f17fa | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 24 | obj-$(CONFIG_ROCKCHIP_COMMON_BOARD) += board.o |
Kever Yang | c9ec5fe | 2019-09-02 15:59:04 +0800 | [diff] [blame^] | 25 | obj-$(CONFIG_MISC_INIT_R) += misc.o |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 26 | endif |
Philipp Tomsich | 832567d | 2017-07-04 14:38:28 +0200 | [diff] [blame] | 27 | |
| 28 | obj-$(CONFIG_$(SPL_TPL_)RAM) += sdram_common.o |
| 29 | |
huang lin | be1d5e0 | 2015-11-17 14:20:27 +0800 | [diff] [blame] | 30 | obj-$(CONFIG_ROCKCHIP_RK3036) += rk3036/ |
Kever Yang | daeed1d | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 31 | obj-$(CONFIG_ROCKCHIP_RK3128) += rk3128/ |
Philipp Tomsich | 96b9082 | 2017-08-03 22:52:04 +0200 | [diff] [blame] | 32 | obj-$(CONFIG_ROCKCHIP_RK3188) += rk3188/ |
Kever Yang | 168eef7 | 2017-06-23 17:17:52 +0800 | [diff] [blame] | 33 | obj-$(CONFIG_ROCKCHIP_RK322X) += rk322x/ |
Heiko Stübner | 041cdb5 | 2016-07-16 00:17:15 +0200 | [diff] [blame] | 34 | obj-$(CONFIG_ROCKCHIP_RK3288) += rk3288/ |
Kever Yang | 85a3cfb | 2017-02-23 15:37:51 +0800 | [diff] [blame] | 35 | obj-$(CONFIG_ROCKCHIP_RK3328) += rk3328/ |
Andreas Färber | 37a0c60 | 2017-05-15 17:51:18 +0800 | [diff] [blame] | 36 | obj-$(CONFIG_ROCKCHIP_RK3368) += rk3368/ |
Kever Yang | a381bcf | 2016-07-19 21:16:59 +0800 | [diff] [blame] | 37 | obj-$(CONFIG_ROCKCHIP_RK3399) += rk3399/ |
Andy Yan | 2c1e11d | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 38 | obj-$(CONFIG_ROCKCHIP_RV1108) += rv1108/ |
Philipp Tomsich | 832567d | 2017-07-04 14:38:28 +0200 | [diff] [blame] | 39 | |
| 40 | # Clear out SPL objects, in case this is a TPL build |
| 41 | obj-spl-$(CONFIG_TPL_BUILD) = |
| 42 | |
| 43 | # Now add SPL/TPL objects back into the main build |
| 44 | obj-$(CONFIG_SPL_BUILD) += $(obj-spl-y) |
| 45 | obj-$(CONFIG_TPL_BUILD) += $(obj-tpl-y) |