u-boot-brain/board/ibf-dsp561/ibf-dsp561.c
Hoan Hoang 0f52b560f1 Blackfin: ibf-dsp561: new board port
Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-06-14 20:01:11 -04:00

26 lines
465 B
C

/*
* U-boot - main board file
*
* Copyright (c) 2008-2009 I-SYST.
*
* Licensed under the GPL-2 or later.
*/
#include <common.h>
DECLARE_GLOBAL_DATA_PTR;
int checkboard(void)
{
printf("Board: I-SYST IBF-DSP561 Micromodule\n");
printf(" Support: http://www.i-syst.com/\n");
return 0;
}
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}