diff options
| author | Markus Stockhausen | 2025-05-20 08:09:19 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-06-22 14:37:33 +0000 |
| commit | 880565956dd1260c4aff4dd0d4aa0b30766dd755 (patch) | |
| tree | 0f3ad4a46ca1fc9e7ed7e11624210f07b97e7320 | |
| parent | 13a6e0620ff062218cde8a5b68f78e554167fef2 (diff) | |
| download | openwrt-880565956dd1260c4aff4dd0d4aa0b30766dd755.tar.gz | |
realtek: make use of serdes helper for Zyxel GS1900-24(HP) v1/v2
Use the new INTERNAL_PHY_SDS() helper to describe the SFP ports. With
this change the driver now knows that ports 24/26 are driven by serdes
4/5.
For the RTL838x devices this is currently only an additional information
for the mdio bus. It is not evaluated further because everything is
hardcoded.
Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de>
Link: https://github.com/openwrt/openwrt/pull/18851
Signed-off-by: Robert Marko <robimarko@gmail.com>
3 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24-v1.dts b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24-v1.dts index 87cff0022e..f1494276a1 100644 --- a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24-v1.dts +++ b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24-v1.dts @@ -73,8 +73,8 @@ EXTERNAL_PHY(22) EXTERNAL_PHY(23) - INTERNAL_PHY(24) - INTERNAL_PHY(26) + INTERNAL_PHY_SDS(24, 4) + INTERNAL_PHY_SDS(26, 5) }; &switch0 { diff --git a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v1.dts b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v1.dts index 59cd2082a8..7ec67a2a90 100644 --- a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v1.dts +++ b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v1.dts @@ -73,8 +73,8 @@ EXTERNAL_PHY(22) EXTERNAL_PHY(23) - INTERNAL_PHY(24) - INTERNAL_PHY(26) + INTERNAL_PHY_SDS(24, 4) + INTERNAL_PHY_SDS(26, 5) }; &switch0 { diff --git a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v2.dts b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v2.dts index 78c66507f1..c93ac4b6b1 100644 --- a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v2.dts +++ b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24hp-v2.dts @@ -69,8 +69,8 @@ EXTERNAL_PHY(22) EXTERNAL_PHY(23) - INTERNAL_PHY(24) - INTERNAL_PHY(26) + INTERNAL_PHY_SDS(24, 4) + INTERNAL_PHY_SDS(26, 5) }; &switch0 { |