2 * U-boot - main board file
4 * Copyright (c) 2005-2009 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
13 #include <asm/blackfin.h>
15 #include <asm/mach-common/bits/otp.h>
16 #include "gpio_cfi_flash.h"
18 DECLARE_GLOBAL_DATA_PTR
;
22 printf("Board: Bluetechnix CM-BF527 board\n");
23 printf(" Support: http://www.bluetechnix.at/\n");
27 phys_size_t
initdram(int board_type
)
29 gd
->bd
->bi_memstart
= CONFIG_SYS_SDRAM_BASE
;
30 gd
->bd
->bi_memsize
= CONFIG_SYS_MAX_RAM_SIZE
;
31 return gd
->bd
->bi_memsize
;
34 #ifdef CONFIG_BFIN_MAC
35 static void board_init_enetaddr(uchar
*mac_addr
)
37 bool valid_mac
= false;
39 /* the MAC is stored in OTP memory page 0xDF */
43 ret
= bfrom_OtpRead(0xDF, OTP_LOWER_HALF
, &otp_mac
);
44 if (!(ret
& OTP_MASTER_ERROR
)) {
45 uchar
*otp_mac_p
= (uchar
*)&otp_mac
;
47 for (ret
= 0; ret
< 6; ++ret
)
48 mac_addr
[ret
] = otp_mac_p
[5 - ret
];
50 if (is_valid_ether_addr(mac_addr
))
55 puts("Warning: Generating 'random' MAC address\n");
56 bfin_gen_rand_mac(mac_addr
);
59 eth_setenv_enetaddr("ethaddr", mac_addr
);
62 int board_eth_init(bd_t
*bis
)
64 return bfin_EMAC_initialize(bis
);
70 #ifdef CONFIG_BFIN_MAC
72 if (!eth_getenv_enetaddr("ethaddr", enetaddr
))
73 board_init_enetaddr(enetaddr
);
76 gpio_cfi_flash_init();