[ar71xx] minor ethernet driver update
authorGabor Juhos <juhosg@openwrt.org>
Wed, 15 Oct 2008 18:31:21 +0000 (18:31 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Wed, 15 Oct 2008 18:31:21 +0000 (18:31 +0000)
SVN-Revision: 12985

target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h
target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c
target/linux/ar71xx/files/include/asm-mips/mach-ar71xx/platform.h

index d2d055d5569847bfd4ec260c7430c3b4a63fe68b..2f60d19b5f7c2320dfebd6820504a6e2a3c3c52b 100644 (file)
@@ -37,7 +37,7 @@
 #define ETH_FCS_LEN    4
 
 #define AG71XX_DRV_NAME                "ag71xx"
-#define AG71XX_DRV_VERSION     "0.4.1"
+#define AG71XX_DRV_VERSION     "0.4.2"
 
 #define AG71XX_NAPI_TX         1
 
index 086de22291852fe4ac776217f48e5090c9af649f..512b42eb5cb9f5fc8063b69a8d878bb7c9f1decf 100644 (file)
@@ -193,8 +193,10 @@ void ag71xx_phy_start(struct ag71xx *ag)
        if (ag->phy_dev) {
                phy_start(ag->phy_dev);
        } else {
-               ag->duplex = DUPLEX_FULL;
-               ag->speed = SPEED_100;
+               struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag);
+
+               ag->duplex = pdata->duplex;
+               ag->speed = pdata->speed;
                ag->link = 1;
                ag71xx_phy_link_update(ag);
        }
@@ -220,8 +222,8 @@ int ag71xx_phy_connect(struct ag71xx *ag)
        int phy_count = 0;
        int phy_addr;
 
-       if (ag->mii_bus) {
-               /* TODO: use mutex of the mdio bus */
+       if (ag->mii_bus && pdata->phy_mask) {
+               /* TODO: use mutex of the mdio bus? */
                for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
                        if (!(pdata->phy_mask & (1 << phy_addr)))
                                continue;
@@ -242,9 +244,6 @@ int ag71xx_phy_connect(struct ag71xx *ag)
        }
 
        switch (phy_count) {
-       case 0:
-               printk(KERN_ERR "%s: no PHY found\n", dev->name);
-               return -ENODEV;
        case 1:
                ag->phy_dev = phy_connect(dev, phydev->dev.bus_id,
                        &ag71xx_phy_link_adjust, 0, pdata->phy_if_mode);
@@ -275,9 +274,10 @@ int ag71xx_phy_connect(struct ag71xx *ag)
                ag->speed = 0;
                ag->duplex = -1;
                break;
+
        default:
                ag->phy_dev = NULL;
-               printk(KERN_DEBUG "%s: connected to multiple PHYs (%d)\n",
+               printk(KERN_DEBUG "%s: connected to %d PHYs\n",
                        dev->name, phy_count);
                break;
        }
index 5b00e00be7403e42f7a080457d96cadbfc342f07..f712f3391c47789ab58e27bdc1ea39a2ee0a1b51 100644 (file)
@@ -25,6 +25,8 @@ struct ag71xx_platform_data {
        u32             phy_mask;
        phy_interface_t phy_if_mode;
        u32             mii_if;
+       int             speed;
+       int             duplex;
        u8              mac_addr[ETH_ALEN];
 };