1 From 14808d8d7b3484ff02f16027094ae159912c78ca 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 542/782] net: genet: enable link energy detect powerdown for
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.
13 For now, pass this flag in as it puts our attached PHY into a low-power
14 state when disconnected.
16 Signed-off-by: Jonathan Bell <jonathan@raspberrypi.org>
18 drivers/net/ethernet/broadcom/genet/bcmmii.c | 5 ++++-
19 1 file changed, 4 insertions(+), 1 deletion(-)
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
26 /* Communicate the integrated PHY revision */
27 - phy_flags = priv->gphy_rev;
28 + if (priv->internal_phy)
29 + phy_flags = priv->gphy_rev;
31 + phy_flags = PHY_BRCM_AUTO_PWRDWN_ENABLE;
33 /* Initialize link state variables that bcmgenet_mii_setup() uses */