]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
net: phy: micrel: make ksz9021 phy accessible
authorTroy Kisky <troy.kisky@boundarydevices.com>
Thu, 28 Jun 2012 08:00:28 +0000 (08:00 +0000)
committerJoe Hershberger <joe.hershberger@ni.com>
Wed, 11 Jul 2012 18:15:30 +0000 (13:15 -0500)
Micrel accidentally used the same part number
for the KS8721 and KSZ9021. So, both cannot be
in the same build of u-boot. Add a config option
to handle this.

Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
Acked-by: Vladimir Zapolskiy <vz@mleia.com>
drivers/net/phy/micrel.c
include/configs/mx6qsabrelite.h

index e3043dfa207c8d75916c4cce49fd9e0e3b76521c..30f3264897479c35f49cc53c3600b7f5ca46665b 100644 (file)
@@ -35,6 +35,12 @@ static struct phy_driver KSZ804_driver = {
        .shutdown = &genphy_shutdown,
 };
 
+#ifndef CONFIG_PHY_MICREL_KSZ9021
+/*
+ * I can't believe Micrel used the exact same part number
+ * for the KSZ9021
+ * Shame Micrel, Shame!!!!!
+ */
 static struct phy_driver KS8721_driver = {
        .name = "Micrel KS8721BL",
        .uid = 0x221610,
@@ -44,7 +50,9 @@ static struct phy_driver KS8721_driver = {
        .startup = &genphy_startup,
        .shutdown = &genphy_shutdown,
 };
+#endif
 
+#ifdef CONFIG_PHY_MICREL_KSZ9021
 /* ksz9021 PHY Registers */
 #define MII_KSZ9021_EXTENDED_CTRL      0x0b
 #define MII_KSZ9021_EXTENDED_DATAW     0x0c
@@ -127,12 +135,15 @@ static struct phy_driver ksz9021_driver = {
        .startup = &ksz9021_startup,
        .shutdown = &genphy_shutdown,
 };
+#endif
 
 int phy_micrel_init(void)
 {
        phy_register(&KSZ804_driver);
-       phy_register(&KS8721_driver);
+#ifdef CONFIG_PHY_MICREL_KSZ9021
        phy_register(&ksz9021_driver);
-
+#else
+       phy_register(&KS8721_driver);
+#endif
        return 0;
 }
index fd25fafeabd38af69a9d3c59e0b4f8102cb0e36c..c66229c8024cc289f31ad85fd9912dd25a6f8c28 100644 (file)
@@ -96,6 +96,7 @@
 #define CONFIG_FEC_MXC_PHYADDR         6
 #define CONFIG_PHYLIB
 #define CONFIG_PHY_MICREL
+#define CONFIG_PHY_MICREL_KSZ9021
 
 /* USB Configs */
 #define CONFIG_CMD_USB