From e82d8a1f028bedb12c4ab88a35a935010d92898c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 12 Oct 2008 21:36:22 -0400 Subject: Blackfin: cm-bf533: new board port Signed-off-by: Mike Frysinger --- board/cm-bf533/cm-bf533.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 board/cm-bf533/cm-bf533.c (limited to 'board/cm-bf533/cm-bf533.c') diff --git a/board/cm-bf533/cm-bf533.c b/board/cm-bf533/cm-bf533.c new file mode 100644 index 0000000..7eb761d --- /dev/null +++ b/board/cm-bf533/cm-bf533.c @@ -0,0 +1,25 @@ +/* + * U-boot - main board file + * + * Copyright (c) 2005-2008 Analog Devices Inc. + * + * Licensed under the GPL-2 or later. + */ + +#include + +DECLARE_GLOBAL_DATA_PTR; + +int checkboard(void) +{ + printf("Board: Bluetechnix CM-BF533 board\n"); + printf(" Support: http://www.bluetechnix.at/\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; +} -- cgit v1.1