[U-Boot] [PATCH] net: phy: added aquantia PHY AQR405 support

shh.xie at gmail.com shh.xie at gmail.com
Tue Nov 10 12:16:33 CET 2015


From: Shaohui Xie <Shaohui.Xie at freescale.com>

The phy can share driver with other aquantia PHYs, so we only added PHY
ID.

Signed-off-by: Shaohui Xie <Shaohui.Xie at freescale.com>
---
 drivers/net/phy/aquantia.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/drivers/net/phy/aquantia.c b/drivers/net/phy/aquantia.c
index ef4da4e..f90c2ae 100644
--- a/drivers/net/phy/aquantia.c
+++ b/drivers/net/phy/aquantia.c
@@ -146,11 +146,26 @@ struct phy_driver aqr105_driver = {
 	.startup = &aquantia_startup,
 	.shutdown = &gen10g_shutdown,
 };
+
+struct phy_driver aqr405_driver = {
+	.name = "Aquantia AQR405",
+	.uid = 0x3a1b4b2,
+	.mask = 0xfffffff0,
+	.features = PHY_10G_FEATURES,
+	.mmds = (MDIO_MMD_PMAPMD | MDIO_MMD_PCS|
+		 MDIO_MMD_PHYXS | MDIO_MMD_AN |
+		 MDIO_MMD_VEND1),
+	.config = &aquantia_config,
+	.startup = &aquantia_startup,
+	.shutdown = &gen10g_shutdown,
+};
+
 int phy_aquantia_init(void)
 {
 	phy_register(&aq1202_driver);
 	phy_register(&aq2104_driver);
 	phy_register(&aqr105_driver);
+	phy_register(&aqr405_driver);
 
 	return 0;
 }
-- 
2.1.0.27.g96db324



More information about the U-Boot mailing list