mediatek: Add support for Xiaomi Redmi Router AX6S
[openwrt/openwrt.git] / target / linux / generic / backport-5.4 / 791-net-phy-at803x-fix-probe-error-if-copper-page-is-sel.patch
1 From 8f7e876273e294b732b42af2e5e6bba91d798954 Mon Sep 17 00:00:00 2001
2 From: Michael Walle <michael@walle.cc>
3 Date: Tue, 20 Apr 2021 12:29:29 +0200
4 Subject: [PATCH] net: phy: at803x: fix probe error if copper page is selected
5
6 The commit c329e5afb42f ("net: phy: at803x: select correct page on
7 config init") selects the copper page during probe. This fails if the
8 copper page was already selected. In this case, the value of the copper
9 page (which is 1) is propagated through phy_restore_page() and is
10 finally returned for at803x_probe(). Fix it, by just using the
11 at803x_page_write() directly.
12
13 Also in case of an error, the regulator is not disabled and leads to a
14 WARN_ON() when the probe fails. This couldn't happen before, because
15 at803x_parse_dt() was the last call in at803x_probe(). It is hard to
16 see, that the parse_dt() actually enables the regulator. Thus move the
17 regulator_enable() to the probe function and undo it in case of an
18 error.
19
20 Fixes: c329e5afb42f ("net: phy: at803x: select correct page on config init")
21 Signed-off-by: Michael Walle <michael@walle.cc>
22 Reviewed-by: David Bauer <mail@david-bauer.net>
23 Signed-off-by: David S. Miller <davem@davemloft.net>
24 ---
25 drivers/net/phy/at803x.c | 23 +++++++++++++++++------
26 1 file changed, 17 insertions(+), 6 deletions(-)
27
28 --- a/drivers/net/phy/at803x.c
29 +++ b/drivers/net/phy/at803x.c
30 @@ -289,8 +289,9 @@ static int at803x_probe(struct phy_devic
31 * the PHY capabilities from the fiber side.
32 */
33 if ((phydev->phy_id & phydev->drv->phy_id_mask) == (ATH8031_PHY_ID & phydev->drv->phy_id_mask)) {
34 - ret = phy_select_page(phydev, AT803X_PAGE_COPPER);
35 - ret = phy_restore_page(phydev, AT803X_PAGE_COPPER, ret);
36 + mutex_lock(&phydev->mdio.bus->mdio_lock);
37 + ret = at803x_write_page(phydev, AT803X_PAGE_COPPER);
38 + mutex_unlock(&phydev->mdio.bus->mdio_lock);
39 }
40
41 return ret;