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>
17 DECLARE_GLOBAL_DATA_PTR
;
21 printf("Board: ADI BF537 PNAV board\n");
22 printf(" Support: http://blackfin.uclinux.org/\n");
26 #ifdef CONFIG_BFIN_MAC
27 static void board_init_enetaddr(uchar
*mac_addr
)
29 puts("Warning: Generating 'random' MAC address\n");
30 bfin_gen_rand_mac(mac_addr
);
31 eth_setenv_enetaddr("ethaddr", mac_addr
);
34 int board_eth_init(bd_t
*bis
)
36 return bfin_EMAC_initialize(bis
);
42 #ifdef CONFIG_BFIN_MAC
44 if (!eth_getenv_enetaddr("ethaddr", enetaddr
))
45 board_init_enetaddr(enetaddr
);