Commit c9987c81 authored by Shawn Guo's avatar Shawn Guo

ARM: dts: imx28-evk: add missing properties for fec

Add missing properties for fec, phy-supply, phy-reset-gpios and
phy-reset-duration, which are required by fec driver for successfully
probe fec from device tree, if bootloader hasn't set those things up.
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
parent 64edbcdd
...@@ -120,6 +120,9 @@ mac0: ethernet@800f0000 { ...@@ -120,6 +120,9 @@ mac0: ethernet@800f0000 {
phy-mode = "rmii"; phy-mode = "rmii";
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&mac0_pins_a>; pinctrl-0 = <&mac0_pins_a>;
phy-supply = <&reg_fec_3v3>;
phy-reset-gpios = <&gpio4 13 0>;
phy-reset-duration = <100>;
status = "okay"; status = "okay";
}; };
...@@ -149,6 +152,14 @@ reg_vddio_sd0: vddio-sd0 { ...@@ -149,6 +152,14 @@ reg_vddio_sd0: vddio-sd0 {
regulator-max-microvolt = <3300000>; regulator-max-microvolt = <3300000>;
gpio = <&gpio3 28 0>; gpio = <&gpio3 28 0>;
}; };
reg_fec_3v3: fec-3v3 {
compatible = "regulator-fixed";
regulator-name = "fec-3v3";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
gpio = <&gpio2 15 0>;
};
}; };
sound { sound {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment