diff options
author | Lukasz Majewski <lukma@denx.de> | 2019-04-01 16:00:05 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-04-02 13:44:18 +0200 |
commit | da60b4301c77fdc0ce16a4f6fb6dc04b69b6282c (patch) | |
tree | 2cf5e280f883825ee0f71ca44a376a643241a45d | |
parent | 8e2b1f2251b4935f6e1b6619ab7421e0600e259c (diff) | |
download | u-boot-da60b4301c77fdc0ce16a4f6fb6dc04b69b6282c.zip u-boot-da60b4301c77fdc0ce16a4f6fb6dc04b69b6282c.tar.gz u-boot-da60b4301c77fdc0ce16a4f6fb6dc04b69b6282c.tar.bz2 |
DTS: Fix ETH PHY reset on HSC|DDC boards (imx53)
After the commit: "eth: dm: fec: Add gpio phy reset binding"
SHA1: efd0b791069af93e9d439a70d1fe2ae8994dbbfa
The FEC ETH driver switched to PHY GPIO reset performed with data defined
in DTS.
For the HSC|DDC boards the GPIO reset signal is active low and hence the
wrong DTS description must be changed (otherwise the reset for ETH is not
properly setup).
Signed-off-by: Lukasz Majewski <lukma@denx.de>
-rw-r--r-- | arch/arm/dts/imx53-kp.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/imx53-kp.dts b/arch/arm/dts/imx53-kp.dts index ca98fb5..4e1d8af 100644 --- a/arch/arm/dts/imx53-kp.dts +++ b/arch/arm/dts/imx53-kp.dts @@ -23,7 +23,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_eth>; phy-mode = "rmii"; - phy-reset-gpios = <&gpio7 6 0>; + phy-reset-gpios = <&gpio7 6 GPIO_ACTIVE_LOW>; status = "okay"; }; |