xref: /rk3399_rockchip-uboot/drivers/ram/rockchip/sdram_rk3506.c (revision 85e5c21076b78fe71b961926fac1aa66a345c2bf)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * (C) Copyright 2024 Rockchip Electronics Co., Ltd.
4  */
5 
6 #include <common.h>
7 
8 #ifdef CONFIG_TPL_BUILD
9 #ifndef CONFIG_TPL_TINY_FRAMEWORK
10 #error please defined CONFIG_TPL_TINY_FRAMEWORK for RK3506 !!!
11 #endif
12 #endif
13 
14 #ifdef CONFIG_TPL_BUILD
15 
16 /* return: 0 = success, other = fail */
sdram_init(void)17 int sdram_init(void)
18 {
19 	return (-1);
20 }
21 #endif /* CONFIG_TPL_BUILD */
22