2022-10-18 20:26:34 +00:00
|
|
|
From 2e677e4ae8f8330f68013163b060d0fda3a43095 Mon Sep 17 00:00:00 2001
|
|
|
|
From: "Langer, Thomas" <tlanger@maxlinear.com>
|
|
|
|
Date: Fri, 9 Jul 2021 17:36:46 +0200
|
|
|
|
Subject: [PATCH] PONRTSYS-8842: aquantia: Add AQR113 driver support
|
|
|
|
|
|
|
|
Add a new entry for AQR113 PHY_ID
|
|
|
|
---
|
|
|
|
drivers/net/phy/aquantia_main.c | 10 ++++++++++
|
|
|
|
1 file changed, 10 insertions(+)
|
|
|
|
|
|
|
|
--- a/drivers/net/phy/aquantia_main.c
|
|
|
|
+++ b/drivers/net/phy/aquantia_main.c
|
2023-05-22 16:07:13 +00:00
|
|
|
@@ -26,6 +26,7 @@
|
2022-10-18 21:43:43 +00:00
|
|
|
#define PHY_ID_AQR813 0x31c31cb2
|
2022-10-18 20:26:34 +00:00
|
|
|
#define PHY_ID_AQR112 0x03a1b662
|
2022-10-18 21:43:43 +00:00
|
|
|
#define PHY_ID_AQR412 0x03a1b712
|
2022-10-18 20:26:34 +00:00
|
|
|
+#define PHY_ID_AQR113 0x31c31c40
|
2022-10-18 21:43:43 +00:00
|
|
|
|
|
|
|
#define MDIO_PHYXS_VEND_IF_STATUS 0xe812
|
|
|
|
#define MDIO_PHYXS_VEND_IF_STATUS_TYPE_MASK GENMASK(7, 3)
|
2023-05-22 16:07:13 +00:00
|
|
|
@@ -981,6 +982,14 @@ static struct phy_driver aqr_driver[] =
|
|
|
|
.get_strings = aqr107_get_strings,
|
2022-10-18 20:26:34 +00:00
|
|
|
.get_stats = aqr107_get_stats,
|
|
|
|
},
|
2022-10-18 21:43:43 +00:00
|
|
|
+{
|
2022-10-18 20:26:34 +00:00
|
|
|
+ PHY_ID_MATCH_MODEL(PHY_ID_AQR113),
|
|
|
|
+ .name = "Aquantia AQR113",
|
|
|
|
+ .config_aneg = aqr_config_aneg,
|
|
|
|
+ .config_intr = aqr_config_intr,
|
|
|
|
+ .handle_interrupt = aqr_handle_interrupt,
|
|
|
|
+ .read_status = aqr107_read_status,
|
|
|
|
+},
|
2022-10-18 21:43:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module_phy_driver(aqr_driver);
|
2023-05-22 16:07:13 +00:00
|
|
|
@@ -997,6 +1006,7 @@ static struct mdio_device_id __maybe_unu
|
2022-10-18 21:43:43 +00:00
|
|
|
{ PHY_ID_MATCH_MODEL(PHY_ID_AQR813) },
|
2022-10-18 20:26:34 +00:00
|
|
|
{ PHY_ID_MATCH_MODEL(PHY_ID_AQR112) },
|
2022-10-18 21:43:43 +00:00
|
|
|
{ PHY_ID_MATCH_MODEL(PHY_ID_AQR412) },
|
2022-10-18 20:26:34 +00:00
|
|
|
+ { PHY_ID_MATCH_MODEL(PHY_ID_AQR113) },
|
2022-10-18 21:43:43 +00:00
|
|
|
{ }
|
|
|
|
};
|
2023-05-22 16:07:13 +00:00
|
|
|
|