59898da5c027371b43015ebb9a0ba77405e4b063
[oweals/openwrt.git] /
1 From 259098c80b022b81abf94a37f3928c3fc4f2455e Mon Sep 17 00:00:00 2001
2 From: Jonathan Bell <jonathan@raspberrypi.org>
3 Date: Tue, 14 May 2019 17:17:59 +0100
4 Subject: [PATCH 543/773] net: genet: enable link energy detect powerdown for
5  external PHYs
6
7 There are several warts surrounding bcmgenet_mii_probe() as this
8 function is called from ndo_open, but it's calling registration-type
9 functions. The probe should be called at probe time and refactored
10 such that the PHY device data can be extracted to limit the scope
11 of this flag to Broadcom PHYs.
12
13 For now, pass this flag in as it puts our attached PHY into a low-power
14 state when disconnected.
15
16 Signed-off-by: Jonathan Bell <jonathan@raspberrypi.org>
17 ---
18  drivers/net/ethernet/broadcom/genet/bcmmii.c | 5 ++++-
19  1 file changed, 4 insertions(+), 1 deletion(-)
20
21 --- a/drivers/net/ethernet/broadcom/genet/bcmmii.c
22 +++ b/drivers/net/ethernet/broadcom/genet/bcmmii.c
23 @@ -280,7 +280,10 @@ int bcmgenet_mii_probe(struct net_device
24         int ret;
25  
26         /* Communicate the integrated PHY revision */
27 -       phy_flags = priv->gphy_rev;
28 +       if (priv->internal_phy)
29 +               phy_flags = priv->gphy_rev;
30 +       else
31 +               phy_flags = PHY_BRCM_AUTO_PWRDWN_ENABLE;
32  
33         /* Initialize link state variables that bcmgenet_mii_setup() uses */
34         priv->old_link = -1;