xref: /OK3568_Linux_fs/u-boot/arch/arm/dts/armada-xp-mv78260.dtsi (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun/*
2*4882a593Smuzhiyun * Device Tree Include file for Marvell Armada XP family SoC
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * Copyright (C) 2012 Marvell
5*4882a593Smuzhiyun *
6*4882a593Smuzhiyun * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7*4882a593Smuzhiyun *
8*4882a593Smuzhiyun * This file is dual-licensed: you can use it either under the terms
9*4882a593Smuzhiyun * of the GPL or the X11 license, at your option. Note that this dual
10*4882a593Smuzhiyun * licensing only applies to this file, and not this project as a
11*4882a593Smuzhiyun * whole.
12*4882a593Smuzhiyun *
13*4882a593Smuzhiyun *  a) This file is free software; you can redistribute it and/or
14*4882a593Smuzhiyun *     modify it under the terms of the GNU General Public License as
15*4882a593Smuzhiyun *     published by the Free Software Foundation; either version 2 of the
16*4882a593Smuzhiyun *     License, or (at your option) any later version.
17*4882a593Smuzhiyun *
18*4882a593Smuzhiyun *     This file is distributed in the hope that it will be useful
19*4882a593Smuzhiyun *     but WITHOUT ANY WARRANTY; without even the implied warranty of
20*4882a593Smuzhiyun *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21*4882a593Smuzhiyun *     GNU General Public License for more details.
22*4882a593Smuzhiyun *
23*4882a593Smuzhiyun * Or, alternatively
24*4882a593Smuzhiyun *
25*4882a593Smuzhiyun *  b) Permission is hereby granted, free of charge, to any person
26*4882a593Smuzhiyun *     obtaining a copy of this software and associated documentation
27*4882a593Smuzhiyun *     files (the "Software"), to deal in the Software without
28*4882a593Smuzhiyun *     restriction, including without limitation the rights to use
29*4882a593Smuzhiyun *     copy, modify, merge, publish, distribute, sublicense, and/or
30*4882a593Smuzhiyun *     sell copies of the Software, and to permit persons to whom the
31*4882a593Smuzhiyun *     Software is furnished to do so, subject to the following
32*4882a593Smuzhiyun *     conditions:
33*4882a593Smuzhiyun *
34*4882a593Smuzhiyun *     The above copyright notice and this permission notice shall be
35*4882a593Smuzhiyun *     included in all copies or substantial portions of the Software.
36*4882a593Smuzhiyun *
37*4882a593Smuzhiyun *     THE SOFTWARE IS PROVIDED , WITHOUT WARRANTY OF ANY KIND
38*4882a593Smuzhiyun *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
39*4882a593Smuzhiyun *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
40*4882a593Smuzhiyun *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
41*4882a593Smuzhiyun *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY
42*4882a593Smuzhiyun *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
43*4882a593Smuzhiyun *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
44*4882a593Smuzhiyun *     OTHER DEALINGS IN THE SOFTWARE.
45*4882a593Smuzhiyun *
46*4882a593Smuzhiyun * Contains definitions specific to the Armada XP MV78260 SoC that are not
47*4882a593Smuzhiyun * common to all Armada XP SoCs.
48*4882a593Smuzhiyun */
49*4882a593Smuzhiyun
50*4882a593Smuzhiyun#include "armada-xp.dtsi"
51*4882a593Smuzhiyun
52*4882a593Smuzhiyun/ {
53*4882a593Smuzhiyun	model = "Marvell Armada XP MV78260 SoC";
54*4882a593Smuzhiyun	compatible = "marvell,armadaxp-mv78260", "marvell,armadaxp", "marvell,armada-370-xp";
55*4882a593Smuzhiyun
56*4882a593Smuzhiyun	aliases {
57*4882a593Smuzhiyun		gpio0 = &gpio0;
58*4882a593Smuzhiyun		gpio1 = &gpio1;
59*4882a593Smuzhiyun		gpio2 = &gpio2;
60*4882a593Smuzhiyun	};
61*4882a593Smuzhiyun
62*4882a593Smuzhiyun	cpus {
63*4882a593Smuzhiyun		#address-cells = <1>;
64*4882a593Smuzhiyun		#size-cells = <0>;
65*4882a593Smuzhiyun		enable-method = "marvell,armada-xp-smp";
66*4882a593Smuzhiyun
67*4882a593Smuzhiyun		cpu@0 {
68*4882a593Smuzhiyun			device_type = "cpu";
69*4882a593Smuzhiyun			compatible = "marvell,sheeva-v7";
70*4882a593Smuzhiyun			reg = <0>;
71*4882a593Smuzhiyun			clocks = <&cpuclk 0>;
72*4882a593Smuzhiyun			clock-latency = <1000000>;
73*4882a593Smuzhiyun		};
74*4882a593Smuzhiyun
75*4882a593Smuzhiyun		cpu@1 {
76*4882a593Smuzhiyun			device_type = "cpu";
77*4882a593Smuzhiyun			compatible = "marvell,sheeva-v7";
78*4882a593Smuzhiyun			reg = <1>;
79*4882a593Smuzhiyun			clocks = <&cpuclk 1>;
80*4882a593Smuzhiyun			clock-latency = <1000000>;
81*4882a593Smuzhiyun		};
82*4882a593Smuzhiyun	};
83*4882a593Smuzhiyun
84*4882a593Smuzhiyun	soc {
85*4882a593Smuzhiyun		/*
86*4882a593Smuzhiyun		 * MV78260 has 3 PCIe units Gen2.0: Two units can be
87*4882a593Smuzhiyun		 * configured as x4 or quad x1 lanes. One unit is
88*4882a593Smuzhiyun		 * x4 only.
89*4882a593Smuzhiyun		 */
90*4882a593Smuzhiyun		pcie-controller {
91*4882a593Smuzhiyun			compatible = "marvell,armada-xp-pcie";
92*4882a593Smuzhiyun			status = "disabled";
93*4882a593Smuzhiyun			device_type = "pci";
94*4882a593Smuzhiyun
95*4882a593Smuzhiyun			#address-cells = <3>;
96*4882a593Smuzhiyun			#size-cells = <2>;
97*4882a593Smuzhiyun
98*4882a593Smuzhiyun			msi-parent = <&mpic>;
99*4882a593Smuzhiyun			bus-range = <0x00 0xff>;
100*4882a593Smuzhiyun
101*4882a593Smuzhiyun			ranges =
102*4882a593Smuzhiyun			       <0x82000000 0 0x40000 MBUS_ID(0xf0, 0x01) 0x40000 0 0x00002000   /* Port 0.0 registers */
103*4882a593Smuzhiyun				0x82000000 0 0x42000 MBUS_ID(0xf0, 0x01) 0x42000 0 0x00002000   /* Port 2.0 registers */
104*4882a593Smuzhiyun				0x82000000 0 0x44000 MBUS_ID(0xf0, 0x01) 0x44000 0 0x00002000   /* Port 0.1 registers */
105*4882a593Smuzhiyun				0x82000000 0 0x48000 MBUS_ID(0xf0, 0x01) 0x48000 0 0x00002000   /* Port 0.2 registers */
106*4882a593Smuzhiyun				0x82000000 0 0x4c000 MBUS_ID(0xf0, 0x01) 0x4c000 0 0x00002000   /* Port 0.3 registers */
107*4882a593Smuzhiyun				0x82000000 0 0x80000 MBUS_ID(0xf0, 0x01) 0x80000 0 0x00002000   /* Port 1.0 registers */
108*4882a593Smuzhiyun				0x82000000 0 0x84000 MBUS_ID(0xf0, 0x01) 0x84000 0 0x00002000   /* Port 1.1 registers */
109*4882a593Smuzhiyun				0x82000000 0 0x88000 MBUS_ID(0xf0, 0x01) 0x88000 0 0x00002000   /* Port 1.2 registers */
110*4882a593Smuzhiyun				0x82000000 0 0x8c000 MBUS_ID(0xf0, 0x01) 0x8c000 0 0x00002000   /* Port 1.3 registers */
111*4882a593Smuzhiyun				0x82000000 0x1 0     MBUS_ID(0x04, 0xe8) 0 1 0 /* Port 0.0 MEM */
112*4882a593Smuzhiyun				0x81000000 0x1 0     MBUS_ID(0x04, 0xe0) 0 1 0 /* Port 0.0 IO  */
113*4882a593Smuzhiyun				0x82000000 0x2 0     MBUS_ID(0x04, 0xd8) 0 1 0 /* Port 0.1 MEM */
114*4882a593Smuzhiyun				0x81000000 0x2 0     MBUS_ID(0x04, 0xd0) 0 1 0 /* Port 0.1 IO  */
115*4882a593Smuzhiyun				0x82000000 0x3 0     MBUS_ID(0x04, 0xb8) 0 1 0 /* Port 0.2 MEM */
116*4882a593Smuzhiyun				0x81000000 0x3 0     MBUS_ID(0x04, 0xb0) 0 1 0 /* Port 0.2 IO  */
117*4882a593Smuzhiyun				0x82000000 0x4 0     MBUS_ID(0x04, 0x78) 0 1 0 /* Port 0.3 MEM */
118*4882a593Smuzhiyun				0x81000000 0x4 0     MBUS_ID(0x04, 0x70) 0 1 0 /* Port 0.3 IO  */
119*4882a593Smuzhiyun
120*4882a593Smuzhiyun				0x82000000 0x5 0     MBUS_ID(0x08, 0xe8) 0 1 0 /* Port 1.0 MEM */
121*4882a593Smuzhiyun				0x81000000 0x5 0     MBUS_ID(0x08, 0xe0) 0 1 0 /* Port 1.0 IO  */
122*4882a593Smuzhiyun				0x82000000 0x6 0     MBUS_ID(0x08, 0xd8) 0 1 0 /* Port 1.1 MEM */
123*4882a593Smuzhiyun				0x81000000 0x6 0     MBUS_ID(0x08, 0xd0) 0 1 0 /* Port 1.1 IO  */
124*4882a593Smuzhiyun				0x82000000 0x7 0     MBUS_ID(0x08, 0xb8) 0 1 0 /* Port 1.2 MEM */
125*4882a593Smuzhiyun				0x81000000 0x7 0     MBUS_ID(0x08, 0xb0) 0 1 0 /* Port 1.2 IO  */
126*4882a593Smuzhiyun				0x82000000 0x8 0     MBUS_ID(0x08, 0x78) 0 1 0 /* Port 1.3 MEM */
127*4882a593Smuzhiyun				0x81000000 0x8 0     MBUS_ID(0x08, 0x70) 0 1 0 /* Port 1.3 IO  */
128*4882a593Smuzhiyun
129*4882a593Smuzhiyun				0x82000000 0x9 0     MBUS_ID(0x04, 0xf8) 0 1 0 /* Port 2.0 MEM */
130*4882a593Smuzhiyun				0x81000000 0x9 0     MBUS_ID(0x04, 0xf0) 0 1 0 /* Port 2.0 IO  */>;
131*4882a593Smuzhiyun
132*4882a593Smuzhiyun			pcie@1,0 {
133*4882a593Smuzhiyun				device_type = "pci";
134*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x40000 0 0x2000>;
135*4882a593Smuzhiyun				reg = <0x0800 0 0 0 0>;
136*4882a593Smuzhiyun				#address-cells = <3>;
137*4882a593Smuzhiyun				#size-cells = <2>;
138*4882a593Smuzhiyun				#interrupt-cells = <1>;
139*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x1 0 1 0
140*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x1 0 1 0>;
141*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
142*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 58>;
143*4882a593Smuzhiyun				marvell,pcie-port = <0>;
144*4882a593Smuzhiyun				marvell,pcie-lane = <0>;
145*4882a593Smuzhiyun				clocks = <&gateclk 5>;
146*4882a593Smuzhiyun				status = "disabled";
147*4882a593Smuzhiyun			};
148*4882a593Smuzhiyun
149*4882a593Smuzhiyun			pcie@2,0 {
150*4882a593Smuzhiyun				device_type = "pci";
151*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x44000 0 0x2000>;
152*4882a593Smuzhiyun				reg = <0x1000 0 0 0 0>;
153*4882a593Smuzhiyun				#address-cells = <3>;
154*4882a593Smuzhiyun				#size-cells = <2>;
155*4882a593Smuzhiyun				#interrupt-cells = <1>;
156*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x2 0 1 0
157*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x2 0 1 0>;
158*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
159*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 59>;
160*4882a593Smuzhiyun				marvell,pcie-port = <0>;
161*4882a593Smuzhiyun				marvell,pcie-lane = <1>;
162*4882a593Smuzhiyun				clocks = <&gateclk 6>;
163*4882a593Smuzhiyun				status = "disabled";
164*4882a593Smuzhiyun			};
165*4882a593Smuzhiyun
166*4882a593Smuzhiyun			pcie@3,0 {
167*4882a593Smuzhiyun				device_type = "pci";
168*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x48000 0 0x2000>;
169*4882a593Smuzhiyun				reg = <0x1800 0 0 0 0>;
170*4882a593Smuzhiyun				#address-cells = <3>;
171*4882a593Smuzhiyun				#size-cells = <2>;
172*4882a593Smuzhiyun				#interrupt-cells = <1>;
173*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x3 0 1 0
174*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x3 0 1 0>;
175*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
176*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 60>;
177*4882a593Smuzhiyun				marvell,pcie-port = <0>;
178*4882a593Smuzhiyun				marvell,pcie-lane = <2>;
179*4882a593Smuzhiyun				clocks = <&gateclk 7>;
180*4882a593Smuzhiyun				status = "disabled";
181*4882a593Smuzhiyun			};
182*4882a593Smuzhiyun
183*4882a593Smuzhiyun			pcie@4,0 {
184*4882a593Smuzhiyun				device_type = "pci";
185*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x4c000 0 0x2000>;
186*4882a593Smuzhiyun				reg = <0x2000 0 0 0 0>;
187*4882a593Smuzhiyun				#address-cells = <3>;
188*4882a593Smuzhiyun				#size-cells = <2>;
189*4882a593Smuzhiyun				#interrupt-cells = <1>;
190*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x4 0 1 0
191*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x4 0 1 0>;
192*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
193*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 61>;
194*4882a593Smuzhiyun				marvell,pcie-port = <0>;
195*4882a593Smuzhiyun				marvell,pcie-lane = <3>;
196*4882a593Smuzhiyun				clocks = <&gateclk 8>;
197*4882a593Smuzhiyun				status = "disabled";
198*4882a593Smuzhiyun			};
199*4882a593Smuzhiyun
200*4882a593Smuzhiyun			pcie@5,0 {
201*4882a593Smuzhiyun				device_type = "pci";
202*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x80000 0 0x2000>;
203*4882a593Smuzhiyun				reg = <0x2800 0 0 0 0>;
204*4882a593Smuzhiyun				#address-cells = <3>;
205*4882a593Smuzhiyun				#size-cells = <2>;
206*4882a593Smuzhiyun				#interrupt-cells = <1>;
207*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x5 0 1 0
208*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x5 0 1 0>;
209*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
210*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 62>;
211*4882a593Smuzhiyun				marvell,pcie-port = <1>;
212*4882a593Smuzhiyun				marvell,pcie-lane = <0>;
213*4882a593Smuzhiyun				clocks = <&gateclk 9>;
214*4882a593Smuzhiyun				status = "disabled";
215*4882a593Smuzhiyun			};
216*4882a593Smuzhiyun
217*4882a593Smuzhiyun			pcie@6,0 {
218*4882a593Smuzhiyun				device_type = "pci";
219*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x84000 0 0x2000>;
220*4882a593Smuzhiyun				reg = <0x3000 0 0 0 0>;
221*4882a593Smuzhiyun				#address-cells = <3>;
222*4882a593Smuzhiyun				#size-cells = <2>;
223*4882a593Smuzhiyun				#interrupt-cells = <1>;
224*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x6 0 1 0
225*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x6 0 1 0>;
226*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
227*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 63>;
228*4882a593Smuzhiyun				marvell,pcie-port = <1>;
229*4882a593Smuzhiyun				marvell,pcie-lane = <1>;
230*4882a593Smuzhiyun				clocks = <&gateclk 10>;
231*4882a593Smuzhiyun				status = "disabled";
232*4882a593Smuzhiyun			};
233*4882a593Smuzhiyun
234*4882a593Smuzhiyun			pcie@7,0 {
235*4882a593Smuzhiyun				device_type = "pci";
236*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x88000 0 0x2000>;
237*4882a593Smuzhiyun				reg = <0x3800 0 0 0 0>;
238*4882a593Smuzhiyun				#address-cells = <3>;
239*4882a593Smuzhiyun				#size-cells = <2>;
240*4882a593Smuzhiyun				#interrupt-cells = <1>;
241*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x7 0 1 0
242*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x7 0 1 0>;
243*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
244*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 64>;
245*4882a593Smuzhiyun				marvell,pcie-port = <1>;
246*4882a593Smuzhiyun				marvell,pcie-lane = <2>;
247*4882a593Smuzhiyun				clocks = <&gateclk 11>;
248*4882a593Smuzhiyun				status = "disabled";
249*4882a593Smuzhiyun			};
250*4882a593Smuzhiyun
251*4882a593Smuzhiyun			pcie@8,0 {
252*4882a593Smuzhiyun				device_type = "pci";
253*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x8c000 0 0x2000>;
254*4882a593Smuzhiyun				reg = <0x4000 0 0 0 0>;
255*4882a593Smuzhiyun				#address-cells = <3>;
256*4882a593Smuzhiyun				#size-cells = <2>;
257*4882a593Smuzhiyun				#interrupt-cells = <1>;
258*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x8 0 1 0
259*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x8 0 1 0>;
260*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
261*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 65>;
262*4882a593Smuzhiyun				marvell,pcie-port = <1>;
263*4882a593Smuzhiyun				marvell,pcie-lane = <3>;
264*4882a593Smuzhiyun				clocks = <&gateclk 12>;
265*4882a593Smuzhiyun				status = "disabled";
266*4882a593Smuzhiyun			};
267*4882a593Smuzhiyun
268*4882a593Smuzhiyun			pcie@9,0 {
269*4882a593Smuzhiyun				device_type = "pci";
270*4882a593Smuzhiyun				assigned-addresses = <0x82000800 0 0x42000 0 0x2000>;
271*4882a593Smuzhiyun				reg = <0x4800 0 0 0 0>;
272*4882a593Smuzhiyun				#address-cells = <3>;
273*4882a593Smuzhiyun				#size-cells = <2>;
274*4882a593Smuzhiyun				#interrupt-cells = <1>;
275*4882a593Smuzhiyun				ranges = <0x82000000 0 0 0x82000000 0x9 0 1 0
276*4882a593Smuzhiyun					  0x81000000 0 0 0x81000000 0x9 0 1 0>;
277*4882a593Smuzhiyun				interrupt-map-mask = <0 0 0 0>;
278*4882a593Smuzhiyun				interrupt-map = <0 0 0 0 &mpic 99>;
279*4882a593Smuzhiyun				marvell,pcie-port = <2>;
280*4882a593Smuzhiyun				marvell,pcie-lane = <0>;
281*4882a593Smuzhiyun				clocks = <&gateclk 26>;
282*4882a593Smuzhiyun				status = "disabled";
283*4882a593Smuzhiyun			};
284*4882a593Smuzhiyun		};
285*4882a593Smuzhiyun
286*4882a593Smuzhiyun		internal-regs {
287*4882a593Smuzhiyun			gpio0: gpio@18100 {
288*4882a593Smuzhiyun				compatible = "marvell,orion-gpio";
289*4882a593Smuzhiyun				reg = <0x18100 0x40>;
290*4882a593Smuzhiyun				ngpios = <32>;
291*4882a593Smuzhiyun				gpio-controller;
292*4882a593Smuzhiyun				#gpio-cells = <2>;
293*4882a593Smuzhiyun				interrupt-controller;
294*4882a593Smuzhiyun				#interrupt-cells = <2>;
295*4882a593Smuzhiyun				interrupts = <82>, <83>, <84>, <85>;
296*4882a593Smuzhiyun			};
297*4882a593Smuzhiyun
298*4882a593Smuzhiyun			gpio1: gpio@18140 {
299*4882a593Smuzhiyun				compatible = "marvell,orion-gpio";
300*4882a593Smuzhiyun				reg = <0x18140 0x40>;
301*4882a593Smuzhiyun				ngpios = <32>;
302*4882a593Smuzhiyun				gpio-controller;
303*4882a593Smuzhiyun				#gpio-cells = <2>;
304*4882a593Smuzhiyun				interrupt-controller;
305*4882a593Smuzhiyun				#interrupt-cells = <2>;
306*4882a593Smuzhiyun				interrupts = <87>, <88>, <89>, <90>;
307*4882a593Smuzhiyun			};
308*4882a593Smuzhiyun
309*4882a593Smuzhiyun			gpio2: gpio@18180 {
310*4882a593Smuzhiyun				compatible = "marvell,orion-gpio";
311*4882a593Smuzhiyun				reg = <0x18180 0x40>;
312*4882a593Smuzhiyun				ngpios = <3>;
313*4882a593Smuzhiyun				gpio-controller;
314*4882a593Smuzhiyun				#gpio-cells = <2>;
315*4882a593Smuzhiyun				interrupt-controller;
316*4882a593Smuzhiyun				#interrupt-cells = <2>;
317*4882a593Smuzhiyun				interrupts = <91>;
318*4882a593Smuzhiyun			};
319*4882a593Smuzhiyun
320*4882a593Smuzhiyun			eth3: ethernet@34000 {
321*4882a593Smuzhiyun				compatible = "marvell,armada-xp-neta";
322*4882a593Smuzhiyun				reg = <0x34000 0x4000>;
323*4882a593Smuzhiyun				interrupts = <14>;
324*4882a593Smuzhiyun				clocks = <&gateclk 1>;
325*4882a593Smuzhiyun				status = "disabled";
326*4882a593Smuzhiyun			};
327*4882a593Smuzhiyun		};
328*4882a593Smuzhiyun	};
329*4882a593Smuzhiyun};
330*4882a593Smuzhiyun
331*4882a593Smuzhiyun&pinctrl {
332*4882a593Smuzhiyun	compatible = "marvell,mv78260-pinctrl";
333*4882a593Smuzhiyun};
334