21 lines
		
	
	
		
			613 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			613 B
		
	
	
	
		
			Makefile
		
	
	
	
| #
 | |
| # (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
 |