aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2016-07-08 14:49:29 -0400
committerFlorian Fainelli <f.fainelli@gmail.com>2016-08-08 14:06:28 -0400
commit1bc1d822cdd37829076ffe8dcf0fbe0ee8143c5b (patch)
tree37c085b8c5f267033a2a5b7c10e517de098982e9 /arch/arm/boot
parentbf2289bedef42426250283ce0e44ec64937920d4 (diff)
ARM: dts: NSP: Add BCM958625HR switch ports
Add the layout of the switch ports found on the BCM958625HR reference board. The CPU port is hooked up to the AMAC0 Ethernet controlelr adapter, so we also enable it. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r--arch/arm/boot/dts/bcm958625hr.dts49
1 files changed, 49 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm958625hr.dts b/arch/arm/boot/dts/bcm958625hr.dts
index 03b8bbeb694f..4239e58cf97f 100644
--- a/arch/arm/boot/dts/bcm958625hr.dts
+++ b/arch/arm/boot/dts/bcm958625hr.dts
@@ -109,3 +109,52 @@
109 groups = "nand_grp"; 109 groups = "nand_grp";
110 }; 110 };
111}; 111};
112
113&amac0 {
114 status = "okay";
115};
116
117&srab {
118 compatible = "brcm,bcm58625-srab", "brcm,nsp-srab";
119 status = "okay";
120
121 ports {
122 #address-cells = <1>;
123 #size-cells = <0>;
124
125 port@0 {
126 label = "port0";
127 reg = <0>;
128 };
129
130 port@1 {
131 label = "port1";
132 reg = <1>;
133 };
134
135 port@2 {
136 label = "port2";
137 reg = <2>;
138 };
139
140 port@3 {
141 label = "port3";
142 reg = <3>;
143 };
144
145 port@4 {
146 label = "port4";
147 reg = <4>;
148 };
149
150 port@5 {
151 ethernet = <&amac0>;
152 label = "cpu";
153 reg = <5>;
154 fixed-link {
155 speed = <1000>;
156 full-duplex;
157 };
158 };
159 };
160};