mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
km/boards: add MAC address offset as argument to ivm_populate_env
For upcoming SECU board we have different MAC address offsets depending on which functional unit we are running. In this case we need to pass this value to the ivm_populate_env function instead of using the hard coded config option there. Signed-off-by: Holger Brunck <holger.brunck@ch.abb.com> CC: Stefan Roese <sr@denx.de> CC: Valentin Longchamp <valentin.longchamp@ch.abb.com> CC: Marek Vasut <marex@denx.de> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
58e1fdb051
commit
fd7c400962
5 changed files with 13 additions and 10 deletions
|
@ -121,7 +121,7 @@ struct bfticu_iomap {
|
|||
};
|
||||
|
||||
int ethernet_present(void);
|
||||
int ivm_read_eeprom(unsigned char *buf, int len);
|
||||
int ivm_read_eeprom(unsigned char *buf, int len, int mac_address_offset);
|
||||
int ivm_analyze_eeprom(unsigned char *buf, int len);
|
||||
|
||||
int trigger_fpga_config(void);
|
||||
|
|
|
@ -297,7 +297,7 @@ int ivm_analyze_eeprom(unsigned char *buf, int len)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int ivm_populate_env(unsigned char *buf, int len)
|
||||
static int ivm_populate_env(unsigned char *buf, int len, int mac_address_offset)
|
||||
{
|
||||
unsigned char *page2;
|
||||
unsigned char valbuf[MAC_STR_SZ];
|
||||
|
@ -309,23 +309,23 @@ static int ivm_populate_env(unsigned char *buf, int len)
|
|||
|
||||
#ifndef CONFIG_KMTEGR1
|
||||
/* if an offset is defined, add it */
|
||||
process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADDRESS_OFFSET, true);
|
||||
process_mac(valbuf, page2, mac_address_offset, true);
|
||||
env_set((char *)"ethaddr", (char *)valbuf);
|
||||
#else
|
||||
/* KMTEGR1 has a special setup. eth0 has no connection to the outside and
|
||||
* gets an locally administred MAC address, eth1 is the debug interface and
|
||||
* gets the official MAC address from the IVM
|
||||
*/
|
||||
process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADDRESS_OFFSET, false);
|
||||
process_mac(valbuf, page2, mac_address_offset, false);
|
||||
env_set((char *)"ethaddr", (char *)valbuf);
|
||||
process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADDRESS_OFFSET, true);
|
||||
process_mac(valbuf, page2, mac_address_offset, true);
|
||||
env_set((char *)"eth1addr", (char *)valbuf);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ivm_read_eeprom(unsigned char *buf, int len)
|
||||
int ivm_read_eeprom(unsigned char *buf, int len, int mac_address_offset)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
@ -339,5 +339,5 @@ int ivm_read_eeprom(unsigned char *buf, int len)
|
|||
return -2;
|
||||
}
|
||||
|
||||
return ivm_populate_env(buf, len);
|
||||
return ivm_populate_env(buf, len, mac_address_offset);
|
||||
}
|
||||
|
|
|
@ -186,7 +186,8 @@ int board_early_init_r(void)
|
|||
|
||||
int misc_init_r(void)
|
||||
{
|
||||
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
|
||||
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN,
|
||||
CONFIG_PIGGY_MAC_ADDRESS_OFFSET);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -232,7 +232,8 @@ int misc_init_r(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
|
||||
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN,
|
||||
CONFIG_PIGGY_MAC_ADDRESS_OFFSET);
|
||||
|
||||
initialize_unit_leds();
|
||||
set_km_env();
|
||||
|
|
|
@ -196,7 +196,8 @@ int misc_init_r(void)
|
|||
}
|
||||
}
|
||||
|
||||
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
|
||||
ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN,
|
||||
CONFIG_PIGGY_MAC_ADDRESS_OFFSET);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue