mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
Blackfin: bf526-ezbrd: get MAC from flash
The MAC address is stored in the last flash sector rather than OTP. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
03feb8ed2e
commit
d1f3ac9ee4
1 changed files with 17 additions and 12 deletions
|
@ -27,21 +27,20 @@ int checkboard(void)
|
||||||
#ifdef CONFIG_BFIN_MAC
|
#ifdef CONFIG_BFIN_MAC
|
||||||
static void board_init_enetaddr(uchar *mac_addr)
|
static void board_init_enetaddr(uchar *mac_addr)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_SYS_NO_FLASH
|
||||||
|
# define USE_MAC_IN_FLASH 0
|
||||||
|
#else
|
||||||
|
# define USE_MAC_IN_FLASH 1
|
||||||
|
#endif
|
||||||
bool valid_mac = false;
|
bool valid_mac = false;
|
||||||
|
|
||||||
/* the MAC is stored in OTP memory page 0xDF */
|
if (USE_MAC_IN_FLASH) {
|
||||||
uint32_t ret;
|
/* we cram the MAC in the last flash sector */
|
||||||
uint64_t otp_mac;
|
uchar *board_mac_addr = (uchar *)0x203F0096;
|
||||||
|
if (is_valid_ether_addr(board_mac_addr)) {
|
||||||
ret = bfrom_OtpRead(0xDF, OTP_LOWER_HALF, &otp_mac);
|
memcpy(mac_addr, board_mac_addr, 6);
|
||||||
if (!(ret & OTP_MASTER_ERROR)) {
|
|
||||||
uchar *otp_mac_p = (uchar *)&otp_mac;
|
|
||||||
|
|
||||||
for (ret = 0; ret < 6; ++ret)
|
|
||||||
mac_addr[ret] = otp_mac_p[5 - ret];
|
|
||||||
|
|
||||||
if (is_valid_ether_addr(mac_addr))
|
|
||||||
valid_mac = true;
|
valid_mac = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!valid_mac) {
|
if (!valid_mac) {
|
||||||
|
@ -66,5 +65,11 @@ int misc_init_r(void)
|
||||||
board_init_enetaddr(enetaddr);
|
board_init_enetaddr(enetaddr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef CONFIG_SYS_NO_FLASH
|
||||||
|
/* we use the last sector for the MAC address / POST LDR */
|
||||||
|
extern flash_info_t flash_info[];
|
||||||
|
flash_protect(FLAG_PROTECT_SET, 0x203F0000, 0x203FFFFF, &flash_info[0]);
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue