blob: 6b3c23b1e138e8ef260cf122f4cd677d5ec282b8 [file] [log] [blame]
Thomas Petazzoni9ae6f742012-06-13 19:01:28 +02001/*
2 * Device Tree Include file for Marvell Armada 370 family SoC
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Lior Amsalem <alior@marvell.com>
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 *
14 * Contains definitions specific to the Armada 370 SoC that are not
15 * common to all Armada SoCs.
16 */
17
Ezequiel Garcia38149882013-07-26 10:17:56 -030018#include "armada-370-xp.dtsi"
Gregory CLEMENT74898362013-04-12 16:29:10 +020019/include/ "skeleton.dtsi"
Thomas Petazzoni9ae6f742012-06-13 19:01:28 +020020
21/ {
22 model = "Marvell Armada 370 family SoC";
23 compatible = "marvell,armada370", "marvell,armada-370-xp";
24
Thomas Petazzoni397d59f2012-09-19 22:53:01 +020025 aliases {
26 gpio0 = &gpio0;
27 gpio1 = &gpio1;
28 gpio2 = &gpio2;
29 };
30
Thomas Petazzoni9ae6f742012-06-13 19:01:28 +020031 soc {
Ezequiel Garcia5e12a612013-07-26 10:17:57 -030032 compatible = "marvell,armada370-mbus", "simple-bus";
33
Ezequiel Garcia0cd37542013-07-26 10:17:58 -030034 bootrom {
35 compatible = "marvell,bootrom";
36 reg = <MBUS_ID(0x01, 0xe0) 0 0x100000>;
37 };
38
Ezequiel Garcia14fd8ed2013-07-26 10:18:00 -030039 pcie-controller {
40 compatible = "marvell,armada-370-pcie";
41 status = "disabled";
42 device_type = "pci";
43
44 #address-cells = <3>;
45 #size-cells = <2>;
46
Thomas Petazzonid4fa9942013-08-09 22:27:15 +020047 msi-parent = <&mpic>;
Ezequiel Garcia14fd8ed2013-07-26 10:18:00 -030048 bus-range = <0x00 0xff>;
49
50 ranges =
51 <0x82000000 0 0x40000 MBUS_ID(0xf0, 0x01) 0x40000 0 0x00002000
52 0x82000000 0 0x80000 MBUS_ID(0xf0, 0x01) 0x80000 0 0x00002000
53 0x82000000 0x1 0 MBUS_ID(0x04, 0xe8) 0 1 0 /* Port 0.0 MEM */
54 0x81000000 0x1 0 MBUS_ID(0x04, 0xe0) 0 1 0 /* Port 0.0 IO */
55 0x82000000 0x2 0 MBUS_ID(0x08, 0xe8) 0 1 0 /* Port 1.0 MEM */
56 0x81000000 0x2 0 MBUS_ID(0x08, 0xe0) 0 1 0 /* Port 1.0 IO */>;
57
58 pcie@1,0 {
59 device_type = "pci";
60 assigned-addresses = <0x82000800 0 0x40000 0 0x2000>;
61 reg = <0x0800 0 0 0 0>;
62 #address-cells = <3>;
63 #size-cells = <2>;
64 #interrupt-cells = <1>;
65 ranges = <0x82000000 0 0 0x82000000 0x1 0 1 0
66 0x81000000 0 0 0x81000000 0x1 0 1 0>;
67 interrupt-map-mask = <0 0 0 0>;
68 interrupt-map = <0 0 0 0 &mpic 58>;
69 marvell,pcie-port = <0>;
70 marvell,pcie-lane = <0>;
71 clocks = <&gateclk 5>;
72 status = "disabled";
73 };
74
75 pcie@2,0 {
76 device_type = "pci";
77 assigned-addresses = <0x82002800 0 0x80000 0 0x2000>;
78 reg = <0x1000 0 0 0 0>;
79 #address-cells = <3>;
80 #size-cells = <2>;
81 #interrupt-cells = <1>;
82 ranges = <0x82000000 0 0 0x82000000 0x2 0 1 0
83 0x81000000 0 0 0x81000000 0x2 0 1 0>;
84 interrupt-map-mask = <0 0 0 0>;
85 interrupt-map = <0 0 0 0 &mpic 62>;
86 marvell,pcie-port = <1>;
87 marvell,pcie-lane = <0>;
88 clocks = <&gateclk 9>;
89 status = "disabled";
90 };
91 };
92
Gregory CLEMENT467f54b2013-04-12 16:29:09 +020093 internal-regs {
Gregory CLEMENT467f54b2013-04-12 16:29:09 +020094 L2: l2-cache {
95 compatible = "marvell,aurora-outer-cache";
Gregory CLEMENT489e1382013-05-20 16:13:27 +020096 reg = <0x08000 0x1000>;
Gregory CLEMENT467f54b2013-04-12 16:29:09 +020097 cache-id-part = <0x100>;
98 wt-override;
Thomas Petazzonifa1b21d2012-12-21 15:49:05 +010099 };
Ryan Press879d68a2013-03-26 16:32:31 -0700100
Jason Coopera095b1c2013-12-12 13:59:17 +0000101 i2c0: i2c@11000 {
102 reg = <0x11000 0x20>;
103 };
104
105 i2c1: i2c@11100 {
106 reg = <0x11100 0x20>;
107 };
108
109 system-controller@18200 {
110 compatible = "marvell,armada-370-xp-system-controller";
111 reg = <0x18200 0x100>;
Ryan Press879d68a2013-03-26 16:32:31 -0700112 };
Thomas Petazzoni397d59f2012-09-19 22:53:01 +0200113
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200114 pinctrl {
115 compatible = "marvell,mv88f6710-pinctrl";
116 reg = <0x18000 0x38>;
Thomas Petazzoni397d59f2012-09-19 22:53:01 +0200117
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200118 sdio_pins1: sdio-pins1 {
119 marvell,pins = "mpp9", "mpp11", "mpp12",
120 "mpp13", "mpp14", "mpp15";
121 marvell,function = "sd0";
122 };
Thomas Petazzoni397d59f2012-09-19 22:53:01 +0200123
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200124 sdio_pins2: sdio-pins2 {
125 marvell,pins = "mpp47", "mpp48", "mpp49",
126 "mpp50", "mpp51", "mpp52";
127 marvell,function = "sd0";
128 };
Gregory CLEMENT9d202782012-11-17 15:22:24 +0100129
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200130 sdio_pins3: sdio-pins3 {
131 marvell,pins = "mpp48", "mpp49", "mpp50",
132 "mpp51", "mpp52", "mpp53";
133 marvell,function = "sd0";
134 };
Thomas Petazzoni74839832014-02-12 18:20:58 +0100135
Thomas Petazzoni8d001f02014-02-12 18:20:59 +0100136 i2c0_pins: i2c0-pins {
137 marvell,pins = "mpp2", "mpp3";
138 marvell,function = "i2c0";
139 };
140
Thomas Petazzoni74839832014-02-12 18:20:58 +0100141 i2s_pins1: i2s-pins1 {
142 marvell,pins = "mpp5", "mpp6", "mpp7",
143 "mpp8", "mpp9", "mpp10",
144 "mpp12", "mpp13";
145 marvell,function = "audio";
146 };
147
148 i2s_pins2: i2s-pins2 {
149 marvell,pins = "mpp49", "mpp47", "mpp50",
150 "mpp59", "mpp57", "mpp61",
151 "mpp62", "mpp60", "mpp58";
152 marvell,function = "audio";
153 };
Ezequiel Garciaa43f99d2014-08-11 09:14:36 -0300154
155 mdio_pins: mdio-pins {
156 marvell,pins = "mpp17", "mpp18";
157 marvell,function = "ge";
158 };
159
160 ge0_rgmii_pins: ge0-rgmii-pins {
161 marvell,pins = "mpp5", "mpp6", "mpp7", "mpp8",
162 "mpp9", "mpp10", "mpp11", "mpp12",
163 "mpp13", "mpp14", "mpp15", "mpp16";
164 marvell,function = "ge0";
165 };
166
167 ge1_rgmii_pins: ge1-rgmii-pins {
168 marvell,pins = "mpp19", "mpp20", "mpp21", "mpp22",
169 "mpp23", "mpp24", "mpp25", "mpp26",
170 "mpp27", "mpp28", "mpp29", "mpp30";
171 marvell,function = "ge1";
172 };
Thomas Petazzoni0122eee2012-11-20 16:03:12 +0100173 };
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200174
175 gpio0: gpio@18100 {
176 compatible = "marvell,orion-gpio";
177 reg = <0x18100 0x40>;
178 ngpios = <32>;
179 gpio-controller;
180 #gpio-cells = <2>;
181 interrupt-controller;
Thomas Petazzonica609852013-07-30 16:59:02 +0200182 #interrupt-cells = <2>;
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200183 interrupts = <82>, <83>, <84>, <85>;
Thomas Petazzoni0122eee2012-11-20 16:03:12 +0100184 };
Thomas Petazzoni0122eee2012-11-20 16:03:12 +0100185
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200186 gpio1: gpio@18140 {
187 compatible = "marvell,orion-gpio";
188 reg = <0x18140 0x40>;
189 ngpios = <32>;
190 gpio-controller;
191 #gpio-cells = <2>;
192 interrupt-controller;
Thomas Petazzonica609852013-07-30 16:59:02 +0200193 #interrupt-cells = <2>;
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200194 interrupts = <87>, <88>, <89>, <90>;
Thomas Petazzoni0122eee2012-11-20 16:03:12 +0100195 };
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200196
197 gpio2: gpio@18180 {
198 compatible = "marvell,orion-gpio";
199 reg = <0x18180 0x40>;
200 ngpios = <2>;
201 gpio-controller;
202 #gpio-cells = <2>;
203 interrupt-controller;
Thomas Petazzonica609852013-07-30 16:59:02 +0200204 #interrupt-cells = <2>;
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200205 interrupts = <91>;
Thomas Petazzoni0122eee2012-11-20 16:03:12 +0100206 };
Ezequiel Garciab2bb8062013-01-23 12:26:30 -0300207
Jason Coopera095b1c2013-12-12 13:59:17 +0000208 gateclk: clock-gating-control@18220 {
209 compatible = "marvell,armada-370-gating-clock";
210 reg = <0x18220 0x4>;
211 clocks = <&coreclk 0>;
212 #clock-cells = <1>;
Ezequiel Garcia5d3b8832013-08-13 11:43:15 -0300213 };
214
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200215 coreclk: mvebu-sar@18230 {
216 compatible = "marvell,armada-370-core-clock";
217 reg = <0x18230 0x08>;
218 #clock-cells = <1>;
219 };
Ezequiel Garciab2bb8062013-01-23 12:26:30 -0300220
Jason Coopera095b1c2013-12-12 13:59:17 +0000221 thermal@18300 {
222 compatible = "marvell,armada370-thermal";
223 reg = <0x18300 0x4
224 0x18304 0x4>;
225 status = "okay";
226 };
227
Gregory CLEMENTe86ed562014-09-02 10:15:18 +0200228 sscg@18330 {
229 reg = <0x18330 0x4>;
230 };
231
Jason Coopera095b1c2013-12-12 13:59:17 +0000232 interrupt-controller@20000 {
233 reg = <0x20a00 0x1d0>, <0x21870 0x58>;
234 };
235
236 timer@20300 {
237 compatible = "marvell,armada-370-timer";
238 clocks = <&coreclk 2>;
239 };
240
Ezequiel Garcia05afeeb2014-02-10 20:00:32 -0300241 watchdog@20300 {
242 compatible = "marvell,armada-370-wdt";
243 clocks = <&coreclk 2>;
244 };
245
Gregory CLEMENTb6249d42014-04-14 15:50:32 +0200246 cpurst@20800 {
247 compatible = "marvell,armada-370-cpu-reset";
248 reg = <0x20800 0x8>;
249 };
250
Thomas Petazzoni74839832014-02-12 18:20:58 +0100251 audio_controller: audio-controller@30000 {
252 compatible = "marvell,armada370-audio";
253 reg = <0x30000 0x4000>;
254 interrupts = <93>;
255 clocks = <&gateclk 0>;
256 clock-names = "internal";
257 status = "disabled";
258 };
259
Jason Coopera095b1c2013-12-12 13:59:17 +0000260 usb@50000 {
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200261 clocks = <&coreclk 0>;
Jason Coopera095b1c2013-12-12 13:59:17 +0000262 };
263
264 usb@51000 {
265 clocks = <&coreclk 0>;
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200266 };
Ezequiel Garciab2bb8062013-01-23 12:26:30 -0300267
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200268 xor@60800 {
269 compatible = "marvell,orion-xor";
270 reg = <0x60800 0x100
271 0x60A00 0x100>;
272 status = "okay";
Thomas Petazzonia09a0b72013-04-09 23:06:33 +0200273
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200274 xor00 {
275 interrupts = <51>;
276 dmacap,memcpy;
277 dmacap,xor;
278 };
279 xor01 {
280 interrupts = <52>;
281 dmacap,memcpy;
282 dmacap,xor;
283 dmacap,memset;
284 };
285 };
Thomas Petazzonia09a0b72013-04-09 23:06:33 +0200286
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200287 xor@60900 {
288 compatible = "marvell,orion-xor";
289 reg = <0x60900 0x100
290 0x60b00 0x100>;
291 status = "okay";
Thomas Petazzonia09a0b72013-04-09 23:06:33 +0200292
Gregory CLEMENT467f54b2013-04-12 16:29:09 +0200293 xor10 {
294 interrupts = <94>;
295 dmacap,memcpy;
296 dmacap,xor;
297 };
298 xor11 {
299 interrupts = <95>;
300 dmacap,memcpy;
301 dmacap,xor;
302 dmacap,memset;
303 };
304 };
Thomas Petazzonia09a0b72013-04-09 23:06:33 +0200305 };
Thomas Petazzoni9ae6f742012-06-13 19:01:28 +0200306 };
307};