imx9: scmi: Update get mac from fuse for iMX952

Since iMX952 only has 2 pf and 2 vf, update the imx_get_mac_from_fuse
to adapt this layout.

Signed-off-by: Ye Li <ye.li@nxp.com>
This commit is contained in:
Ye Li
2026-07-27 13:05:07 -03:00
committed by Fabio Estevam
parent 099fc6eda5
commit bb4b0925d4
+12
View File
@@ -662,6 +662,18 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
eth_addr_add(mac, 8); /* enetc1 */
if (dev_id == 2)
eth_addr_add(mac, 9); /* enetc2 */
} else if (is_imx952()) {
/*
* i.MX952 uses the following mac address offset list:
* | No. | Mac address user |
* |-----|----------------------|
* | 0 | enetc mac pf0 |
* | 1 | enetc mac vf0 |
* | 2 | enetc mac pf1 |
* | 3 | enetc mac vf1 |
*/
if (dev_id == 1)
eth_addr_add(mac, 2);
} else {
if (dev_id == 1)
eth_addr_add(mac, 3);