]> git.baikalelectronics.ru Git - kernel.git/commitdiff
net: phy: broadcom: Allow BCM54210E to configure APD
authorFlorian Fainelli <f.fainelli@gmail.com>
Sat, 13 Feb 2021 03:46:32 +0000 (19:46 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 15 Feb 2021 23:15:25 +0000 (15:15 -0800)
BCM54210E/BCM50212E has been verified to work correctly with the
auto-power down configuration done by bcm54xx_adjust_rxrefclk(), add it
to the list of PHYs working.

While we are at it, provide an appropriate name for the bit we are
changing which disables the RXC and TXC during auto-power down when
there is no energy on the cable.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/broadcom.c
include/linux/brcmphy.h

index 3ce266ab521b11ac7d9d5b5a80bc472cdda3099e..91fbd26c809ee991ee019ae0fd8d6bfddcfb35b6 100644 (file)
@@ -193,6 +193,7 @@ static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev)
        if (BRCM_PHY_MODEL(phydev) != PHY_ID_BCM57780 &&
            BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610 &&
            BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610M &&
+           BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54210E &&
            BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54810 &&
            BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54811)
                return;
@@ -227,9 +228,10 @@ static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev)
                val |= BCM54XX_SHD_SCR3_DLLAPD_DIS;
 
        if (phydev->dev_flags & PHY_BRCM_DIS_TXCRXC_NOENRGY) {
-               if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54810 ||
-                   BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54811)
-                       val |= BCM54810_SHD_SCR3_TRDDAPD;
+               if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54210E ||
+                   BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54810 ||
+                   BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54210E)
+                       val |= BCM54XX_SHD_SCR3_RXCTXC_DIS;
                else
                        val |= BCM54XX_SHD_SCR3_TRDDAPD;
        }
index 844dcfe789a2c2e90ef72d34c2be98cb84a136ee..16597d3fa0116c40455a17a96d4e1cf423c5889d 100644 (file)
 #define  BCM54XX_SHD_SCR3_DEF_CLK125   0x0001
 #define  BCM54XX_SHD_SCR3_DLLAPD_DIS   0x0002
 #define  BCM54XX_SHD_SCR3_TRDDAPD      0x0004
+#define  BCM54XX_SHD_SCR3_RXCTXC_DIS   0x0100
 
 /* 01010: Auto Power-Down */
 #define BCM54XX_SHD_APD                        0x0a
 #define BCM54810_EXP_BROADREACH_LRE_MISC_CTL_EN        (1 << 0)
 #define BCM54810_SHD_CLK_CTL                   0x3
 #define BCM54810_SHD_CLK_CTL_GTXCLK_EN         (1 << 9)
-#define BCM54810_SHD_SCR3_TRDDAPD              0x0100
 
 /* BCM54612E Registers */
 #define BCM54612E_EXP_SPARE0           (MII_BCM54XX_EXP_SEL_ETC + 0x34)