Message ID | 20241119-upstream_s32cc_gmac-v5-7-7dcc90fcffef@oss.nxp.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Add support for Synopsis DWMAC IP on NXP Automotive SoCs S32G2xx/S32G3xx/S32R45 | expand |
On Tue, Nov 19, 2024 at 04:00:13PM +0100, Jan Petrous via B4 Relay wrote: > @@ -31,27 +31,15 @@ struct intel_dwmac_data { > static void kmb_eth_fix_mac_speed(void *priv, unsigned int speed, unsigned int mode) > { > struct intel_dwmac *dwmac = priv; > - unsigned long rate; > + long rate; > int ret; So the following becomes: > > rate = clk_get_rate(dwmac->tx_clk); > > + rate = rgmii_clock(speed); > + if (rate < 0) { > dev_err(dwmac->dev, "Invalid speed\n"); > + return; > } Now that I've removed the deleted lines, we can see that the clk_get_rate() call there is now redundant. Please remove in this change. Thanks.
On Tue, Nov 19, 2024 at 04:44:43PM +0000, Russell King (Oracle) wrote: > On Tue, Nov 19, 2024 at 04:00:13PM +0100, Jan Petrous via B4 Relay wrote: > > @@ -31,27 +31,15 @@ struct intel_dwmac_data { > > static void kmb_eth_fix_mac_speed(void *priv, unsigned int speed, unsigned int mode) > > { > > struct intel_dwmac *dwmac = priv; > > - unsigned long rate; > > + long rate; > > int ret; > > So the following becomes: > > > > > rate = clk_get_rate(dwmac->tx_clk); > > > > + rate = rgmii_clock(speed); > > + if (rate < 0) { > > dev_err(dwmac->dev, "Invalid speed\n"); > > + return; > > } > > Now that I've removed the deleted lines, we can see that the > clk_get_rate() call there is now redundant. Please remove in > this change. Funny I didn't notice that, thanks. I will remove it in v6. Interesting the redundant clk_get_rate() is there from v5.10.0. I hope that there was no reason for the clock call, like any platform discrepancy requiring reading the clock before setting. BTW, I also removed Reviewed-by: Andrew as the patch was changed. BR. /Jan
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-intel-plat.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-intel-plat.c index 9739bc9867c5..71dbb8031506 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-intel-plat.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-intel-plat.c @@ -31,27 +31,15 @@ struct intel_dwmac_data { static void kmb_eth_fix_mac_speed(void *priv, unsigned int speed, unsigned int mode) { struct intel_dwmac *dwmac = priv; - unsigned long rate; + long rate; int ret; rate = clk_get_rate(dwmac->tx_clk); - switch (speed) { - case SPEED_1000: - rate = 125000000; - break; - - case SPEED_100: - rate = 25000000; - break; - - case SPEED_10: - rate = 2500000; - break; - - default: + rate = rgmii_clock(speed); + if (rate < 0) { dev_err(dwmac->dev, "Invalid speed\n"); - break; + return; } ret = clk_set_rate(dwmac->tx_clk, rate);