Commit 61fb67da authored by Corentin Labbe's avatar Corentin Labbe Committed by Linus Walleij
Browse files

ARM: dts: gemini: ns2502: permit to use gigabit



I believed that gigabit was not working due to some unknown missing GPIO.
In fact, gigabit worked when REALTEK_PHY was compiled out.
So the problem was due to PHY delay and we need to use rgmii-id.

Signed-off-by: default avatarCorentin Labbe <clabbe@baylibre.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 568035b0
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -39,10 +39,6 @@ mdio0: mdio {
		phy0: ethernet-phy@1 {
			reg = <1>;
			device_type = "ethernet-phy";
			/* We lack the knowledge of necessary GPIO to achieve
			 * Gigabit
			 */
			max-speed = <100>;
		};
	};
};
@@ -50,7 +46,7 @@ phy0: ethernet-phy@1 {
&ethernet {
	status = "okay";
	ethernet-port@0 {
		phy-mode = "rgmii";
		phy-mode = "rgmii-id";
		phy-handle = <&phy0>;
	};
};