]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-uniphier/dram_init.c
Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800
[karo-tx-uboot.git] / arch / arm / mach-uniphier / dram_init.c
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 }