]> git.sur5r.net Git - u-boot/blob - board/st/stih410-b2260/board.c
board: Add STMicroelectronics STiH410-B2260 support
[u-boot] / board / st / stih410-b2260 / board.c
1 /*
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
11 DECLARE_GLOBAL_DATA_PTR;
12
13 int dram_init(void)
14 {
15         gd->ram_size = PHYS_SDRAM_1_SIZE;
16         return 0;
17 }
18
19 void dram_init_banksize(void)
20 {
21         gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
22         gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
23 }
24
25 int board_init(void)
26 {
27         return 0;
28 }