Skip to content

Commit 30a41ed

Browse files
airtower-lunaPaolo Abeni
authored andcommitted
net: phy: microchip: force IRQ polling mode for lan88xx
With lan88xx based devices the lan78xx driver can get stuck in an interrupt loop while bringing the device up, flooding the kernel log with messages like the following: lan78xx 2-3:1.0 enp1s0u3: kevent 4 may have been dropped Removing interrupt support from the lan88xx PHY driver forces the driver to use polling instead, which avoids the problem. The issue has been observed with Raspberry Pi devices at least since 4.14 (see [1], bug report for their downstream kernel), as well as with Nvidia devices [2] in 2020, where disabling interrupts was the vendor-suggested workaround (together with the claim that phylib changes in 4.9 made the interrupt handling in lan78xx incompatible). Iperf reports well over 900Mbits/sec per direction with client in --dualtest mode, so there does not seem to be a significant impact on throughput (lan88xx device connected via switch to the peer). [1] raspberrypi/linux#2447 [2] https://forums.developer.nvidia.com/t/jetson-xavier-and-lan7800-problem/142134/11 Link: https://lore.kernel.org/0901d90d-3f20-4a10-b680-9c978e04ddda@lunn.ch Fixes: 792aec4 ("add microchip LAN88xx phy driver") Signed-off-by: Fiona Klute <fiona.klute@gmx.de> Cc: kernel-list@raspberrypi.com Cc: stable@vger.kernel.org Reviewed-by: Andrew Lunn <andrew@lunn.ch> Link: https://patch.msgid.link/20250416102413.30654-1-fiona.klute@gmx.de Signed-off-by: Paolo Abeni <pabeni@redhat.com>
1 parent b1eac30 commit 30a41ed

File tree

1 file changed

+3
-43
lines changed

1 file changed

+3
-43
lines changed

drivers/net/phy/microchip.c

Lines changed: 3 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -37,47 +37,6 @@ static int lan88xx_write_page(struct phy_device *phydev, int page)
3737
return __phy_write(phydev, LAN88XX_EXT_PAGE_ACCESS, page);
3838
}
3939

40-
static int lan88xx_phy_config_intr(struct phy_device *phydev)
41-
{
42-
int rc;
43-
44-
if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
45-
/* unmask all source and clear them before enable */
46-
rc = phy_write(phydev, LAN88XX_INT_MASK, 0x7FFF);
47-
rc = phy_read(phydev, LAN88XX_INT_STS);
48-
rc = phy_write(phydev, LAN88XX_INT_MASK,
49-
LAN88XX_INT_MASK_MDINTPIN_EN_ |
50-
LAN88XX_INT_MASK_LINK_CHANGE_);
51-
} else {
52-
rc = phy_write(phydev, LAN88XX_INT_MASK, 0);
53-
if (rc)
54-
return rc;
55-
56-
/* Ack interrupts after they have been disabled */
57-
rc = phy_read(phydev, LAN88XX_INT_STS);
58-
}
59-
60-
return rc < 0 ? rc : 0;
61-
}
62-
63-
static irqreturn_t lan88xx_handle_interrupt(struct phy_device *phydev)
64-
{
65-
int irq_status;
66-
67-
irq_status = phy_read(phydev, LAN88XX_INT_STS);
68-
if (irq_status < 0) {
69-
phy_error(phydev);
70-
return IRQ_NONE;
71-
}
72-
73-
if (!(irq_status & LAN88XX_INT_STS_LINK_CHANGE_))
74-
return IRQ_NONE;
75-
76-
phy_trigger_machine(phydev);
77-
78-
return IRQ_HANDLED;
79-
}
80-
8140
static int lan88xx_suspend(struct phy_device *phydev)
8241
{
8342
struct lan88xx_priv *priv = phydev->priv;
@@ -528,8 +487,9 @@ static struct phy_driver microchip_phy_driver[] = {
528487
.config_aneg = lan88xx_config_aneg,
529488
.link_change_notify = lan88xx_link_change_notify,
530489

531-
.config_intr = lan88xx_phy_config_intr,
532-
.handle_interrupt = lan88xx_handle_interrupt,
490+
/* Interrupt handling is broken, do not define related
491+
* functions to force polling.
492+
*/
533493

534494
.suspend = lan88xx_suspend,
535495
.resume = genphy_resume,

0 commit comments

Comments
 (0)