2007-05-13 12:01:03 +00:00
|
|
|
/*
|
2007-12-27 00:52:50 +00:00
|
|
|
* Copyright (C) 2007
|
2007-05-13 12:01:03 +00:00
|
|
|
* Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-05-13 12:01:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
2010-12-21 01:27:51 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2007-05-13 12:01:03 +00:00
|
|
|
int checkboard(void)
|
|
|
|
{
|
2007-09-22 17:19:24 +00:00
|
|
|
puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
|
2007-05-13 12:01:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dram_init (void)
|
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
|
|
|
|
gd->bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
|
|
|
|
printf("DRAM: %dMB\n", CONFIG_SYS_SDRAM_SIZE / (1024 * 1024));
|
2007-05-13 12:01:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_late_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|