[PATCH v3 05/16] net: dwmac-dwc-qos-eth: Use helper rgmii_clock

Jan Petrous via B4 Relay posted 16 patches 1 month, 2 weeks ago
There is a newer version of this series
[PATCH v3 05/16] net: dwmac-dwc-qos-eth: Use helper rgmii_clock
Posted by Jan Petrous via B4 Relay 1 month, 2 weeks ago
From: "Jan Petrous (OSS)" <jan.petrous@oss.nxp.com>

???

Signed-off-by: Jan Petrous (OSS) <jan.petrous@oss.nxp.com>
---
 drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
index ec924c6c76c6..5080891c33e0 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
@@ -181,24 +181,19 @@ static void dwc_qos_remove(struct platform_device *pdev)
 static void tegra_eqos_fix_speed(void *priv, unsigned int speed, unsigned int mode)
 {
 	struct tegra_eqos *eqos = priv;
-	unsigned long rate = 125000000;
+	long rate = 125000000;
 	bool needs_calibration = false;
 	u32 value;
 	int err;
 
 	switch (speed) {
 	case SPEED_1000:
-		needs_calibration = true;
-		rate = 125000000;
-		break;
-
 	case SPEED_100:
 		needs_calibration = true;
-		rate = 25000000;
-		break;
+		fallthrough;
 
 	case SPEED_10:
-		rate = 2500000;
+		rate = rgmii_clock(speed);
 		break;
 
 	default:

-- 
2.46.0
Re: [PATCH v3 05/16] net: dwmac-dwc-qos-eth: Use helper rgmii_clock
Posted by Andrew Lunn 1 month, 1 week ago
On Sun, Oct 13, 2024 at 11:27:40PM +0200, Jan Petrous via B4 Relay wrote:
> From: "Jan Petrous (OSS)" <jan.petrous@oss.nxp.com>
> 
> ???

It does need to say something. The change is also not 100% obviously
correct. So you could explain the change a bit.


    Andrew

---
pw-bot: cr
Re: [PATCH v3 05/16] net: dwmac-dwc-qos-eth: Use helper rgmii_clock
Posted by Jan Petrous 1 month, 1 week ago
On Mon, Oct 14, 2024 at 03:46:56PM +0200, Andrew Lunn wrote:
> On Sun, Oct 13, 2024 at 11:27:40PM +0200, Jan Petrous via B4 Relay wrote:
> > From: "Jan Petrous (OSS)" <jan.petrous@oss.nxp.com>
> > 
> > ???
> 
> It does need to say something. The change is also not 100% obviously
> correct. So you could explain the change a bit.
> 

Oh, my prepared commit messaged got lost. I'm sorry, I will
fix it in v4.

> 
>     Andrew
> 
> ---
> pw-bot: cr