ar8216: add link change detection for switch ports
authorFelix Fietkau <nbd@openwrt.org>
Sat, 24 Jan 2015 19:41:55 +0000 (19:41 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 24 Jan 2015 19:41:55 +0000 (19:41 +0000)
Check for switch port link changes and
- flush ATU in case of a change
- report link change via syslog

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
SVN-Revision: 44102

target/linux/generic/files/drivers/net/phy/ar8216.c
target/linux/generic/files/drivers/net/phy/ar8216.h

index 370f1acc89e50d72d0ae515cebe4de85a2f555b7..130ebf7126df04398e1651c5a374b0e9f4396af1 100644 (file)
@@ -1707,12 +1707,47 @@ ar8xxx_phy_config_init(struct phy_device *phydev)
        return 0;
 }
 
+static bool
+ar8xxx_check_link_states(struct ar8xxx_priv *priv)
+{
+       bool link_new, changed = false;
+       u32 status;
+       int i;
+
+       mutex_lock(&priv->reg_mutex);
+
+       for (i = 0; i < priv->dev.ports; i++) {
+               status = priv->chip->read_port_status(priv, i);
+               link_new = !!(status & AR8216_PORT_STATUS_LINK_UP);
+               if (link_new == priv->link_up[i])
+                       continue;
+
+               priv->link_up[i] = link_new;
+               changed = true;
+               dev_info(&priv->phy->dev, "Port %d is %s\n",
+                        i, link_new ? "up" : "down");
+       }
+
+       if (changed)
+               priv->chip->atu_flush(priv);
+
+       mutex_unlock(&priv->reg_mutex);
+
+       return changed;
+}
+
 static int
 ar8xxx_phy_read_status(struct phy_device *phydev)
 {
        struct ar8xxx_priv *priv = phydev->priv;
        struct switch_port_link link;
 
+       /* check for link changes and flush ATU
+        * if a change was detected
+        */
+       if (phydev->state == PHY_CHANGELINK)
+               ar8xxx_check_link_states(priv);
+
        if (phydev->addr != 0)
                return genphy_read_status(phydev);
 
index 8487c3ea4956134cedc539493f43cd44a730880f..2d025ae835d2d99644f1d80f4477a9e70695f9b8 100644 (file)
@@ -396,6 +396,7 @@ struct ar8xxx_priv {
        bool initialized;
        bool port4_phy;
        char buf[2048];
+       bool link_up[AR8X16_MAX_PORTS];
 
        bool init;