OSDN Git Service

net: dsa: bcm_sf2: move GPHY enabling to its own function
authorFlorian Fainelli <f.fainelli@gmail.com>
Thu, 5 Feb 2015 19:40:41 +0000 (11:40 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sun, 8 Feb 2015 06:38:40 +0000 (22:38 -0800)
Move the code that touches the single GPHY register from
bcm_sf2_sw_resume() to a separate function since we will have to
enable/disable the GPHY from different locations, and we want the code
to be self-contained.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/bcm_sf2.c

index 09f6b3c..45c0e2b 100644 (file)
@@ -233,6 +233,24 @@ static void bcm_sf2_eee_enable_set(struct dsa_switch *ds, int port, bool enable)
        core_writel(priv, reg, CORE_EEE_EN_CTRL);
 }
 
+static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable)
+{
+       struct bcm_sf2_priv *priv = ds_to_priv(ds);
+       u32 reg;
+
+       if (!enable)
+               return;
+
+       reg = reg_readl(priv, REG_SPHY_CNTRL);
+       reg |= PHY_RESET;
+       reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS);
+       reg_writel(priv, reg, REG_SPHY_CNTRL);
+       udelay(21);
+       reg = reg_readl(priv, REG_SPHY_CNTRL);
+       reg &= ~PHY_RESET;
+       reg_writel(priv, reg, REG_SPHY_CNTRL);
+}
+
 static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
                              struct phy_device *phy)
 {
@@ -771,7 +789,6 @@ static int bcm_sf2_sw_resume(struct dsa_switch *ds)
 {
        struct bcm_sf2_priv *priv = ds_to_priv(ds);
        unsigned int port;
-       u32 reg;
        int ret;
 
        ret = bcm_sf2_sw_rst(priv);
@@ -780,17 +797,8 @@ static int bcm_sf2_sw_resume(struct dsa_switch *ds)
                return ret;
        }
 
-       /* Reinitialize the single GPHY */
-       if (priv->hw_params.num_gphy == 1) {
-               reg = reg_readl(priv, REG_SPHY_CNTRL);
-               reg |= PHY_RESET;
-               reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS);
-               reg_writel(priv, reg, REG_SPHY_CNTRL);
-               udelay(21);
-               reg = reg_readl(priv, REG_SPHY_CNTRL);
-               reg &= ~PHY_RESET;
-               reg_writel(priv, reg, REG_SPHY_CNTRL);
-       }
+       if (priv->hw_params.num_gphy == 1)
+               bcm_sf2_gphy_enable_set(ds, true);
 
        for (port = 0; port < DSA_MAX_PORTS; port++) {
                if ((1 << port) & ds->phys_port_mask)