mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 13:44:29 +08:00
eQos: Implement the read_rom_hwaddr callback
Implement the read_rom_hwaddr callback to load MAC address from fuse for imx8m platforms. Reviewed-by: Fugang Duan <fugang.duan@nxp.com> Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
9d4194f179
commit
580fab4a82
@ -1145,6 +1145,16 @@ static int eqos_write_hwaddr(struct udevice *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int eqos_read_rom_hwaddr(struct udevice *dev)
|
||||
{
|
||||
struct eth_pdata *pdata = dev_get_platdata(dev);
|
||||
|
||||
#ifdef CONFIG_ARCH_IMX8M
|
||||
imx_get_mac_from_fuse(dev->req_seq, pdata->enetaddr);
|
||||
#endif
|
||||
return !is_valid_ethaddr(pdata->enetaddr);
|
||||
}
|
||||
|
||||
static int eqos_start(struct udevice *dev)
|
||||
{
|
||||
struct eqos_priv *eqos = dev_get_priv(dev);
|
||||
@ -2066,6 +2076,7 @@ static const struct eth_ops eqos_ops = {
|
||||
.recv = eqos_recv,
|
||||
.free_pkt = eqos_free_pkt,
|
||||
.write_hwaddr = eqos_write_hwaddr,
|
||||
.read_rom_hwaddr = eqos_read_rom_hwaddr,
|
||||
};
|
||||
|
||||
static struct eqos_ops eqos_tegra186_ops = {
|
||||
|
Loading…
Reference in New Issue
Block a user