backfire: generic: rtl8366rb: fix MIB counter reset (backport of r21969)
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 27 Jun 2010 16:50:34 +0000 (16:50 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 27 Jun 2010 16:50:34 +0000 (16:50 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@21970 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/generic-2.6/files/drivers/net/phy/rtl8366rb.c

index 2105b2bd4e6436588bead50d5b18a8165140a6b0..61d6e3ab6ff1a6b7dab29d6e7d65b5f908014d02 100644 (file)
 #define RTL8366S_MIB_COUNTER_BASE           0x1000
 #define RTL8366S_MIB_CTRL_REG               0x13F0
 #define RTL8366S_MIB_CTRL_USER_MASK         0x0FFC
-#define RTL8366S_MIB_CTRL_BUSY_MASK         0x0001
-#define RTL8366S_MIB_CTRL_RESET_MASK        0x0001
-
-#define RTL8366S_MIB_CTRL_GLOBAL_RESET_MASK 0x0004
-#define RTL8366S_MIB_CTRL_PORT_RESET_BIT    0x0003
-#define RTL8366S_MIB_CTRL_PORT_RESET_MASK   0x01FC
-
+#define RTL8366S_MIB_CTRL_BUSY_MASK         BIT(0)
+#define RTL8366S_MIB_CTRL_RESET_MASK       BIT(1)
+#define RTL8366S_MIB_CTRL_PORT_RESET(_p)    BIT(2 + (_p))
+#define RTL8366S_MIB_CTRL_GLOBAL_RESET     BIT(11)
 
 #define RTL8366S_PORT_VLAN_CTRL_BASE        0x0063
 #define RTL8366S_PORT_VLAN_CTRL_REG(_p)  \
@@ -1107,7 +1104,8 @@ static int rtl8366rb_sw_reset_mibs(struct switch_dev *dev,
        int err = 0;
 
        if (val->value.i == 1)
-               err = rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, 0, (1 << 2));
+               err = rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, 0,
+                                      RTL8366S_MIB_CTRL_GLOBAL_RESET);
 
        return err;
 }
@@ -1327,8 +1325,8 @@ static int rtl8366rb_sw_reset_port_mibs(struct switch_dev *dev,
        if (val->port_vlan >= RTL8366_NUM_PORTS)
                return -EINVAL;
 
-       return rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG,
-                               0, (1 << (val->port_vlan + 3)));
+       return rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, 0,
+                               RTL8366S_MIB_CTRL_PORT_RESET(val->port_vlan));
 }
 
 static int rtl8366rb_sw_get_port_mib(struct switch_dev *dev,