ar71xx: fix phy_mask for the RB450
authorGabor Juhos <juhosg@openwrt.org>
Wed, 9 Jun 2010 19:48:35 +0000 (19:48 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Wed, 9 Jun 2010 19:48:35 +0000 (19:48 +0000)
SVN-Revision: 21743

target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb4xx.c

index 00c99cea0e32f2ed2f31b93a17db34b249921782..dc3c2005dfad0e0f61eac454bd99cbbb1e9737e1 100644 (file)
@@ -234,20 +234,22 @@ static void __init rb433u_setup(void)
 MIPS_MACHINE(AR71XX_MACH_RB_433U, "433U", "MikroTik RouterBOARD 433UAH",
             rb433u_setup);
 
+#define RB450_LAN_PHYMASK      BIT(0)
+#define RB450_WAN_PHYMASK      BIT(4)
+#define RB450_MDIO_PHYMASK     (RB450_LAN_PHYMASK | RB450_WAN_PHYMASK)
+
 static void __init rb450_generic_setup(int gige)
 {
        rb4xx_generic_setup();
        rb4xx_add_device_spi();
 
-       ar71xx_add_device_mdio(0xffffffe0);
+       ar71xx_add_device_mdio(~RB450_MDIO_PHYMASK);
 
        ar71xx_eth0_data.phy_if_mode = (gige) ? PHY_INTERFACE_MODE_RGMII : PHY_INTERFACE_MODE_MII;
-       ar71xx_eth0_data.phy_mask = (gige) ? (1 << 0) : 0;
-       ar71xx_eth0_data.speed = (gige) ? SPEED_1000 : SPEED_100;
-       ar71xx_eth0_data.duplex = DUPLEX_FULL;
+       ar71xx_eth0_data.phy_mask = RB450_LAN_PHYMASK;
 
        ar71xx_eth1_data.phy_if_mode = (gige) ? PHY_INTERFACE_MODE_RGMII : PHY_INTERFACE_MODE_RMII;
-       ar71xx_eth1_data.phy_mask = 0x00000010;
+       ar71xx_eth1_data.phy_mask = RB450_WAN_PHYMASK;
 
        ar71xx_add_device_eth(1);
        ar71xx_add_device_eth(0);