]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/ms7750se/ms7750se.c
Merge branch 'master' of git://www.denx.de/git/u-boot-cfi-flash
[people/ms/u-boot.git] / board / ms7750se / ms7750se.c
CommitLineData
69df3c4d 1/*
61fb15c5 2 * Copyright (C) 2007
69df3c4d
NI
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
69df3c4d
NI
6 */
7
8#include <common.h>
9#include <asm/processor.h>
10
29565326
JR
11DECLARE_GLOBAL_DATA_PTR;
12
69df3c4d
NI
13int checkboard(void)
14{
047375bf 15 puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
69df3c4d
NI
16 return 0;
17}
18
19int board_init(void)
20{
21 return 0;
22}
23
24int dram_init (void)
25{
6d0f6bcf
JCPV
26 gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
27 gd->bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
28 printf("DRAM: %dMB\n", CONFIG_SYS_SDRAM_SIZE / (1024 * 1024));
69df3c4d
NI
29 return 0;
30}
31
32int board_late_init(void)
33{
34 return 0;
35}