diff options
| author | Alexandru Gagniuc | 2025-05-13 20:59:00 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-05-14 17:38:25 +0000 |
| commit | c75223338fb0461cd658a80b8eccb8fc1192cdad (patch) | |
| tree | 84fd62612ed1a630f0ac866d7b0ccb1e6aa462da | |
| parent | 7be36c20f18261b244d8952021f8d4f7f0010312 (diff) | |
| download | openwrt-c75223338fb0461cd658a80b8eccb8fc1192cdad.tar.gz | |
qualcommax: ipq60xx: eap6xx-outdoor: add PHY reset pinctrl
It was suggested that the pinctrl property of the mdio node should
include the PHY reset GPIO. Add them in.
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/18584
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-tplink-eap6xx-outdoor.dtsi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-tplink-eap6xx-outdoor.dtsi b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-tplink-eap6xx-outdoor.dtsi index 486ea7ad25..0a551e73ca 100644 --- a/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-tplink-eap6xx-outdoor.dtsi +++ b/target/linux/qualcommax/files/arch/arm64/boot/dts/qcom/ipq6018-tplink-eap6xx-outdoor.dtsi @@ -80,6 +80,12 @@ }; }; + phy_reset_pin: phy-reset-pin { + pins = "gpio77"; + function = "gpio"; + bias-pull-up; + }; + led_enable { gpio-hog; output-high; @@ -100,7 +106,7 @@ }; &mdio { - pinctrl-0 = <&mdio_pins>; + pinctrl-0 = <&mdio_pins>, <&phy_reset_pin>; pinctrl-names = "default"; reset-gpios = <&tlmm 77 GPIO_ACTIVE_LOW>; reset-delay-us = <10000>; |