aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-11-09 09:12:47 -0500
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-11-16 04:17:46 -0500
commitf69c92f4fe4a6c9730554b3a7bb3253e7360ca32 (patch)
tree436483c83a71ae24dd5a8b8b1c38ce891413d146 /arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts
parentf01959a96f23d3e005cfb0ab154695a3e014cc13 (diff)
arm: mvebu: enable Ethernet controllers on OpenBlocks AX3-4 platform
The PlatHome OpenBlocks AX3-4 platform has 4 Ethernet ports, connected to a single quad-port PHY through SGMII. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts')
-rw-r--r--arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts43
1 files changed, 43 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts b/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts
index cb86853fef95..bb8d83cfbb50 100644
--- a/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts
+++ b/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts
@@ -65,5 +65,48 @@
65 linux,default-trigger = "heartbeat"; 65 linux,default-trigger = "heartbeat";
66 }; 66 };
67 }; 67 };
68
69 mdio {
70 phy0: ethernet-phy@0 {
71 reg = <0>;
72 };
73
74 phy1: ethernet-phy@1 {
75 reg = <1>;
76 };
77
78 phy2: ethernet-phy@2 {
79 reg = <2>;
80 };
81
82 phy3: ethernet-phy@3 {
83 reg = <3>;
84 };
85 };
86
87 ethernet@d0070000 {
88 clock-frequency = <250000000>;
89 status = "okay";
90 phy = <&phy0>;
91 phy-mode = "sgmii";
92 };
93 ethernet@d0074000 {
94 clock-frequency = <250000000>;
95 status = "okay";
96 phy = <&phy1>;
97 phy-mode = "sgmii";
98 };
99 ethernet@d0030000 {
100 clock-frequency = <250000000>;
101 status = "okay";
102 phy = <&phy2>;
103 phy-mode = "sgmii";
104 };
105 ethernet@d0034000 {
106 clock-frequency = <250000000>;
107 status = "okay";
108 phy = <&phy3>;
109 phy-mode = "sgmii";
110 };
68 }; 111 };
69}; 112};