All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: phy: at803x: disable delay only for RGMII mode
@ 2019-02-12 14:19 Vinod Koul
  2019-02-13  7:02   ` Peter Ujfalusi
                   ` (2 more replies)
  0 siblings, 3 replies; 24+ messages in thread
From: Vinod Koul @ 2019-02-12 14:19 UTC (permalink / raw)
  To: David S Miller
  Cc: linux-arm-msm, Bjorn Andersson, Vinod Koul, netdev,
	Niklas Cassel, Andrew Lunn, Florian Fainelli, Nori, Sekhar,
	Peter Ujfalusi, Marc Gonzalez

Per "Documentation/devicetree/bindings/net/ethernet.txt" RGMII mode
should not have delay in PHY whereas RGMII_ID and RGMII_RXID/RGMII_TXID
can have delay in phy.

So disable the delay only for RGMII mode and disable for other modes

Fixes: cd28d1d6e52e: ("net: phy: at803x: Disable phy delay for RGMII mode")
Reported-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
---
 drivers/net/phy/at803x.c | 33 ++++++++++++++++++++++++++-------
 1 file changed, 26 insertions(+), 7 deletions(-)

diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c
index 8ff12938ab47..7b54b54e3316 100644
--- a/drivers/net/phy/at803x.c
+++ b/drivers/net/phy/at803x.c
@@ -110,6 +110,18 @@ static int at803x_debug_reg_mask(struct phy_device *phydev, u16 reg,
 	return phy_write(phydev, AT803X_DEBUG_DATA, val);
 }
 
+static inline int at803x_enable_rx_delay(struct phy_device *phydev)
+{
+	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_0, 0,
+				     AT803X_DEBUG_RX_CLK_DLY_EN);
+}
+
+static inline int at803x_enable_tx_delay(struct phy_device *phydev)
+{
+	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_5, 0,
+				     AT803X_DEBUG_TX_CLK_DLY_EN);
+}
+
 static inline int at803x_disable_rx_delay(struct phy_device *phydev)
 {
 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_0,
@@ -255,18 +267,25 @@ static int at803x_config_init(struct phy_device *phydev)
 	if (ret < 0)
 		return ret;
 
-	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID ||
-			phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
-			phydev->interface == PHY_INTERFACE_MODE_RGMII) {
+	if (phydev->interface == PHY_INTERFACE_MODE_RGMII) {
 		ret = at803x_disable_rx_delay(phydev);
 		if (ret < 0)
 			return ret;
+		ret = at803x_disable_tx_delay(phydev);
+		if (ret < 0)
+			return ret;
+	};
+
+	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
+			phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
+		ret = at803x_enable_rx_delay(phydev);
+		if (ret < 0)
+			return ret;
 	}
 
-	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID ||
-			phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
-			phydev->interface == PHY_INTERFACE_MODE_RGMII) {
-		ret = at803x_disable_tx_delay(phydev);
+	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
+			phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
+		ret = at803x_enable_tx_delay(phydev);
 		if (ret < 0)
 			return ret;
 	}
-- 
2.20.1

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

end of thread, other threads:[~2019-02-15 10:16 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-12 14:19 [PATCH] net: phy: at803x: disable delay only for RGMII mode Vinod Koul
2019-02-13  7:02 ` Peter Ujfalusi
2019-02-13  7:02   ` Peter Ujfalusi
2019-02-15 10:16   ` Vinod Koul
2019-02-13 13:12 ` Niklas Cassel
2019-02-13 13:29   ` Andrew Lunn
2019-02-13 13:40     ` Marc Gonzalez
2019-02-13 13:40       ` Marc Gonzalez
2019-02-13 17:40       ` Niklas Cassel
2019-02-13 17:40         ` Niklas Cassel
2019-02-13 17:59         ` Florian Fainelli
2019-02-13 20:07           ` Niklas Cassel
2019-02-13 21:38             ` Florian Fainelli
2019-02-14 10:49         ` Peter Ujfalusi
2019-02-14 10:49           ` Peter Ujfalusi
2019-02-14 12:39           ` Niklas Cassel
2019-02-14 13:22             ` Peter Ujfalusi
2019-02-14 13:22               ` Peter Ujfalusi
2019-02-14 15:06               ` Niklas Cassel
2019-02-15  0:14                 ` Florian Fainelli
2019-02-14 16:38 ` David Miller
2019-02-14 16:46   ` Marc Gonzalez
2019-02-14 17:33     ` David Miller
2019-02-15  9:58   ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.