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>
16 #include "gpio_cfi_flash.h"
18 DECLARE_GLOBAL_DATA_PTR;
22 printf("Board: Bluetechnix TCM-BF537 board\n");
23 printf(" Support: http://www.bluetechnix.at/\n");
27 #ifdef CONFIG_BFIN_MAC
28 static void board_init_enetaddr(uchar *mac_addr)
30 puts("Warning: Generating 'random' MAC address\n");
31 bfin_gen_rand_mac(mac_addr);
32 eth_setenv_enetaddr("ethaddr", mac_addr);
35 int board_eth_init(bd_t *bis)
37 return bfin_EMAC_initialize(bis);
43 #ifdef CONFIG_BFIN_MAC
45 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
46 board_init_enetaddr(enetaddr);
49 gpio_cfi_flash_init();