diff options
| author | Sander Vanheule | 2026-02-21 14:00:39 +0000 |
|---|---|---|
| committer | Sander Vanheule | 2026-02-25 19:22:49 +0000 |
| commit | cdc92ce56099f938ca936f33990a4e65e77c828e (patch) | |
| tree | 7855fdbf15d3833028362be7c7fb45ee52eee87e | |
| parent | 82dbd32e13b01731116988712e64957fe753ea5d (diff) | |
| download | openwrt-cdc92ce56099f938ca936f33990a4e65e77c828e.tar.gz | |
realtek: hog the GS1900-24E external IC reset line
The GPIO line connecting to the reset signals of the GS1900-24E(A1)'s
external ICs (RTL8218B phys and RTL8231 expander) cannot be asserted by
the MDIO subsystem, as the reset is shared between busses.
To prevent users from accidentally asserting the reset line, a GPIO hog
is created to permanently de-assert the signal, reliably keeping the
phys and GPIO expanders on.
Tested-by: Simon Fischer <simi.fischa@gmail.com>
Signed-off-by: Sander Vanheule <sander@svanheule.net>
(cherry picked from commit ba57225066243b28d2802ea5c47313c97767150e)
| -rw-r--r-- | target/linux/realtek/dts/rtl8382_zyxel_gs1900-24e-a1.dts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24e-a1.dts b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24e-a1.dts index c54648cc32..4cffc040ed 100644 --- a/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24e-a1.dts +++ b/target/linux/realtek/dts/rtl8382_zyxel_gs1900-24e-a1.dts @@ -8,6 +8,16 @@ model = "Zyxel GS1900-24E A1"; }; +&gpio0 { + /* Shared between the main and aux MDIO busses */ + mdio_reset { + gpio-hog; + gpios = <1 GPIO_ACTIVE_LOW>; + output-low; + line-name = "mdio-reset"; + }; +}; + &mdio_bus0 { EXTERNAL_PHY(0) EXTERNAL_PHY(1) |