u-boot-brain/arch/arm/mach-rockchip/rk3128/rk3128.c
Kever Yang 5eb9a78fcd rockchip: sdram_common: add common dram_init_banksize
dram_init_banksize() can be common used by all SoCs, move it into
sdram_common.c

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
2019-07-29 10:26:28 +08:00

15 lines
228 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2017 Rockchip Electronics Co., Ltd
*/
#include <common.h>
DECLARE_GLOBAL_DATA_PTR;
int arch_cpu_init(void)
{
/* We do some SoC one time setting here. */
return 0;
}