blob: 92b06955936d043a2325bc5403e8ddc7193fb9a4 [file] [log] [blame]
Patrice Chotard2f329792017-02-21 13:37:12 +01001/*
2 * Board init file for STiH410-B2260
3 *
4 * (C) Copyright 2017 Patrice Chotard <patrice.chotard@st.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10
11DECLARE_GLOBAL_DATA_PTR;
12
13int dram_init(void)
14{
15 gd->ram_size = PHYS_SDRAM_1_SIZE;
16 return 0;
17}
18
Simon Glass2f949c32017-03-31 08:40:32 -060019int dram_init_banksize(void)
Patrice Chotard2f329792017-02-21 13:37:12 +010020{
21 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
22 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
Simon Glass2f949c32017-03-31 08:40:32 -060023
24 return 0;
Patrice Chotard2f329792017-02-21 13:37:12 +010025}
26
Patrice Chotard411b3fc2017-03-20 15:21:36 +010027#ifndef CONFIG_SYS_DCACHE_OFF
28void enable_caches(void)
29{
30 /* Enable D-cache. I-cache is already enabled in start.S */
31 dcache_enable();
32}
33#endif
34
Patrice Chotard2f329792017-02-21 13:37:12 +010035int board_init(void)
36{
37 return 0;
38}