Stephan Gerhold | 43d2885 | 2020-01-04 18:45:19 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
2 | /* | ||||
3 | * Copyright (C) 2019 Stephan Gerhold <stephan@gerhold.net> | ||||
4 | */ | ||||
5 | #include <common.h> | ||||
6 | |||||
7 | DECLARE_GLOBAL_DATA_PTR; | ||||
8 | |||||
9 | int dram_init(void) | ||||
10 | { | ||||
11 | gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_SDRAM_SIZE); | ||||
12 | return 0; | ||||
13 | } | ||||
14 | |||||
15 | int board_init(void) | ||||
16 | { | ||||
17 | return 0; | ||||
18 | } |