net: dwc_eth_qos: introduce eqos hook eqos_get_enetaddr
authorPeng Fan <peng.fan@nxp.com>
Tue, 26 Jul 2022 08:41:17 +0000 (16:41 +0800)
committerStefano Babic <sbabic@denx.de>
Tue, 26 Jul 2022 09:29:01 +0000 (11:29 +0200)
i.MX has specific hook to get MAC address, so introduce a hook and move
i.MX code to its own driver

Signed-off-by: Peng Fan <peng.fan@nxp.com>
drivers/net/dwc_eth_qos.c
drivers/net/dwc_eth_qos.h
drivers/net/dwc_eth_qos_imx.c

index a4380d1..c1f2391 100644 (file)
@@ -712,10 +712,13 @@ static int eqos_write_hwaddr(struct udevice *dev)
 static int eqos_read_rom_hwaddr(struct udevice *dev)
 {
        struct eth_pdata *pdata = dev_get_plat(dev);
+       struct eqos_priv *eqos = dev_get_priv(dev);
+       int ret;
+
+       ret = eqos->config->ops->eqos_get_enetaddr(dev);
+       if (ret < 0)
+               return ret;
 
-#ifdef CONFIG_ARCH_IMX8M
-       imx_get_mac_from_fuse(dev_seq(dev), pdata->enetaddr);
-#endif
        return !is_valid_ethaddr(pdata->enetaddr);
 }
 
index f470189..b35e774 100644 (file)
@@ -240,6 +240,7 @@ struct eqos_ops {
        int (*eqos_calibrate_pads)(struct udevice *dev);
        int (*eqos_disable_calibration)(struct udevice *dev);
        int (*eqos_set_tx_clk_speed)(struct udevice *dev);
+       int (*eqos_get_enetaddr)(struct udevice *dev);
        ulong (*eqos_get_tick_clk_rate)(struct udevice *dev);
 };
 
index 2d1b510..42cb164 100644 (file)
@@ -92,6 +92,15 @@ static int eqos_set_tx_clk_speed_imx(struct udevice *dev)
        return 0;
 }
 
+static int eqos_get_enetaddr_imx(struct udevice *dev)
+{
+       struct eth_pdata *pdata = dev_get_plat(dev);
+
+       imx_get_mac_from_fuse(dev_seq(dev), pdata->enetaddr);
+
+       return 0;
+}
+
 static struct eqos_ops eqos_imx_ops = {
        .eqos_inval_desc = eqos_inval_desc_generic,
        .eqos_flush_desc = eqos_flush_desc_generic,
@@ -106,7 +115,8 @@ static struct eqos_ops eqos_imx_ops = {
        .eqos_calibrate_pads = eqos_null_ops,
        .eqos_disable_calibration = eqos_null_ops,
        .eqos_set_tx_clk_speed = eqos_set_tx_clk_speed_imx,
-       .eqos_get_tick_clk_rate = eqos_get_tick_clk_rate_imx
+       .eqos_get_enetaddr = eqos_get_enetaddr_imx,
+       .eqos_get_tick_clk_rate = eqos_get_tick_clk_rate_imx,
 };
 
 struct eqos_config __maybe_unused eqos_imx_config = {