public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] mx7dsabresd: Retrieve the second MAC address from fuses
@ 2023-07-11 21:57 Fabio Estevam
  2023-07-13  9:58 ` sbabic
  0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2023-07-11 21:57 UTC (permalink / raw)
  To: sbabic; +Cc: u-boot, Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

Currently, a random MAC address is assigned to eth1 in Linux.

Fix this behavor by retrieving the second MAC address from the fuses.

Signed-off-by: Fabio Estevam <festevam@denx.de>
---
 board/freescale/mx7dsabresd/mx7dsabresd.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c
index 2777ae13bce0..cff2e6a87171 100644
--- a/board/freescale/mx7dsabresd/mx7dsabresd.c
+++ b/board/freescale/mx7dsabresd/mx7dsabresd.c
@@ -292,6 +292,7 @@ int power_init_board(void)
 int board_late_init(void)
 {
 	struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR;
+	unsigned char eth1addr[6];
 
 	imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads));
 
@@ -303,6 +304,11 @@ int board_late_init(void)
 	 */
 	clrsetbits_le16(&wdog->wcr, 0, 0x10);
 
+	/* Get the second MAC address */
+	imx_get_mac_from_fuse(1, eth1addr);
+	if (!env_get("eth1addr") && is_valid_ethaddr(eth1addr))
+		eth_env_set_enetaddr("eth1addr", eth1addr);
+
 	return 0;
 }
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-13  9:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-11 21:57 [PATCH] mx7dsabresd: Retrieve the second MAC address from fuses Fabio Estevam
2023-07-13  9:58 ` sbabic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox