hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# (C) Copyright 2018 Rockchip Electronics Co., Ltd.
#
# SPDX-License-Identifier:    GPL-2.0+
#
 
# We don't want the bootrom-helper present in a full U-Boot build, as
# this may have entered from ATF with the stack-pointer pointing to
# inaccessible/protected memory (and the bootrom-helper assumes that
# the stack-pointer is valid before switching to the U-Boot stack).
 
ifdef CONFIG_ROCKCHIP_PX30
obj-$(CONFIG_CMD_DDR_TEST) = ddr_test_px30.o
endif
ifdef CONFIG_ROCKCHIP_RK1808
obj-$(CONFIG_CMD_DDR_TEST) = ddr_test_rk1808.o
endif
ifdef CONFIG_ROCKCHIP_RK3328
obj-$(CONFIG_CMD_DDR_TEST) = ddr_test_rk3328.o
endif