Commit 4cd4bf4c authored by Nicolas Ferre's avatar Nicolas Ferre Committed by Greg Kroah-Hartman

ARM: at91/dt: sama5d3 xplained: add phy address for macb1

commit 98b80987 upstream.

After 57a38eff (net: phy: micrel: disable broadcast for KSZ8081/KSZ8091)
the macb1 interface refuses to work properly because it tries
to cling to address 0 which isn't able to communicate in broadcast with
the mac anymore. The micrel phy on the board is actually configured
to show up at address 1.
Adding the phy node and its real address fixes the issue.
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
Cc: Johan Hovold <johan@kernel.org>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 22a08adb
...@@ -167,7 +167,13 @@ i2c2: i2c@f801c000 { ...@@ -167,7 +167,13 @@ i2c2: i2c@f801c000 {
macb1: ethernet@f802c000 { macb1: ethernet@f802c000 {
phy-mode = "rmii"; phy-mode = "rmii";
#address-cells = <1>;
#size-cells = <0>;
status = "okay"; status = "okay";
ethernet-phy@1 {
reg = <0x1>;
};
}; };
dbgu: serial@ffffee00 { dbgu: serial@ffffee00 {
......
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