2 * U-boot - main board file
4 * Copyright (c) 2005-2009 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
14 #include <asm/blackfin.h>
15 #include "../cm-bf537e/gpio_cfi_flash.h"
17 DECLARE_GLOBAL_DATA_PTR;
21 printf("Board: Bluetechnix TCM-BF537 board\n");
22 printf(" Support: http://www.bluetechnix.at/\n");
26 #ifndef CONFIG_BFIN_MAC
27 # define bfin_EMAC_initialize(x) 1
29 #ifndef CONFIG_SMC911X
30 # define smc911x_initialize(n, x) 1
32 int board_eth_init(bd_t *bis)
34 /* return ok if at least 1 eth device works */
35 return bfin_EMAC_initialize(bis) &
36 smc911x_initialize(0, CONFIG_SMC911X_BASE);
41 gpio_cfi_flash_init();