KIrkwood: Sheevaplug: kwimage configuration
[u-boot-kw.git] / board / ibf-dsp561 / ibf-dsp561.c
blob551fc291a052128a8aa0a983fcf647a836efc7d5
1 /*
2 * U-boot - main board file
4 * Copyright (c) 2008-2009 I-SYST.
6 * Licensed under the GPL-2 or later.
7 */
9 #include <common.h>
11 DECLARE_GLOBAL_DATA_PTR;
13 int checkboard(void)
15 printf("Board: I-SYST IBF-DSP561 Micromodule\n");
16 printf(" Support: http://www.i-syst.com/\n");
17 return 0;
20 phys_size_t initdram(int board_type)
22 gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
23 gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
24 return gd->bd->bi_memsize;