]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
sama5d3xek: run PHY's config
authorAndreas Bießmann <andreas.devel@googlemail.com>
Thu, 18 Sep 2014 21:46:49 +0000 (23:46 +0200)
committerAndreas Bießmann <andreas.devel@googlemail.com>
Fri, 10 Oct 2014 19:51:17 +0000 (21:51 +0200)
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Cc: Bo Shen <voice.shen@atmel.com>
board/atmel/sama5d3xek/sama5d3xek.c

index f53754bc87450f46ab918e61d08c8827bbf91539..ca4f79ddc1f6feb708424032864e40e8271ff4b0 100644 (file)
@@ -17,6 +17,7 @@
 #include <lcd.h>
 #include <atmel_lcdc.h>
 #include <atmel_mci.h>
+#include <phy.h>
 #include <micrel.h>
 #include <net.h>
 #include <netdev.h>
@@ -273,15 +274,25 @@ int dram_init(void)
 
 int board_phy_config(struct phy_device *phydev)
 {
-       /* rx data delay */
-       ksz9021_phy_extended_write(phydev,
-                                  MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW, 0x2222);
-       /* tx data delay */
-       ksz9021_phy_extended_write(phydev,
-                                  MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW, 0x2222);
-       /* rx/tx clock delay */
-       ksz9021_phy_extended_write(phydev,
-                                  MII_KSZ9021_EXT_RGMII_CLOCK_SKEW, 0xf2f4);
+       /* board specific timings for GMAC */
+       if (has_gmac()) {
+               /* rx data delay */
+               ksz9021_phy_extended_write(phydev,
+                                          MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW,
+                                          0x2222);
+               /* tx data delay */
+               ksz9021_phy_extended_write(phydev,
+                                          MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW,
+                                          0x2222);
+               /* rx/tx clock delay */
+               ksz9021_phy_extended_write(phydev,
+                                          MII_KSZ9021_EXT_RGMII_CLOCK_SKEW,
+                                          0xf2f4);
+       }
+
+       /* always run the PHY's config routine */
+       if (phydev->drv->config)
+               return phydev->drv->config(phydev);
 
        return 0;
 }