diff options
Diffstat (limited to 'roms/u-boot/board/ste/stemmy/stemmy.c')
-rw-r--r-- | roms/u-boot/board/ste/stemmy/stemmy.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roms/u-boot/board/ste/stemmy/stemmy.c b/roms/u-boot/board/ste/stemmy/stemmy.c new file mode 100644 index 000000000..b9b2a6fdd --- /dev/null +++ b/roms/u-boot/board/ste/stemmy/stemmy.c @@ -0,0 +1,20 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Copyright (C) 2019 Stephan Gerhold <stephan@gerhold.net> + */ +#include <common.h> +#include <init.h> +#include <asm/global_data.h> + +DECLARE_GLOBAL_DATA_PTR; + +int dram_init(void) +{ + gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_SDRAM_SIZE); + return 0; +} + +int board_init(void) +{ + return 0; +} |