bcm27xx: add support for linux v5.15
[openwrt/staging/chunkeey.git] / target / linux / bcm27xx / patches-5.15 / 950-0323-net-lan78xx-Ack-pending-PHY-ints-when-resetting.patch
1 From 107e14fb85b57eca17266a62c7cba81b22448953 Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.com>
3 Date: Tue, 15 Dec 2020 16:38:37 +0000
4 Subject: [PATCH] net: lan78xx: Ack pending PHY ints when resetting
5
6 lan78xx_link_reset explicitly clears the MAC's view of the PHY's IRQ
7 status. In doing so it potentially leaves the PHY with a pending
8 interrupt that will never be acknowledged, at which point no further
9 interrupts will be generated.
10
11 Avoid the problem by acknowledging any pending PHY interrupt after
12 clearing the MAC's status bit.
13
14 See: https://github.com/raspberrypi/linux/issues/2937
15
16 Signed-off-by: Phil Elwell <phil@raspberrypi.com>
17 ---
18 drivers/net/usb/lan78xx.c | 3 +++
19 1 file changed, 3 insertions(+)
20
21 --- a/drivers/net/usb/lan78xx.c
22 +++ b/drivers/net/usb/lan78xx.c
23 @@ -1274,6 +1274,9 @@ static int lan78xx_link_reset(struct lan
24 if (unlikely(ret < 0))
25 return ret;
26
27 + /* Acknowledge any pending PHY interrupt, lest it be the last */
28 + phy_read(phydev, LAN88XX_INT_STS);
29 +
30 mutex_lock(&phydev->lock);
31 phy_read_status(phydev);
32 link = phydev->link;