xref: /rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram_init.c (revision a7c3d5e2a9f4d0feb1e21733434e6d29f5ac566b)
1 /*
2  * Copyright (C) 2012-2015 Panasonic Corporation
3  *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 
10 int dram_init(void)
11 {
12 	DECLARE_GLOBAL_DATA_PTR;
13 	gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
14 
15 	return 0;
16 }
17