[ar71xx] pull ethernet mac out of reset before registering the mdio_bus
authorGabor Juhos <juhosg@openwrt.org>
Thu, 12 Feb 2009 14:06:58 +0000 (14:06 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Thu, 12 Feb 2009 14:06:58 +0000 (14:06 +0000)
SVN-Revision: 14486

target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_mdio.c
target/linux/ar71xx/patches-2.6.28/802-ag71xx_mdio_dynamic_mdio_bus.patch

index 01888f1105f1e8f32796b1141c262114b13dc3a0..4ff6df8fa238da1ba388e6e5f357d0395fb65869 100644 (file)
@@ -170,6 +170,8 @@ static int __init ag71xx_mdio_probe(struct platform_device *pdev)
        for (i = 0; i < PHY_MAX_ADDR; i++)
                am->mii_irq[i] = PHY_POLL;
 
+       ag71xx_mdio_wr(am, AG71XX_REG_MAC_CFG1, 0);
+
        err = mdiobus_register(&am->mii_bus);
        if (err)
                goto err_iounmap;
index b7b7d58ea7a77324c3dd769b0246fbc31ec91229..fa84e55501d2d62f84c34ad8c234a5e1738334c3 100644 (file)
@@ -33,7 +33,7 @@
                        break;
                }
                udelay(AG71XX_MDIO_DELAY);
-@@ -154,23 +154,27 @@ static int __init ag71xx_mdio_probe(stru
+@@ -154,27 +154,33 @@ static int __init ag71xx_mdio_probe(stru
                goto err_free_mdio;
        }
  
 -      am->mii_bus.parent = &pdev->dev;
 -      snprintf(am->mii_bus.id, MII_BUS_ID_SIZE, "%x", 0);
 +      am->mii_bus = mdiobus_alloc();
-+      if (am->mii_bus == NULL)
++      if (am->mii_bus == NULL) {
++              err = -NOMEM;
 +              goto err_iounmap;
++      }
 +
 +      am->mii_bus->name = "ag71xx_mdio";
 +      am->mii_bus->read = ag71xx_mdio_read;
        for (i = 0; i < PHY_MAX_ADDR; i++)
                am->mii_irq[i] = PHY_POLL;
  
+       ag71xx_mdio_wr(am, AG71XX_REG_MAC_CFG1, 0);
 -      err = mdiobus_register(&am->mii_bus);
 +      err = mdiobus_register(am->mii_bus);
        if (err)
-               goto err_iounmap;
+-              goto err_iounmap;
++              goto err_free_bus;
+       ag71xx_mdio_dump_regs(am);
+@@ -182,6 +188,8 @@ static int __init ag71xx_mdio_probe(stru
+       ag71xx_mdio_bus = am;
+       return 0;
  
-@@ -194,7 +198,8 @@ static int __exit ag71xx_mdio_remove(str
++ err_free_bus:
++      mdiobus_free(am->mii_bus);
+  err_iounmap:
+       iounmap(am->mdio_base);
+  err_free_mdio:
+@@ -196,7 +204,8 @@ static int __exit ag71xx_mdio_remove(str
  
        if (am) {
                ag71xx_mdio_bus = NULL;