backfire: ar71xx: update phy masks for the Planex boards (backport of r20754)
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 9 Apr 2010 12:06:23 +0000 (12:06 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 9 Apr 2010 12:06:23 +0000 (12:06 +0000)
This avoids probing of the AR8216 chip on the eth0 interface.

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@20763 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w04nu.c
target/linux/ar71xx/files/arch/mips/ar71xx/mach-mzk-w300nh.c

index 42d0f81e6aeec648404f87628edfa4c8c1a69236..bc8438f73f4020816d0871efd2076e7c7a6ae2f3 100644 (file)
@@ -126,13 +126,16 @@ static struct gpio_button mzk_w04nu_gpio_buttons[] __initdata = {
        }
 };
 
+#define MZK_W04NU_WAN_PHYMASK  BIT(4)
+#define MZK_W04NU_MDIO_MASK    (~MZK_W04NU_WAN_PHYMASK)
+
 static void __init mzk_w04nu_setup(void)
 {
        u8 *eeprom = (u8 *) KSEG1ADDR(0x1fff1000);
 
        ar71xx_set_mac_base(eeprom);
 
-       ar71xx_add_device_mdio(0x0);
+       ar71xx_add_device_mdio(MZK_W04NU_MDIO_MASK);
 
        ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
        ar71xx_eth0_data.speed = SPEED_100;
@@ -140,7 +143,7 @@ static void __init mzk_w04nu_setup(void)
        ar71xx_eth0_data.has_ar8216 = 1;
 
        ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
-       ar71xx_eth1_data.phy_mask = 0x10;
+       ar71xx_eth1_data.phy_mask = MZK_W04NU_WAN_PHYMASK;
 
        ar71xx_add_device_eth(0);
        ar71xx_add_device_eth(1);
index ed431d824c94fc339de54057c4e85799b589438b..dfe7d0d6f988676267cdeb8f5273515a23a5ac5d 100644 (file)
@@ -125,13 +125,16 @@ static struct gpio_button mzk_w300nh_gpio_buttons[] __initdata = {
        }
 };
 
+#define MZK_W300NH_WAN_PHYMASK BIT(4)
+#define MZK_W300NH_MDIO_MASK   (~MZK_W300NH_WAN_PHYMASK)
+
 static void __init mzk_w300nh_setup(void)
 {
        u8 *eeprom = (u8 *) KSEG1ADDR(0x1fff1000);
 
        ar71xx_set_mac_base(eeprom);
 
-       ar71xx_add_device_mdio(0x0);
+       ar71xx_add_device_mdio(MZK_W300NH_MDIO_MASK);
 
        ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
        ar71xx_eth0_data.speed = SPEED_100;
@@ -139,7 +142,7 @@ static void __init mzk_w300nh_setup(void)
        ar71xx_eth0_data.has_ar8216 = 1;
 
        ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
-       ar71xx_eth1_data.phy_mask = 0x10;
+       ar71xx_eth1_data.phy_mask = MZK_W300NH_WAN_PHYMASK;
 
        ar71xx_add_device_eth(0);
        ar71xx_add_device_eth(1);