diff mbox

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

Message ID 1447154193-48862-1-git-send-email-shh.xie@gmail.com
State Accepted
Delegated to: York Sun
Headers show

Commit Message

shaohui xie Nov. 10, 2015, 11:16 a.m. UTC
From: Shaohui Xie <Shaohui.Xie@freescale.com>

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

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

Comments

Joe Hershberger Nov. 10, 2015, 8:16 p.m. UTC | #1
On Tue, Nov 10, 2015 at 5:16 AM,  <shh.xie@gmail.com> wrote:
> From: Shaohui Xie <Shaohui.Xie@freescale.com>
>
> The phy can share driver with other aquantia PHYs, so we only added PHY
> ID.
>
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>

Acked-by: Joe Hershberger <joe.hershberger@ni.com>
York Sun Nov. 30, 2015, 5:19 p.m. UTC | #2
On 11/10/2015 03:16 AM, shh.xie@gmail.com wrote:
> From: Shaohui Xie <Shaohui.Xie@freescale.com>
> 
> The phy can share driver with other aquantia PHYs, so we only added PHY
> ID.
> 
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
> ---
>  drivers/net/phy/aquantia.c | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)

Applied to fsl-qoriq master. Thanks.

York
diff mbox

Patch

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;
 }