mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 14:06:15 +00:00
ca4469045f
Replace downstream RealTek PHY patches with backported ones. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
41 lines
1.6 KiB
Diff
41 lines
1.6 KiB
Diff
From 5befa3728b855e9f75b29bb0069a1ca7f5bab2f7 Mon Sep 17 00:00:00 2001
|
|
From: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Date: Wed, 31 Jan 2024 21:24:29 +0100
|
|
Subject: [PATCH] net: phy: realtek: add support for RTL8126A-integrated 5Gbps
|
|
PHY
|
|
|
|
A user reported that first consumer mainboards show up with a RTL8126A
|
|
5Gbps MAC/PHY. This adds support for the integrated PHY, which is also
|
|
available stand-alone. From a PHY driver perspective it's treated the
|
|
same as the 2.5Gbps PHY's, we just have to support the new PHY ID.
|
|
|
|
Reported-by: Joe Salmeri <jmscdba@gmail.com>
|
|
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
|
|
Tested-by: Joe Salmeri <jmscdba@gmail.com>
|
|
Link: https://lore.kernel.org/r/0c8e67ea-6505-43d1-bd51-94e7ecd6e222@gmail.com
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/phy/realtek.c | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
--- a/drivers/net/phy/realtek.c
|
|
+++ b/drivers/net/phy/realtek.c
|
|
@@ -1050,6 +1050,16 @@ static struct phy_driver realtek_drvs[]
|
|
.read_page = rtl821x_read_page,
|
|
.write_page = rtl821x_write_page,
|
|
}, {
|
|
+ PHY_ID_MATCH_EXACT(0x001cc862),
|
|
+ .name = "RTL8251B 5Gbps PHY",
|
|
+ .get_features = rtl822x_get_features,
|
|
+ .config_aneg = rtl822x_config_aneg,
|
|
+ .read_status = rtl822x_read_status,
|
|
+ .suspend = genphy_suspend,
|
|
+ .resume = rtlgen_resume,
|
|
+ .read_page = rtl821x_read_page,
|
|
+ .write_page = rtl821x_write_page,
|
|
+ }, {
|
|
PHY_ID_MATCH_EXACT(0x001cc961),
|
|
.name = "RTL8366RB Gigabit Ethernet",
|
|
.config_init = &rtl8366rb_config_init,
|