[openwrt/openwrt] mpc85xx: define reset-delay for WS-AP3825i eth PHY

LEDE Commits lede-commits at lists.infradead.org
Mon Apr 25 16:05:51 PDT 2022


blocktrron pushed a commit to openwrt/openwrt.git, branch openwrt-22.03:
https://git.openwrt.org/084053ddf77837f404f37c0d146be62ecc12b825

commit 084053ddf77837f404f37c0d146be62ecc12b825
Author: David Bauer <mail at david-bauer.net>
AuthorDate: Sun Apr 24 23:48:42 2022 +0200

    mpc85xx: define reset-delay for WS-AP3825i eth PHY
    
    The WS-AP3825i uses Atheros PHYs which according to the datasheet
    require the reset to be asserted for at least 1 ms.
    
    This fixes broken eth1 upon soft-reboot. eth0 is no affected, as the
    ifup / ifdown cycle in preinit prevents this issue from happening when
    the system is ready.
    
    Reported-by: Tom Herbers <freifunk at tomherbers.de>
    Signed-off-by: David Bauer <mail at david-bauer.net>
    (cherry picked from commit 8b3c313515c1ae37be9d61a4e92c4bf4b43f605f)
---
 target/linux/mpc85xx/files/arch/powerpc/boot/dts/ws-ap3825i.dts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/target/linux/mpc85xx/files/arch/powerpc/boot/dts/ws-ap3825i.dts b/target/linux/mpc85xx/files/arch/powerpc/boot/dts/ws-ap3825i.dts
index 43c044b4fc..26f742b222 100644
--- a/target/linux/mpc85xx/files/arch/powerpc/boot/dts/ws-ap3825i.dts
+++ b/target/linux/mpc85xx/files/arch/powerpc/boot/dts/ws-ap3825i.dts
@@ -149,12 +149,16 @@
 				interrupts = <3 1 0 0>;
 				reg = <0x5>;
 				reset-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
+				reset-assert-us = <10000>;
+				reset-deassert-us = <10000>;
 			};
 
 			phy2: ethernet-phy at 2 {
 				interrupts = <1 1 0 0>;
 				reg = <0x6>;
 				reset-gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
+				reset-assert-us = <10000>;
+				reset-deassert-us = <10000>;
 			};
 		};
 




More information about the lede-commits mailing list