blob: f5ad1a6061c79b1ca8ae55f3aec2605b4464e913 [file] [log] [blame]
Usama Arifbec5afd2020-04-17 16:13:39 +01001/*
Usama Ariffdfd2502021-03-30 16:39:19 +01002 * Copyright (c) 2020-2021, Arm Limited. All rights reserved.
Usama Arifbec5afd2020-04-17 16:13:39 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/dts-v1/;
8
9/ {
Usama Ariff1513622021-04-09 17:07:41 +010010 compatible = "arm,tc";
Usama Arifbec5afd2020-04-17 16:13:39 +010011 interrupt-parent = <&gic>;
12 #address-cells = <2>;
13 #size-cells = <2>;
14
15 aliases {
16 serial0 = &soc_uart0;
17 };
18
19 chosen {
Nikos Nikoleris35800bd2021-01-21 13:50:25 +000020 stdout-path = "serial0:115200n8";
Usama Arifbec5afd2020-04-17 16:13:39 +010021 };
22
23 cpus {
24 #address-cells = <1>;
25 #size-cells = <0>;
26
27 cpu-map {
28 cluster0 {
29 core0 {
30 cpu = <&CPU0>;
31 };
32 core1 {
33 cpu = <&CPU1>;
34 };
35 core2 {
36 cpu = <&CPU2>;
37 };
38 core3 {
39 cpu = <&CPU3>;
40 };
Avinash Mehtaf68a0842020-10-28 16:43:28 +000041 core4 {
42 cpu = <&CPU4>;
43 };
44 core5 {
45 cpu = <&CPU5>;
46 };
47 core6 {
48 cpu = <&CPU6>;
49 };
50 core7 {
51 cpu = <&CPU7>;
52 };
Usama Arifbec5afd2020-04-17 16:13:39 +010053 };
54 };
55
Usama Arif57900782020-08-12 17:14:37 +010056 /*
57 * The timings below are just to demonstrate working cpuidle.
58 * These values may be inaccurate.
59 */
60 idle-states {
61 entry-method = "arm,psci";
62
63 CPU_SLEEP_0: cpu-sleep-0 {
64 compatible = "arm,idle-state";
65 arm,psci-suspend-param = <0x0010000>;
66 local-timer-stop;
67 entry-latency-us = <300>;
68 exit-latency-us = <1200>;
69 min-residency-us = <2000>;
70 };
71 CLUSTER_SLEEP_0: cluster-sleep-0 {
72 compatible = "arm,idle-state";
73 arm,psci-suspend-param = <0x1010000>;
74 local-timer-stop;
75 entry-latency-us = <400>;
76 exit-latency-us = <1200>;
77 min-residency-us = <2500>;
78 };
79 };
80
Chris Kayc2d29ba2021-05-18 18:49:51 +010081 amus {
82 amu: amu-0 {
83 #address-cells = <1>;
84 #size-cells = <0>;
85
86 mpmm_gear0: counter@0 {
87 reg = <0>;
88
89 enable-at-el3;
90 };
91
92 mpmm_gear1: counter@1 {
93 reg = <1>;
94
95 enable-at-el3;
96 };
97
98 mpmm_gear2: counter@2 {
99 reg = <2>;
100
101 enable-at-el3;
102 };
103 };
104 };
105
Usama Arifbec5afd2020-04-17 16:13:39 +0100106 CPU0:cpu@0 {
107 device_type = "cpu";
108 compatible = "arm,armv8";
109 reg = <0x0>;
110 enable-method = "psci";
111 clocks = <&scmi_dvfs 0>;
Usama Arif57900782020-08-12 17:14:37 +0100112 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100113 capacity-dmips-mhz = <406>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100114 amu = <&amu>;
115 supports-mpmm;
Usama Arifbec5afd2020-04-17 16:13:39 +0100116 };
117
118 CPU1:cpu@100 {
119 device_type = "cpu";
120 compatible = "arm,armv8";
121 reg = <0x100>;
122 enable-method = "psci";
123 clocks = <&scmi_dvfs 0>;
Usama Arif57900782020-08-12 17:14:37 +0100124 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100125 capacity-dmips-mhz = <406>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100126 amu = <&amu>;
127 supports-mpmm;
Usama Arifbec5afd2020-04-17 16:13:39 +0100128 };
129
130 CPU2:cpu@200 {
131 device_type = "cpu";
132 compatible = "arm,armv8";
133 reg = <0x200>;
134 enable-method = "psci";
135 clocks = <&scmi_dvfs 0>;
Usama Arif57900782020-08-12 17:14:37 +0100136 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100137 capacity-dmips-mhz = <406>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100138 amu = <&amu>;
139 supports-mpmm;
Usama Arifbec5afd2020-04-17 16:13:39 +0100140 };
141
142 CPU3:cpu@300 {
143 device_type = "cpu";
144 compatible = "arm,armv8";
145 reg = <0x300>;
146 enable-method = "psci";
147 clocks = <&scmi_dvfs 0>;
Usama Arif57900782020-08-12 17:14:37 +0100148 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100149 capacity-dmips-mhz = <406>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100150 amu = <&amu>;
151 supports-mpmm;
Usama Arifbec5afd2020-04-17 16:13:39 +0100152 };
153
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000154 CPU4:cpu@400 {
155 device_type = "cpu";
156 compatible = "arm,armv8";
157 reg = <0x400>;
158 enable-method = "psci";
Usama Arif75edb752021-02-03 15:40:46 +0000159 clocks = <&scmi_dvfs 1>;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000160 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100161 capacity-dmips-mhz = <912>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100162 amu = <&amu>;
163 supports-mpmm;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000164 };
165
166 CPU5:cpu@500 {
167 device_type = "cpu";
168 compatible = "arm,armv8";
169 reg = <0x500>;
170 enable-method = "psci";
Usama Arif75edb752021-02-03 15:40:46 +0000171 clocks = <&scmi_dvfs 1>;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000172 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100173 capacity-dmips-mhz = <912>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100174 amu = <&amu>;
175 supports-mpmm;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000176 };
177
178 CPU6:cpu@600 {
179 device_type = "cpu";
180 compatible = "arm,armv8";
181 reg = <0x600>;
182 enable-method = "psci";
Usama Arif75edb752021-02-03 15:40:46 +0000183 clocks = <&scmi_dvfs 1>;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000184 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100185 capacity-dmips-mhz = <912>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100186 amu = <&amu>;
187 supports-mpmm;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000188 };
189
190 CPU7:cpu@700 {
191 device_type = "cpu";
192 compatible = "arm,armv8";
193 reg = <0x700>;
194 enable-method = "psci";
Usama Arif410d50d2021-04-07 11:48:22 +0100195 clocks = <&scmi_dvfs 2>;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000196 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Usama Arifecbc8462021-06-14 12:38:37 +0100197 capacity-dmips-mhz = <1024>;
Chris Kayc2d29ba2021-05-18 18:49:51 +0100198 amu = <&amu>;
199 supports-mpmm;
Avinash Mehtaf68a0842020-10-28 16:43:28 +0000200 };
201
Usama Arifbec5afd2020-04-17 16:13:39 +0100202 };
203
Arunachalam Ganapathy948bb442020-12-14 12:31:32 +0000204 reserved-memory {
205 #address-cells = <2>;
206 #size-cells = <2>;
207 ranges;
208
209 optee@0xfce00000 {
210 reg = <0x00000000 0xfce00000 0 0x00200000>;
211 no-map;
212 };
213 };
214
Usama Arifbec5afd2020-04-17 16:13:39 +0100215 psci {
Usama Arif7a64bfa2021-05-27 20:09:17 +0100216 compatible = "arm,psci-1.0", "arm,psci-0.2";
Usama Arifbec5afd2020-04-17 16:13:39 +0100217 method = "smc";
218 };
219
220 sram: sram@6000000 {
221 compatible = "mmio-sram";
222 reg = <0x0 0x06000000 0x0 0x8000>;
223
224 #address-cells = <1>;
225 #size-cells = <1>;
226 ranges = <0 0x0 0x06000000 0x8000>;
227
228 cpu_scp_scmi_mem: scp-shmem@0 {
229 compatible = "arm,scmi-shmem";
230 reg = <0x0 0x80>;
231 };
232 };
233
234 mbox_db_rx: mhu@45010000 {
Usama Arifb315c702021-05-27 20:01:39 +0100235 compatible = "arm,mhuv2-rx","arm,primecell";
Usama Arifbec5afd2020-04-17 16:13:39 +0100236 reg = <0x0 0x45010000 0x0 0x1000>;
237 clocks = <&soc_refclk100mhz>;
238 clock-names = "apb_pclk";
Usama Arifb315c702021-05-27 20:01:39 +0100239 #mbox-cells = <2>;
Usama Arif884f40d2020-08-18 12:56:44 +0100240 interrupts = <0 317 4>;
Usama Arifbec5afd2020-04-17 16:13:39 +0100241 interrupt-names = "mhu_rx";
242 mhu-protocol = "doorbell";
Usama Arifb315c702021-05-27 20:01:39 +0100243 arm,mhuv2-protocols = <0 1>;
Usama Arifbec5afd2020-04-17 16:13:39 +0100244 };
245
246 mbox_db_tx: mhu@45000000 {
Usama Arifb315c702021-05-27 20:01:39 +0100247 compatible = "arm,mhuv2-tx","arm,primecell";
Usama Arifbec5afd2020-04-17 16:13:39 +0100248 reg = <0x0 0x45000000 0x0 0x1000>;
249 clocks = <&soc_refclk100mhz>;
250 clock-names = "apb_pclk";
Usama Arifb315c702021-05-27 20:01:39 +0100251 #mbox-cells = <2>;
Usama Arifbec5afd2020-04-17 16:13:39 +0100252 interrupt-names = "mhu_tx";
253 mhu-protocol = "doorbell";
Usama Arifb315c702021-05-27 20:01:39 +0100254 arm,mhuv2-protocols = <0 1>;
Usama Arifbec5afd2020-04-17 16:13:39 +0100255 };
256
257 scmi {
258 compatible = "arm,scmi";
Usama Arifbec5afd2020-04-17 16:13:39 +0100259 mbox-names = "tx", "rx";
Usama Arifb315c702021-05-27 20:01:39 +0100260 mboxes = <&mbox_db_tx 0 0 &mbox_db_rx 0 0 >;
Usama Arifbec5afd2020-04-17 16:13:39 +0100261 shmem = <&cpu_scp_scmi_mem &cpu_scp_scmi_mem>;
262 #address-cells = <1>;
263 #size-cells = <0>;
264
265 scmi_dvfs: protocol@13 {
266 reg = <0x13>;
267 #clock-cells = <1>;
268 };
269
270 scmi_clk: protocol@14 {
271 reg = <0x14>;
272 #clock-cells = <1>;
273 };
274 };
275
276 gic: interrupt-controller@2c010000 {
277 compatible = "arm,gic-600", "arm,gic-v3";
278 #address-cells = <2>;
279 #interrupt-cells = <3>;
280 #size-cells = <2>;
281 ranges;
282 interrupt-controller;
283 reg = <0x0 0x30000000 0 0x10000>, /* GICD */
Usama Ariffdfd2502021-03-30 16:39:19 +0100284 <0x0 0x30080000 0 0x200000>; /* GICR */
Usama Arifbec5afd2020-04-17 16:13:39 +0100285 interrupts = <0x1 0x9 0x4>;
286 };
287
288 timer {
289 compatible = "arm,armv8-timer";
290 interrupts = <0x1 13 0x8>,
291 <0x1 14 0x8>,
292 <0x1 11 0x8>,
293 <0x1 10 0x8>;
294 };
295
296 soc_refclk100mhz: refclk100mhz {
297 compatible = "fixed-clock";
298 #clock-cells = <0>;
299 clock-frequency = <100000000>;
300 clock-output-names = "apb_pclk";
301 };
302
303 soc_refclk60mhz: refclk60mhz {
304 compatible = "fixed-clock";
305 #clock-cells = <0>;
306 clock-frequency = <60000000>;
307 clock-output-names = "iofpga_clk";
308 };
309
310 soc_uartclk: uartclk {
311 compatible = "fixed-clock";
312 #clock-cells = <0>;
313 clock-frequency = <50000000>;
314 clock-output-names = "uartclk";
315 };
316
317 soc_uart0: uart@7ff80000 {
318 compatible = "arm,pl011", "arm,primecell";
319 reg = <0x0 0x7ff80000 0x0 0x1000>;
320 interrupts = <0x0 116 0x4>;
321 clocks = <&soc_uartclk>, <&soc_refclk100mhz>;
322 clock-names = "uartclk", "apb_pclk";
323 status = "okay";
324 };
325
326 vencoder {
327 compatible = "drm,virtual-encoder";
328
329 port {
330 vencoder_in: endpoint {
Avinash Mehtadf71a602020-07-22 16:40:07 +0100331 remote-endpoint = <&dp_pl0_out0>;
Usama Arifbec5afd2020-04-17 16:13:39 +0100332 };
333 };
334
335 display-timings {
336 panel-timing {
337 clock-frequency = <25175000>;
338 hactive = <640>;
339 vactive = <480>;
340 hfront-porch = <16>;
341 hback-porch = <48>;
342 hsync-len = <96>;
343 vfront-porch = <10>;
344 vback-porch = <33>;
345 vsync-len = <2>;
346 };
347 };
348
349 };
350
351 hdlcd: hdlcd@7ff60000 {
352 compatible = "arm,hdlcd";
353 reg = <0x0 0x7ff60000 0x0 0x1000>;
354 interrupts = <0x0 117 0x4>;
355 clocks = <&fake_hdlcd_clk>;
356 clock-names = "pxlclk";
Avinash Mehtadf71a602020-07-22 16:40:07 +0100357 status = "disabled";
Usama Arifbec5afd2020-04-17 16:13:39 +0100358
359 port {
360 hdlcd_out: endpoint {
361 remote-endpoint = <&vencoder_in>;
362 };
363 };
364 };
365
366 fake_hdlcd_clk: fake-hdlcd-clk {
367 compatible = "fixed-clock";
368 #clock-cells = <0>;
369 clock-frequency = <25175000>;
370 clock-output-names = "pxlclk";
371 };
372
373 ethernet@18000000 {
374 compatible = "smsc,lan91c111";
375 reg = <0x0 0x18000000 0x0 0x10000>;
376 interrupts = <0 109 4>;
377 };
378
379 kmi@1c060000 {
380 compatible = "arm,pl050", "arm,primecell";
381 reg = <0x0 0x001c060000 0x0 0x1000>;
382 interrupts = <0 197 4>;
383 clocks = <&bp_clock24mhz>, <&bp_clock24mhz>;
384 clock-names = "KMIREFCLK", "apb_pclk";
385 };
386
387 kmi@1c070000 {
388 compatible = "arm,pl050", "arm,primecell";
389 reg = <0x0 0x001c070000 0x0 0x1000>;
390 interrupts = <0 103 4>;
391 clocks = <&bp_clock24mhz>, <&bp_clock24mhz>;
392 clock-names = "KMIREFCLK", "apb_pclk";
393 };
394
395 bp_clock24mhz: clock24mhz {
396 compatible = "fixed-clock";
397 #clock-cells = <0>;
398 clock-frequency = <24000000>;
399 clock-output-names = "bp:clock24mhz";
400 };
401
402 virtio_block@1c130000 {
403 compatible = "virtio,mmio";
404 reg = <0x0 0x1c130000 0x0 0x200>;
405 interrupts = <0 204 4>;
406 };
407
Usama Arif1cd56dc2020-06-10 16:27:53 +0100408 sysreg: sysreg@1c010000 {
409 compatible = "arm,vexpress-sysreg";
410 reg = <0x0 0x001c010000 0x0 0x1000>;
411 gpio-controller;
412 #gpio-cells = <2>;
413 };
414
415 fixed_3v3: v2m-3v3 {
416 compatible = "regulator-fixed";
417 regulator-name = "3V3";
418 regulator-min-microvolt = <3300000>;
419 regulator-max-microvolt = <3300000>;
420 regulator-always-on;
421 };
422
423 mmci@1c050000 {
424 compatible = "arm,pl180", "arm,primecell";
425 reg = <0x0 0x001c050000 0x0 0x1000>;
426 interrupts = <0 107 0x4>,
427 <0 108 0x4>;
428 cd-gpios = <&sysreg 0 0>;
429 wp-gpios = <&sysreg 1 0>;
430 bus-width = <8>;
431 max-frequency = <12000000>;
432 vmmc-supply = <&fixed_3v3>;
433 clocks = <&bp_clock24mhz>, <&bp_clock24mhz>;
434 clock-names = "mclk", "apb_pclk";
435 };
436
Anders Dellien7a849802022-01-01 21:51:21 +0000437 gpu: gpu@2d000000 {
438 compatible = "arm,mali-midgard";
439 reg = <0x0 0x2d000000 0x0 0x200000>;
440 interrupts = <0 66 4>, <0 67 4>, <0 65 4>;
441 interrupt-names = "JOB", "MMU", "GPU";
442 clocks = <&soc_refclk100mhz>;
443 clock-names = "clk_mali";
444 operating-points = <
445 /* KHz uV */
446 50000 820000
447 >;
448 };
449
Usama Arifbec5afd2020-04-17 16:13:39 +0100450 dp0: display@2cc00000 {
451 #address-cells = <1>;
452 #size-cells = <0>;
453 compatible = "arm,mali-d71";
454 reg = <0 0x2cc00000 0 0x20000>;
455 interrupts = <0 69 4>;
456 interrupt-names = "DPU";
457 clocks = <&scmi_clk 0>;
458 clock-names = "aclk";
Usama Arifbec5afd2020-04-17 16:13:39 +0100459 pl0: pipeline@0 {
460 reg = <0>;
461 clocks = <&scmi_clk 1>;
462 clock-names = "pxclk";
463 pl_id = <0>;
464 ports {
465 #address-cells = <1>;
466 #size-cells = <0>;
467 port@0 {
468 reg = <0>;
469 dp_pl0_out0: endpoint {
470 remote-endpoint = <&vencoder_in>;
471 };
472 };
473 };
474 };
475
476 pl1: pipeline@1 {
477 reg = <1>;
478 clocks = <&scmi_clk 2>;
479 clock-names = "pxclk";
480 pl_id = <1>;
481 ports {
482 #address-cells = <1>;
483 #size-cells = <0>;
484 port@0 {
485 reg = <0>;
486 };
487 };
488 };
489 };
Arunachalam Ganapathyc44e43d2020-11-17 15:05:01 +0000490
Davidson K65361052021-10-13 18:49:41 +0530491 ete0 {
492 compatible = "arm,embedded-trace-extension";
493 cpu = <&CPU0>;
494 };
495
496 ete1 {
497 compatible = "arm,embedded-trace-extension";
498 cpu = <&CPU1>;
499 };
500
501 ete2 {
502 compatible = "arm,embedded-trace-extension";
503 cpu = <&CPU2>;
504 };
505
506 ete3 {
507 compatible = "arm,embedded-trace-extension";
508 cpu = <&CPU3>;
509 };
510
511 ete4 {
512 compatible = "arm,embedded-trace-extension";
513 cpu = <&CPU4>;
514 };
515
516 ete5 {
517 compatible = "arm,embedded-trace-extension";
518 cpu = <&CPU5>;
519 };
520
521 ete6 {
522 compatible = "arm,embedded-trace-extension";
523 cpu = <&CPU6>;
524 };
525
526 ete7 {
527 compatible = "arm,embedded-trace-extension";
528 cpu = <&CPU7>;
529 };
530
531 trbe0 {
532 compatible = "arm,trace-buffer-extension";
533 interrupts = <1 2 4>;
534 };
Usama Arifbec5afd2020-04-17 16:13:39 +0100535};