diff options
author | Valentin Longchamp <valentin.longchamp@keymile.com> | 2014-05-16 12:49:03 +0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-05-16 21:57:27 +0400 |
commit | 599a136e5f4a7c3ca324fb2749ca235cd90c9d51 (patch) | |
tree | e730e08e0f6763ac79d6fb6b42e41c59ab0f5cf8 /arch/arm/boot/dts/kirkwood-km_fixedeth.dts | |
parent | 35f5c69b456f21ec2cd494866fabbb310205f35f (diff) | |
download | linux-599a136e5f4a7c3ca324fb2749ca235cd90c9d51.tar.xz |
ARM: dts: kirkwood: add kirkwood-km_fixedeth DTS file
Besides our Kirkwood Reference design, there is another group of board
on which the eth interface is not connected to a phy but to a switch for
some board internal communication. For these designs, the memory also is
raised to 256MB.
The configuration of the switch is handled by an EEPROM or by the
bootloader, but on the kirkwood side, the port is always configured as
1000 Mbits, full duplex.
Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
Link: https://lkml.kernel.org/r/1400230143-15620-4-git-send-email-valentin.longchamp@keymile.com
Acked-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot/dts/kirkwood-km_fixedeth.dts')
-rw-r--r-- | arch/arm/boot/dts/kirkwood-km_fixedeth.dts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/kirkwood-km_fixedeth.dts b/arch/arm/boot/dts/kirkwood-km_fixedeth.dts new file mode 100644 index 000000000000..9895f2b10f8a --- /dev/null +++ b/arch/arm/boot/dts/kirkwood-km_fixedeth.dts @@ -0,0 +1,23 @@ +/dts-v1/; + +#include "kirkwood.dtsi" +#include "kirkwood-98dx4122.dtsi" +#include "kirkwood-km_common.dtsi" + +/ { + model = "Keymile Kirkwood Fixed Eth"; + compatible = "keymile,km_fixedeth", "marvell,kirkwood-98DX4122", "marvell,kirkwood"; + + memory { + device_type = "memory"; + reg = <0x00000000 0x10000000>; + }; +}; + +ð0 { + status = "okay"; + ethernet0-port@0 { + speed = <1000>; /* <SPEED_1000> */ + duplex = <1>; /* <DUPLEX_FULL> */ + }; +}; |