blob: c0aceef7f5b32067be4a26a72de0316f7639ed6a [file] [log] [blame]
Vinayak Kaleee877b52013-04-24 10:07:00 +01001/*
2 * dts file for AppliedMicro (APM) X-Gene Storm SOC
3 *
4 * Copyright (C) 2013, Applied Micro Circuits Corporation
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 */
11
12/ {
13 compatible = "apm,xgene-storm";
14 interrupt-parent = <&gic>;
15 #address-cells = <2>;
16 #size-cells = <2>;
17
18 cpus {
19 #address-cells = <2>;
20 #size-cells = <0>;
21
22 cpu@000 {
23 device_type = "cpu";
24 compatible = "apm,potenza", "arm,armv8";
25 reg = <0x0 0x000>;
26 enable-method = "spin-table";
27 cpu-release-addr = <0x1 0x0000fff8>;
28 };
29 cpu@001 {
30 device_type = "cpu";
31 compatible = "apm,potenza", "arm,armv8";
32 reg = <0x0 0x001>;
33 enable-method = "spin-table";
34 cpu-release-addr = <0x1 0x0000fff8>;
35 };
36 cpu@100 {
37 device_type = "cpu";
38 compatible = "apm,potenza", "arm,armv8";
39 reg = <0x0 0x100>;
40 enable-method = "spin-table";
41 cpu-release-addr = <0x1 0x0000fff8>;
42 };
43 cpu@101 {
44 device_type = "cpu";
45 compatible = "apm,potenza", "arm,armv8";
46 reg = <0x0 0x101>;
47 enable-method = "spin-table";
48 cpu-release-addr = <0x1 0x0000fff8>;
49 };
50 cpu@200 {
51 device_type = "cpu";
52 compatible = "apm,potenza", "arm,armv8";
53 reg = <0x0 0x200>;
54 enable-method = "spin-table";
55 cpu-release-addr = <0x1 0x0000fff8>;
56 };
57 cpu@201 {
58 device_type = "cpu";
59 compatible = "apm,potenza", "arm,armv8";
60 reg = <0x0 0x201>;
61 enable-method = "spin-table";
62 cpu-release-addr = <0x1 0x0000fff8>;
63 };
64 cpu@300 {
65 device_type = "cpu";
66 compatible = "apm,potenza", "arm,armv8";
67 reg = <0x0 0x300>;
68 enable-method = "spin-table";
69 cpu-release-addr = <0x1 0x0000fff8>;
70 };
71 cpu@301 {
72 device_type = "cpu";
73 compatible = "apm,potenza", "arm,armv8";
74 reg = <0x0 0x301>;
75 enable-method = "spin-table";
76 cpu-release-addr = <0x1 0x0000fff8>;
77 };
78 };
79
80 gic: interrupt-controller@78010000 {
81 compatible = "arm,cortex-a15-gic";
82 #interrupt-cells = <3>;
83 interrupt-controller;
84 reg = <0x0 0x78010000 0x0 0x1000>, /* GIC Dist */
85 <0x0 0x78020000 0x0 0x1000>, /* GIC CPU */
86 <0x0 0x78040000 0x0 0x2000>, /* GIC VCPU Control */
87 <0x0 0x78060000 0x0 0x2000>; /* GIC VCPU */
88 interrupts = <1 9 0xf04>; /* GIC Maintenence IRQ */
89 };
90
91 timer {
92 compatible = "arm,armv8-timer";
93 interrupts = <1 0 0xff01>, /* Secure Phys IRQ */
94 <1 13 0xff01>, /* Non-secure Phys IRQ */
95 <1 14 0xff01>, /* Virt IRQ */
96 <1 15 0xff01>; /* Hyp IRQ */
97 clock-frequency = <50000000>;
98 };
99
100 soc {
101 compatible = "simple-bus";
102 #address-cells = <2>;
103 #size-cells = <2>;
104 ranges;
105
Loc Ho3eb15d82013-06-26 11:56:10 -0600106 clocks {
107 #address-cells = <2>;
108 #size-cells = <2>;
109 ranges;
110 refclk: refclk {
111 compatible = "fixed-clock";
112 #clock-cells = <1>;
113 clock-frequency = <100000000>;
114 clock-output-names = "refclk";
115 };
116
117 pcppll: pcppll@17000100 {
118 compatible = "apm,xgene-pcppll-clock";
119 #clock-cells = <1>;
120 clocks = <&refclk 0>;
121 clock-names = "pcppll";
122 reg = <0x0 0x17000100 0x0 0x1000>;
123 clock-output-names = "pcppll";
124 type = <0>;
125 };
126
127 socpll: socpll@17000120 {
128 compatible = "apm,xgene-socpll-clock";
129 #clock-cells = <1>;
130 clocks = <&refclk 0>;
131 clock-names = "socpll";
132 reg = <0x0 0x17000120 0x0 0x1000>;
133 clock-output-names = "socpll";
134 type = <1>;
135 };
136
137 socplldiv2: socplldiv2 {
138 compatible = "fixed-factor-clock";
139 #clock-cells = <1>;
140 clocks = <&socpll 0>;
141 clock-names = "socplldiv2";
142 clock-mult = <1>;
143 clock-div = <2>;
144 clock-output-names = "socplldiv2";
145 };
146
147 qmlclk: qmlclk {
148 compatible = "apm,xgene-device-clock";
149 #clock-cells = <1>;
150 clocks = <&socplldiv2 0>;
151 clock-names = "qmlclk";
152 reg = <0x0 0x1703C000 0x0 0x1000>;
153 reg-names = "csr-reg";
154 clock-output-names = "qmlclk";
155 };
156
157 ethclk: ethclk {
158 compatible = "apm,xgene-device-clock";
159 #clock-cells = <1>;
160 clocks = <&socplldiv2 0>;
161 clock-names = "ethclk";
162 reg = <0x0 0x17000000 0x0 0x1000>;
163 reg-names = "div-reg";
164 divider-offset = <0x238>;
165 divider-width = <0x9>;
166 divider-shift = <0x0>;
167 clock-output-names = "ethclk";
168 };
169
Iyappan Subramanian3d390422014-08-07 15:14:27 -0700170 menetclk: menetclk {
Loc Ho3eb15d82013-06-26 11:56:10 -0600171 compatible = "apm,xgene-device-clock";
172 #clock-cells = <1>;
173 clocks = <&ethclk 0>;
Loc Ho3eb15d82013-06-26 11:56:10 -0600174 reg = <0x0 0x1702C000 0x0 0x1000>;
175 reg-names = "csr-reg";
Iyappan Subramanian3d390422014-08-07 15:14:27 -0700176 clock-output-names = "menetclk";
Loc Ho3eb15d82013-06-26 11:56:10 -0600177 };
Loc Ho71b70ee2014-03-14 17:53:18 -0600178
179 sataphy1clk: sataphy1clk@1f21c000 {
180 compatible = "apm,xgene-device-clock";
181 #clock-cells = <1>;
182 clocks = <&socplldiv2 0>;
183 reg = <0x0 0x1f21c000 0x0 0x1000>;
184 reg-names = "csr-reg";
185 clock-output-names = "sataphy1clk";
186 status = "disabled";
187 csr-offset = <0x4>;
188 csr-mask = <0x00>;
189 enable-offset = <0x0>;
190 enable-mask = <0x06>;
191 };
192
193 sataphy2clk: sataphy1clk@1f22c000 {
194 compatible = "apm,xgene-device-clock";
195 #clock-cells = <1>;
196 clocks = <&socplldiv2 0>;
197 reg = <0x0 0x1f22c000 0x0 0x1000>;
198 reg-names = "csr-reg";
199 clock-output-names = "sataphy2clk";
200 status = "ok";
201 csr-offset = <0x4>;
202 csr-mask = <0x3a>;
203 enable-offset = <0x0>;
204 enable-mask = <0x06>;
205 };
206
207 sataphy3clk: sataphy1clk@1f23c000 {
208 compatible = "apm,xgene-device-clock";
209 #clock-cells = <1>;
210 clocks = <&socplldiv2 0>;
211 reg = <0x0 0x1f23c000 0x0 0x1000>;
212 reg-names = "csr-reg";
213 clock-output-names = "sataphy3clk";
214 status = "ok";
215 csr-offset = <0x4>;
216 csr-mask = <0x3a>;
217 enable-offset = <0x0>;
218 enable-mask = <0x06>;
219 };
Loc Hodb8c0282014-03-14 17:53:21 -0600220
221 sata01clk: sata01clk@1f21c000 {
222 compatible = "apm,xgene-device-clock";
223 #clock-cells = <1>;
224 clocks = <&socplldiv2 0>;
225 reg = <0x0 0x1f21c000 0x0 0x1000>;
226 reg-names = "csr-reg";
227 clock-output-names = "sata01clk";
228 csr-offset = <0x4>;
229 csr-mask = <0x05>;
230 enable-offset = <0x0>;
231 enable-mask = <0x39>;
232 };
233
234 sata23clk: sata23clk@1f22c000 {
235 compatible = "apm,xgene-device-clock";
236 #clock-cells = <1>;
237 clocks = <&socplldiv2 0>;
238 reg = <0x0 0x1f22c000 0x0 0x1000>;
239 reg-names = "csr-reg";
240 clock-output-names = "sata23clk";
241 csr-offset = <0x4>;
242 csr-mask = <0x05>;
243 enable-offset = <0x0>;
244 enable-mask = <0x39>;
245 };
246
247 sata45clk: sata45clk@1f23c000 {
248 compatible = "apm,xgene-device-clock";
249 #clock-cells = <1>;
250 clocks = <&socplldiv2 0>;
251 reg = <0x0 0x1f23c000 0x0 0x1000>;
252 reg-names = "csr-reg";
253 clock-output-names = "sata45clk";
254 csr-offset = <0x4>;
255 csr-mask = <0x05>;
256 enable-offset = <0x0>;
257 enable-mask = <0x39>;
258 };
Loc Ho652ba662014-06-06 14:35:43 -0700259
260 rtcclk: rtcclk@17000000 {
261 compatible = "apm,xgene-device-clock";
262 #clock-cells = <1>;
263 clocks = <&socplldiv2 0>;
264 reg = <0x0 0x17000000 0x0 0x2000>;
265 reg-names = "csr-reg";
266 csr-offset = <0xc>;
267 csr-mask = <0x2>;
268 enable-offset = <0x10>;
269 enable-mask = <0x2>;
270 clock-output-names = "rtcclk";
271 };
Loc Ho3eb15d82013-06-26 11:56:10 -0600272 };
273
Vinayak Kaleee877b52013-04-24 10:07:00 +0100274 serial0: serial@1c020000 {
Vinayak Kale457ced82014-03-26 12:19:06 +0000275 status = "disabled";
Vinayak Kaleee877b52013-04-24 10:07:00 +0100276 device_type = "serial";
Vinayak Kale457ced82014-03-26 12:19:06 +0000277 compatible = "ns16550a";
Vinayak Kaleee877b52013-04-24 10:07:00 +0100278 reg = <0 0x1c020000 0x0 0x1000>;
279 reg-shift = <2>;
280 clock-frequency = <10000000>; /* Updated by bootloader */
281 interrupt-parent = <&gic>;
282 interrupts = <0x0 0x4c 0x4>;
283 };
Loc Ho71b70ee2014-03-14 17:53:18 -0600284
Vinayak Kale457ced82014-03-26 12:19:06 +0000285 serial1: serial@1c021000 {
286 status = "disabled";
287 device_type = "serial";
288 compatible = "ns16550a";
289 reg = <0 0x1c021000 0x0 0x1000>;
290 reg-shift = <2>;
291 clock-frequency = <10000000>; /* Updated by bootloader */
292 interrupt-parent = <&gic>;
293 interrupts = <0x0 0x4d 0x4>;
294 };
295
296 serial2: serial@1c022000 {
297 status = "disabled";
298 device_type = "serial";
299 compatible = "ns16550a";
300 reg = <0 0x1c022000 0x0 0x1000>;
301 reg-shift = <2>;
302 clock-frequency = <10000000>; /* Updated by bootloader */
303 interrupt-parent = <&gic>;
304 interrupts = <0x0 0x4e 0x4>;
305 };
306
307 serial3: serial@1c023000 {
308 status = "disabled";
309 device_type = "serial";
310 compatible = "ns16550a";
311 reg = <0 0x1c023000 0x0 0x1000>;
312 reg-shift = <2>;
313 clock-frequency = <10000000>; /* Updated by bootloader */
314 interrupt-parent = <&gic>;
315 interrupts = <0x0 0x4f 0x4>;
316 };
317
Loc Ho71b70ee2014-03-14 17:53:18 -0600318 phy1: phy@1f21a000 {
319 compatible = "apm,xgene-phy";
320 reg = <0x0 0x1f21a000 0x0 0x100>;
321 #phy-cells = <1>;
322 clocks = <&sataphy1clk 0>;
323 status = "disabled";
324 apm,tx-boost-gain = <30 30 30 30 30 30>;
325 apm,tx-eye-tuning = <2 10 10 2 10 10>;
326 };
327
328 phy2: phy@1f22a000 {
329 compatible = "apm,xgene-phy";
330 reg = <0x0 0x1f22a000 0x0 0x100>;
331 #phy-cells = <1>;
332 clocks = <&sataphy2clk 0>;
333 status = "ok";
334 apm,tx-boost-gain = <30 30 30 30 30 30>;
335 apm,tx-eye-tuning = <1 10 10 2 10 10>;
336 };
337
338 phy3: phy@1f23a000 {
339 compatible = "apm,xgene-phy";
340 reg = <0x0 0x1f23a000 0x0 0x100>;
341 #phy-cells = <1>;
342 clocks = <&sataphy3clk 0>;
343 status = "ok";
344 apm,tx-boost-gain = <31 31 31 31 31 31>;
345 apm,tx-eye-tuning = <2 10 10 2 10 10>;
346 };
Loc Hodb8c0282014-03-14 17:53:21 -0600347
348 sata1: sata@1a000000 {
349 compatible = "apm,xgene-ahci";
350 reg = <0x0 0x1a000000 0x0 0x1000>,
351 <0x0 0x1f210000 0x0 0x1000>,
352 <0x0 0x1f21d000 0x0 0x1000>,
353 <0x0 0x1f21e000 0x0 0x1000>,
354 <0x0 0x1f217000 0x0 0x1000>;
355 interrupts = <0x0 0x86 0x4>;
Catalin Marinas7a8d1ec2014-04-25 16:39:49 +0100356 dma-coherent;
Loc Hodb8c0282014-03-14 17:53:21 -0600357 status = "disabled";
358 clocks = <&sata01clk 0>;
359 phys = <&phy1 0>;
360 phy-names = "sata-phy";
361 };
362
363 sata2: sata@1a400000 {
364 compatible = "apm,xgene-ahci";
365 reg = <0x0 0x1a400000 0x0 0x1000>,
366 <0x0 0x1f220000 0x0 0x1000>,
367 <0x0 0x1f22d000 0x0 0x1000>,
368 <0x0 0x1f22e000 0x0 0x1000>,
369 <0x0 0x1f227000 0x0 0x1000>;
370 interrupts = <0x0 0x87 0x4>;
Catalin Marinas7a8d1ec2014-04-25 16:39:49 +0100371 dma-coherent;
Loc Hodb8c0282014-03-14 17:53:21 -0600372 status = "ok";
373 clocks = <&sata23clk 0>;
374 phys = <&phy2 0>;
375 phy-names = "sata-phy";
376 };
377
378 sata3: sata@1a800000 {
379 compatible = "apm,xgene-ahci";
380 reg = <0x0 0x1a800000 0x0 0x1000>,
381 <0x0 0x1f230000 0x0 0x1000>,
382 <0x0 0x1f23d000 0x0 0x1000>,
383 <0x0 0x1f23e000 0x0 0x1000>;
384 interrupts = <0x0 0x88 0x4>;
Catalin Marinas7a8d1ec2014-04-25 16:39:49 +0100385 dma-coherent;
Loc Hodb8c0282014-03-14 17:53:21 -0600386 status = "ok";
387 clocks = <&sata45clk 0>;
388 phys = <&phy3 0>;
389 phy-names = "sata-phy";
390 };
Loc Ho652ba662014-06-06 14:35:43 -0700391
392 rtc: rtc@10510000 {
393 compatible = "apm,xgene-rtc";
394 reg = <0x0 0x10510000 0x0 0x400>;
395 interrupts = <0x0 0x46 0x4>;
396 #clock-cells = <1>;
397 clocks = <&rtcclk 0>;
398 };
Iyappan Subramanian3d390422014-08-07 15:14:27 -0700399
400 menet: ethernet@17020000 {
401 compatible = "apm,xgene-enet";
402 status = "disabled";
403 reg = <0x0 0x17020000 0x0 0xd100>,
404 <0x0 0X17030000 0x0 0X400>,
405 <0x0 0X10000000 0x0 0X200>;
406 reg-names = "enet_csr", "ring_csr", "ring_cmd";
407 interrupts = <0x0 0x3c 0x4>;
408 dma-coherent;
409 clocks = <&menetclk 0>;
410 local-mac-address = [00 01 73 00 00 01];
411 phy-connection-type = "rgmii";
412 phy-handle = <&menetphy>;
413 mdio {
414 compatible = "apm,xgene-mdio";
415 #address-cells = <1>;
416 #size-cells = <0>;
417 menetphy: menetphy@3 {
418 compatible = "ethernet-phy-id001c.c915";
419 reg = <0x3>;
420 };
421
422 };
423 };
Vinayak Kaleee877b52013-04-24 10:07:00 +0100424 };
425};