The recent silicon revision 3 of the DP83869 has a different PHY ID
which has to be added to the driver in order for the PHY to be detected.
There appear to be no documented differences between the revisions,
although there are some discussions in the TI forum about different
behavior for some registers.
Signed-off-by: Thomas Gessler <[email protected]>
---
drivers/net/phy/dp83869.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/net/phy/dp83869.c b/drivers/net/phy/dp83869.c
index d7aaefb5226b..d248a13c1749 100644
--- a/drivers/net/phy/dp83869.c
+++ b/drivers/net/phy/dp83869.c
@@ -15,7 +15,8 @@
#include <dt-bindings/net/ti-dp83869.h>
-#define DP83869_PHY_ID 0x2000a0f1
+#define DP83869REV1_PHY_ID 0x2000a0f1
+#define DP83869REV3_PHY_ID 0x2000a0f3
#define DP83561_PHY_ID 0x2000a1a4
#define DP83869_DEVADDR 0x1f
@@ -909,14 +910,16 @@ static int dp83869_phy_reset(struct phy_device *phydev)
}
static struct phy_driver dp83869_driver[] = {
- DP83869_PHY_DRIVER(DP83869_PHY_ID, "TI DP83869"),
+ DP83869_PHY_DRIVER(DP83869REV1_PHY_ID, "TI DP83869 Rev. 1"),
+ DP83869_PHY_DRIVER(DP83869REV3_PHY_ID, "TI DP83869 Rev. 3"),
DP83869_PHY_DRIVER(DP83561_PHY_ID, "TI DP83561-SP"),
};
module_phy_driver(dp83869_driver);
static struct mdio_device_id __maybe_unused dp83869_tbl[] = {
- { PHY_ID_MATCH_MODEL(DP83869_PHY_ID) },
+ { PHY_ID_MATCH_MODEL(DP83869REV1_PHY_ID) },
+ { PHY_ID_MATCH_MODEL(DP83869REV3_PHY_ID) },
{ PHY_ID_MATCH_MODEL(DP83561_PHY_ID) },
{ }
};
--
2.34.1