net: phy: smsc: Cache interrupt mask
authorLukas Wunner <lukas@wunner.de>
Thu, 12 May 2022 08:42:06 +0000 (10:42 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Mar 2023 07:48:56 +0000 (08:48 +0100)
[ Upstream commit 7e8b617eb93f9fcaedac02cd19edcad31c767386 ]

Cache the interrupt mask to avoid re-reading it from the PHY upon every
interrupt.

This will simplify a subsequent commit which detects hot-removal in the
interrupt handler and bails out.

Analyzing and debugging PHY transactions also becomes simpler if such
redundant reads are avoided.

Last not least, interrupt overhead and latency is slightly improved.

Tested-by: Oleksij Rempel <o.rempel@pengutronix.de> # LAN9514/9512/9500
Tested-by: Ferry Toth <fntoth@gmail.com> # LAN9514
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Stable-dep-of: 58aac3a2ef41 ("net: phy: smsc: fix link up detection in forced irq mode")
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/phy/smsc.c

index 636b0907a59873cce6371508ab0927b557524279..63dca3bb561108f53687b1fbe40ce49fa388459d 100644 (file)
@@ -44,6 +44,7 @@ static struct smsc_hw_stat smsc_hw_stats[] = {
 };
 
 struct smsc_phy_priv {
+       u16 intmask;
        bool energy_enable;
        struct clk *refclk;
 };
@@ -58,7 +59,6 @@ static int smsc_phy_ack_interrupt(struct phy_device *phydev)
 static int smsc_phy_config_intr(struct phy_device *phydev)
 {
        struct smsc_phy_priv *priv = phydev->priv;
-       u16 intmask = 0;
        int rc;
 
        if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
@@ -66,12 +66,15 @@ static int smsc_phy_config_intr(struct phy_device *phydev)
                if (rc)
                        return rc;
 
-               intmask = MII_LAN83C185_ISF_INT4 | MII_LAN83C185_ISF_INT6;
+               priv->intmask = MII_LAN83C185_ISF_INT4 | MII_LAN83C185_ISF_INT6;
                if (priv->energy_enable)
-                       intmask |= MII_LAN83C185_ISF_INT7;
-               rc = phy_write(phydev, MII_LAN83C185_IM, intmask);
+                       priv->intmask |= MII_LAN83C185_ISF_INT7;
+
+               rc = phy_write(phydev, MII_LAN83C185_IM, priv->intmask);
        } else {
-               rc = phy_write(phydev, MII_LAN83C185_IM, intmask);
+               priv->intmask = 0;
+
+               rc = phy_write(phydev, MII_LAN83C185_IM, 0);
                if (rc)
                        return rc;
 
@@ -83,13 +86,8 @@ static int smsc_phy_config_intr(struct phy_device *phydev)
 
 static irqreturn_t smsc_phy_handle_interrupt(struct phy_device *phydev)
 {
-       int irq_status, irq_enabled;
-
-       irq_enabled = phy_read(phydev, MII_LAN83C185_IM);
-       if (irq_enabled < 0) {
-               phy_error(phydev);
-               return IRQ_NONE;
-       }
+       struct smsc_phy_priv *priv = phydev->priv;
+       int irq_status;
 
        irq_status = phy_read(phydev, MII_LAN83C185_ISF);
        if (irq_status < 0) {
@@ -97,7 +95,7 @@ static irqreturn_t smsc_phy_handle_interrupt(struct phy_device *phydev)
                return IRQ_NONE;
        }
 
-       if (!(irq_status & irq_enabled))
+       if (!(irq_status & priv->intmask))
                return IRQ_NONE;
 
        phy_trigger_machine(phydev);