blob: ab4c919e3e1659b38d799211e59008bd9c0ce833 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Device Tree Include file for NXP Layerscape-1043A family SoC.
4 *
5 * Copyright 2014-2015 Freescale Semiconductor, Inc.
6 * Copyright 2018, 2020 NXP
7 *
8 * Mingkai Hu <Mingkai.hu@freescale.com>
9 */
10
11#include <dt-bindings/clock/fsl,qoriq-clockgen.h>
12#include <dt-bindings/thermal/thermal.h>
13#include <dt-bindings/interrupt-controller/arm-gic.h>
14#include <dt-bindings/gpio/gpio.h>
15
16/ {
17 compatible = "fsl,ls1043a";
18 interrupt-parent = <&gic>;
19 #address-cells = <2>;
20 #size-cells = <2>;
21
22 aliases {
23 crypto = &crypto;
24 fman0 = &fman0;
25 ethernet0 = &enet0;
26 ethernet1 = &enet1;
27 ethernet2 = &enet2;
28 ethernet3 = &enet3;
29 ethernet4 = &enet4;
30 ethernet5 = &enet5;
31 ethernet6 = &enet6;
32 rtc1 = &ftm_alarm0;
33 };
34
35 cpus {
36 #address-cells = <1>;
37 #size-cells = <0>;
38
39 /*
40 * We expect the enable-method for cpu's to be "psci", but this
41 * is dependent on the SoC FW, which will fill this in.
42 *
43 * Currently supported enable-method is psci v0.2
44 */
45 cpu0: cpu@0 {
46 device_type = "cpu";
47 compatible = "arm,cortex-a53";
48 reg = <0x0>;
49 clocks = <&clockgen QORIQ_CLK_CMUX 0>;
50 next-level-cache = <&l2>;
51 cpu-idle-states = <&CPU_PH20>;
52 #cooling-cells = <2>;
53 };
54
55 cpu1: cpu@1 {
56 device_type = "cpu";
57 compatible = "arm,cortex-a53";
58 reg = <0x1>;
59 clocks = <&clockgen QORIQ_CLK_CMUX 0>;
60 next-level-cache = <&l2>;
61 cpu-idle-states = <&CPU_PH20>;
62 #cooling-cells = <2>;
63 };
64
65 cpu2: cpu@2 {
66 device_type = "cpu";
67 compatible = "arm,cortex-a53";
68 reg = <0x2>;
69 clocks = <&clockgen QORIQ_CLK_CMUX 0>;
70 next-level-cache = <&l2>;
71 cpu-idle-states = <&CPU_PH20>;
72 #cooling-cells = <2>;
73 };
74
75 cpu3: cpu@3 {
76 device_type = "cpu";
77 compatible = "arm,cortex-a53";
78 reg = <0x3>;
79 clocks = <&clockgen QORIQ_CLK_CMUX 0>;
80 next-level-cache = <&l2>;
81 cpu-idle-states = <&CPU_PH20>;
82 #cooling-cells = <2>;
83 };
84
85 l2: l2-cache {
86 compatible = "cache";
87 cache-level = <2>;
88 cache-unified;
89 };
90 };
91
92 idle-states {
93 /*
94 * PSCI node is not added default, U-boot will add missing
95 * parts if it determines to use PSCI.
96 */
97 entry-method = "psci";
98
99 CPU_PH20: cpu-ph20 {
100 compatible = "arm,idle-state";
101 idle-state-name = "PH20";
102 arm,psci-suspend-param = <0x0>;
103 entry-latency-us = <1000>;
104 exit-latency-us = <1000>;
105 min-residency-us = <3000>;
106 };
107 };
108
109 memory@80000000 {
110 device_type = "memory";
111 reg = <0x0 0x80000000 0 0x80000000>;
112 /* DRAM space 1, size: 2GiB DRAM */
113 };
114
115 reserved-memory {
116 #address-cells = <2>;
117 #size-cells = <2>;
118 ranges;
119
120 bman_fbpr: bman-fbpr {
121 compatible = "shared-dma-pool";
122 size = <0 0x1000000>;
123 alignment = <0 0x1000000>;
124 no-map;
125 };
126
127 qman_fqd: qman-fqd {
128 compatible = "shared-dma-pool";
129 size = <0 0x400000>;
130 alignment = <0 0x400000>;
131 no-map;
132 };
133
134 qman_pfdr: qman-pfdr {
135 compatible = "shared-dma-pool";
136 size = <0 0x2000000>;
137 alignment = <0 0x2000000>;
138 no-map;
139 };
140 };
141
142 sysclk: sysclk {
143 compatible = "fixed-clock";
144 #clock-cells = <0>;
145 clock-frequency = <100000000>;
146 clock-output-names = "sysclk";
147 };
148
149 reboot {
150 compatible = "syscon-reboot";
151 regmap = <&dcfg>;
152 offset = <0xb0>;
153 mask = <0x02>;
154 };
155
156 thermal-zones {
Tom Rini6b642ac2024-10-01 12:20:28 -0600157 ddr-thermal {
Tom Rini53633a82024-02-29 12:33:36 -0500158 polling-delay-passive = <1000>;
159 polling-delay = <5000>;
160 thermal-sensors = <&tmu 0>;
161
162 trips {
163 ddr-ctrler-alert {
164 temperature = <85000>;
165 hysteresis = <2000>;
166 type = "passive";
167 };
168
169 ddr-ctrler-crit {
170 temperature = <95000>;
171 hysteresis = <2000>;
172 type = "critical";
173 };
174 };
175 };
176
Tom Rini6b642ac2024-10-01 12:20:28 -0600177 serdes-thermal {
Tom Rini53633a82024-02-29 12:33:36 -0500178 polling-delay-passive = <1000>;
179 polling-delay = <5000>;
180 thermal-sensors = <&tmu 1>;
181
182 trips {
183 serdes-alert {
184 temperature = <85000>;
185 hysteresis = <2000>;
186 type = "passive";
187 };
188
189 serdes-crit {
190 temperature = <95000>;
191 hysteresis = <2000>;
192 type = "critical";
193 };
194 };
195 };
196
Tom Rini6b642ac2024-10-01 12:20:28 -0600197 fman-thermal {
Tom Rini53633a82024-02-29 12:33:36 -0500198 polling-delay-passive = <1000>;
199 polling-delay = <5000>;
200 thermal-sensors = <&tmu 2>;
201
202 trips {
203 fman-alert {
204 temperature = <85000>;
205 hysteresis = <2000>;
206 type = "passive";
207 };
208
209 fman-crit {
210 temperature = <95000>;
211 hysteresis = <2000>;
212 type = "critical";
213 };
214 };
215 };
216
Tom Rini6b642ac2024-10-01 12:20:28 -0600217 cluster-thermal {
Tom Rini53633a82024-02-29 12:33:36 -0500218 polling-delay-passive = <1000>;
219 polling-delay = <5000>;
220 thermal-sensors = <&tmu 3>;
221
222 trips {
223 core_cluster_alert: core-cluster-alert {
224 temperature = <85000>;
225 hysteresis = <2000>;
226 type = "passive";
227 };
228
229 core_cluster_crit: core-cluster-crit {
230 temperature = <95000>;
231 hysteresis = <2000>;
232 type = "critical";
233 };
234 };
235
236 cooling-maps {
237 map0 {
238 trip = <&core_cluster_alert>;
239 cooling-device =
240 <&cpu0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
241 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
242 <&cpu2 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
243 <&cpu3 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
244 };
245 };
246 };
247
Tom Rini6b642ac2024-10-01 12:20:28 -0600248 sec-thermal {
Tom Rini53633a82024-02-29 12:33:36 -0500249 polling-delay-passive = <1000>;
250 polling-delay = <5000>;
251 thermal-sensors = <&tmu 4>;
252
253 trips {
254 sec-alert {
255 temperature = <85000>;
256 hysteresis = <2000>;
257 type = "passive";
258 };
259
260 sec-crit {
261 temperature = <95000>;
262 hysteresis = <2000>;
263 type = "critical";
264 };
265 };
266 };
267 };
268
269 timer {
270 compatible = "arm,armv8-timer";
Tom Rini6b642ac2024-10-01 12:20:28 -0600271 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
272 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
273 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
274 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
Tom Rini53633a82024-02-29 12:33:36 -0500275 fsl,erratum-a008585;
276 };
277
278 pmu {
Tom Rini762f85b2024-07-20 11:15:10 -0600279 compatible = "arm,cortex-a53-pmu";
Tom Rini6b642ac2024-10-01 12:20:28 -0600280 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>,
281 <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>,
282 <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>,
283 <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500284 interrupt-affinity = <&cpu0>,
285 <&cpu1>,
286 <&cpu2>,
287 <&cpu3>;
288 };
289
290 gic: interrupt-controller@1400000 {
291 compatible = "arm,gic-400";
292 #interrupt-cells = <3>;
293 interrupt-controller;
294 reg = <0x0 0x1401000 0 0x1000>, /* GICD */
295 <0x0 0x1402000 0 0x2000>, /* GICC */
296 <0x0 0x1404000 0 0x2000>, /* GICH */
297 <0x0 0x1406000 0 0x2000>; /* GICV */
Tom Rini6b642ac2024-10-01 12:20:28 -0600298 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
Tom Rini53633a82024-02-29 12:33:36 -0500299 };
300
301 soc: soc {
302 compatible = "simple-bus";
303 #address-cells = <2>;
304 #size-cells = <2>;
305 ranges;
306 dma-ranges = <0x0 0x0 0x0 0x0 0x10000 0x00000000>;
307 dma-coherent;
308
309 clockgen: clocking@1ee1000 {
310 compatible = "fsl,ls1043a-clockgen";
311 reg = <0x0 0x1ee1000 0x0 0x1000>;
312 #clock-cells = <2>;
313 clocks = <&sysclk>;
314 };
315
316 scfg: scfg@1570000 {
317 compatible = "fsl,ls1043a-scfg", "syscon";
318 reg = <0x0 0x1570000 0x0 0x10000>;
319 big-endian;
320 #address-cells = <1>;
321 #size-cells = <1>;
322 ranges = <0x0 0x0 0x1570000 0x10000>;
323
324 extirq: interrupt-controller@1ac {
325 compatible = "fsl,ls1043a-extirq";
326 #interrupt-cells = <2>;
327 #address-cells = <0>;
328 interrupt-controller;
329 reg = <0x1ac 4>;
330 interrupt-map =
331 <0 0 &gic GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>,
332 <1 0 &gic GIC_SPI 132 IRQ_TYPE_LEVEL_HIGH>,
333 <2 0 &gic GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>,
334 <3 0 &gic GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
335 <4 0 &gic GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>,
336 <5 0 &gic GIC_SPI 137 IRQ_TYPE_LEVEL_HIGH>,
337 <6 0 &gic GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>,
338 <7 0 &gic GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>,
339 <8 0 &gic GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>,
340 <9 0 &gic GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
341 <10 0 &gic GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>,
342 <11 0 &gic GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
343 interrupt-map-mask = <0xf 0x0>;
344 };
345 };
346
347 crypto: crypto@1700000 {
348 compatible = "fsl,sec-v5.4", "fsl,sec-v5.0",
349 "fsl,sec-v4.0";
350 fsl,sec-era = <3>;
351 #address-cells = <1>;
352 #size-cells = <1>;
353 ranges = <0x0 0x00 0x1700000 0x100000>;
354 reg = <0x00 0x1700000 0x0 0x100000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600355 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500356 dma-coherent;
357
358 sec_jr0: jr@10000 {
359 compatible = "fsl,sec-v5.4-job-ring",
360 "fsl,sec-v5.0-job-ring",
361 "fsl,sec-v4.0-job-ring";
362 reg = <0x10000 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600363 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500364 };
365
366 sec_jr1: jr@20000 {
367 compatible = "fsl,sec-v5.4-job-ring",
368 "fsl,sec-v5.0-job-ring",
369 "fsl,sec-v4.0-job-ring";
370 reg = <0x20000 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600371 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500372 };
373
374 sec_jr2: jr@30000 {
375 compatible = "fsl,sec-v5.4-job-ring",
376 "fsl,sec-v5.0-job-ring",
377 "fsl,sec-v4.0-job-ring";
378 reg = <0x30000 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600379 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500380 };
381
382 sec_jr3: jr@40000 {
383 compatible = "fsl,sec-v5.4-job-ring",
384 "fsl,sec-v5.0-job-ring",
385 "fsl,sec-v4.0-job-ring";
386 reg = <0x40000 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600387 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500388 };
389 };
390
391 sfp: efuse@1e80000 {
392 compatible = "fsl,ls1021a-sfp";
393 reg = <0x0 0x1e80000 0x0 0x10000>;
394 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
395 QORIQ_CLK_PLL_DIV(4)>;
396 clock-names = "sfp";
397 };
398
399 dcfg: dcfg@1ee0000 {
400 compatible = "fsl,ls1043a-dcfg", "syscon";
401 reg = <0x0 0x1ee0000 0x0 0x1000>;
402 big-endian;
403 };
404
405 ifc: memory-controller@1530000 {
406 compatible = "fsl,ifc";
407 reg = <0x0 0x1530000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600408 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500409 };
410
411 qspi: spi@1550000 {
412 compatible = "fsl,ls1043a-qspi", "fsl,ls1021a-qspi";
413 #address-cells = <1>;
414 #size-cells = <0>;
415 reg = <0x0 0x1550000 0x0 0x10000>,
416 <0x0 0x40000000 0x0 0x4000000>;
417 reg-names = "QuadSPI", "QuadSPI-memory";
Tom Rini6b642ac2024-10-01 12:20:28 -0600418 interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500419 clock-names = "qspi_en", "qspi";
420 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
421 QORIQ_CLK_PLL_DIV(1)>,
422 <&clockgen QORIQ_CLK_PLATFORM_PLL
423 QORIQ_CLK_PLL_DIV(1)>;
424 status = "disabled";
425 };
426
Tom Rini6b642ac2024-10-01 12:20:28 -0600427 esdhc: mmc@1560000 {
Tom Rini53633a82024-02-29 12:33:36 -0500428 compatible = "fsl,ls1043a-esdhc", "fsl,esdhc";
429 reg = <0x0 0x1560000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600430 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500431 clock-frequency = <0>;
432 voltage-ranges = <1800 1800 3300 3300>;
433 sdhci,auto-cmd12;
434 big-endian;
435 bus-width = <4>;
436 };
437
438 ddr: memory-controller@1080000 {
439 compatible = "fsl,qoriq-memory-controller";
440 reg = <0x0 0x1080000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600441 interrupts = <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500442 big-endian;
443 };
444
445 tmu: tmu@1f00000 {
446 compatible = "fsl,qoriq-tmu";
447 reg = <0x0 0x1f00000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600448 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500449 fsl,tmu-range = <0xb0000 0x9002a 0x6004c 0x70062>;
Tom Rini93743d22024-04-01 09:08:13 -0400450 fsl,tmu-calibration =
451 <0x00000000 0x00000023>,
452 <0x00000001 0x0000002a>,
453 <0x00000002 0x00000031>,
454 <0x00000003 0x00000037>,
455 <0x00000004 0x0000003e>,
456 <0x00000005 0x00000044>,
457 <0x00000006 0x0000004b>,
458 <0x00000007 0x00000051>,
459 <0x00000008 0x00000058>,
460 <0x00000009 0x0000005e>,
461 <0x0000000a 0x00000065>,
462 <0x0000000b 0x0000006b>,
Tom Rini53633a82024-02-29 12:33:36 -0500463
Tom Rini93743d22024-04-01 09:08:13 -0400464 <0x00010000 0x00000023>,
465 <0x00010001 0x0000002b>,
466 <0x00010002 0x00000033>,
467 <0x00010003 0x0000003b>,
468 <0x00010004 0x00000043>,
469 <0x00010005 0x0000004b>,
470 <0x00010006 0x00000054>,
471 <0x00010007 0x0000005c>,
472 <0x00010008 0x00000064>,
473 <0x00010009 0x0000006c>,
Tom Rini53633a82024-02-29 12:33:36 -0500474
Tom Rini93743d22024-04-01 09:08:13 -0400475 <0x00020000 0x00000021>,
476 <0x00020001 0x0000002c>,
477 <0x00020002 0x00000036>,
478 <0x00020003 0x00000040>,
479 <0x00020004 0x0000004b>,
480 <0x00020005 0x00000055>,
481 <0x00020006 0x0000005f>,
Tom Rini53633a82024-02-29 12:33:36 -0500482
Tom Rini93743d22024-04-01 09:08:13 -0400483 <0x00030000 0x00000013>,
484 <0x00030001 0x0000001d>,
485 <0x00030002 0x00000028>,
486 <0x00030003 0x00000032>,
487 <0x00030004 0x0000003d>,
488 <0x00030005 0x00000047>,
489 <0x00030006 0x00000052>,
490 <0x00030007 0x0000005c>;
Tom Rini53633a82024-02-29 12:33:36 -0500491 #thermal-sensor-cells = <1>;
492 };
493
494 qman: qman@1880000 {
495 compatible = "fsl,qman";
496 reg = <0x0 0x1880000 0x0 0x10000>;
497 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
498 memory-region = <&qman_fqd &qman_pfdr>;
499 };
500
501 bman: bman@1890000 {
502 compatible = "fsl,bman";
503 reg = <0x0 0x1890000 0x0 0x10000>;
504 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
505 memory-region = <&bman_fbpr>;
506 };
507
Tom Rini6b642ac2024-10-01 12:20:28 -0600508 bportals: bman-portals-bus@508000000 {
Tom Rini53633a82024-02-29 12:33:36 -0500509 ranges = <0x0 0x5 0x08000000 0x8000000>;
510 };
511
Tom Rini6b642ac2024-10-01 12:20:28 -0600512 qportals: qman-portals-bus@500000000 {
Tom Rini53633a82024-02-29 12:33:36 -0500513 ranges = <0x0 0x5 0x00000000 0x8000000>;
514 };
515
516 dspi0: spi@2100000 {
517 compatible = "fsl,ls1043a-dspi", "fsl,ls1021a-v1.0-dspi";
518 #address-cells = <1>;
519 #size-cells = <0>;
520 reg = <0x0 0x2100000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600521 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500522 clock-names = "dspi";
523 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
524 QORIQ_CLK_PLL_DIV(1)>;
525 spi-num-chipselects = <5>;
526 big-endian;
527 status = "disabled";
528 };
529
530 i2c0: i2c@2180000 {
531 compatible = "fsl,ls1043a-i2c", "fsl,vf610-i2c";
532 #address-cells = <1>;
533 #size-cells = <0>;
534 reg = <0x0 0x2180000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600535 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
536 clock-names = "ipg";
Tom Rini53633a82024-02-29 12:33:36 -0500537 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
538 QORIQ_CLK_PLL_DIV(1)>;
539 dmas = <&edma0 1 38>,
540 <&edma0 1 39>;
541 dma-names = "rx", "tx";
542 status = "disabled";
543 };
544
545 i2c1: i2c@2190000 {
546 compatible = "fsl,ls1043a-i2c", "fsl,vf610-i2c";
547 #address-cells = <1>;
548 #size-cells = <0>;
549 reg = <0x0 0x2190000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600550 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
551 clock-names = "ipg";
Tom Rini53633a82024-02-29 12:33:36 -0500552 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
553 QORIQ_CLK_PLL_DIV(1)>;
554 scl-gpios = <&gpio4 2 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
555 status = "disabled";
556 };
557
558 i2c2: i2c@21a0000 {
559 compatible = "fsl,ls1043a-i2c", "fsl,vf610-i2c";
560 #address-cells = <1>;
561 #size-cells = <0>;
562 reg = <0x0 0x21a0000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600563 interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>;
564 clock-names = "ipg";
Tom Rini53633a82024-02-29 12:33:36 -0500565 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
566 QORIQ_CLK_PLL_DIV(1)>;
567 scl-gpios = <&gpio4 10 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
568 status = "disabled";
569 };
570
571 i2c3: i2c@21b0000 {
572 compatible = "fsl,ls1043a-i2c", "fsl,vf610-i2c";
573 #address-cells = <1>;
574 #size-cells = <0>;
575 reg = <0x0 0x21b0000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600576 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
577 clock-names = "ipg";
Tom Rini53633a82024-02-29 12:33:36 -0500578 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
579 QORIQ_CLK_PLL_DIV(1)>;
580 scl-gpios = <&gpio4 12 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
581 status = "disabled";
582 };
583
584 duart0: serial@21c0500 {
585 compatible = "fsl,ns16550", "ns16550a";
586 reg = <0x00 0x21c0500 0x0 0x100>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600587 interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500588 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
589 QORIQ_CLK_PLL_DIV(1)>;
590 };
591
592 duart1: serial@21c0600 {
593 compatible = "fsl,ns16550", "ns16550a";
594 reg = <0x00 0x21c0600 0x0 0x100>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600595 interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500596 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
597 QORIQ_CLK_PLL_DIV(1)>;
598 };
599
600 duart2: serial@21d0500 {
601 compatible = "fsl,ns16550", "ns16550a";
602 reg = <0x0 0x21d0500 0x0 0x100>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600603 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500604 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
605 QORIQ_CLK_PLL_DIV(1)>;
606 };
607
608 duart3: serial@21d0600 {
609 compatible = "fsl,ns16550", "ns16550a";
610 reg = <0x0 0x21d0600 0x0 0x100>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600611 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500612 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
613 QORIQ_CLK_PLL_DIV(1)>;
614 };
615
616 gpio1: gpio@2300000 {
617 compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
618 reg = <0x0 0x2300000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600619 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500620 gpio-controller;
621 #gpio-cells = <2>;
622 interrupt-controller;
623 #interrupt-cells = <2>;
624 };
625
626 gpio2: gpio@2310000 {
627 compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
628 reg = <0x0 0x2310000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600629 interrupts = <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500630 gpio-controller;
631 #gpio-cells = <2>;
632 interrupt-controller;
633 #interrupt-cells = <2>;
634 };
635
636 gpio3: gpio@2320000 {
637 compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
638 reg = <0x0 0x2320000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600639 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500640 gpio-controller;
641 #gpio-cells = <2>;
642 interrupt-controller;
643 #interrupt-cells = <2>;
644 };
645
646 gpio4: gpio@2330000 {
647 compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
648 reg = <0x0 0x2330000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600649 interrupts = <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500650 gpio-controller;
651 #gpio-cells = <2>;
652 interrupt-controller;
653 #interrupt-cells = <2>;
654 };
655
656 uqe: uqe@2400000 {
657 #address-cells = <1>;
658 #size-cells = <1>;
659 compatible = "fsl,qe", "simple-bus";
660 ranges = <0x0 0x0 0x2400000 0x40000>;
661 reg = <0x0 0x2400000 0x0 0x480>;
662 brg-frequency = <100000000>;
663 bus-frequency = <200000000>;
664 fsl,qe-num-riscs = <1>;
665 fsl,qe-num-snums = <28>;
666
667 qeic: qeic@80 {
668 compatible = "fsl,qe-ic";
669 reg = <0x80 0x80>;
670 #address-cells = <0>;
671 interrupt-controller;
672 #interrupt-cells = <1>;
673 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>,
674 <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
675 };
676
677 si1: si@700 {
678 #address-cells = <1>;
679 #size-cells = <0>;
680 compatible = "fsl,ls1043-qe-si",
681 "fsl,t1040-qe-si";
682 reg = <0x700 0x80>;
683 };
684
685 siram1: siram@1000 {
686 #address-cells = <1>;
687 #size-cells = <1>;
688 compatible = "fsl,ls1043-qe-siram",
689 "fsl,t1040-qe-siram";
690 reg = <0x1000 0x800>;
691 };
692
693 ucc@2000 {
694 cell-index = <1>;
695 reg = <0x2000 0x200>;
696 interrupts = <32>;
697 interrupt-parent = <&qeic>;
698 };
699
700 ucc@2200 {
701 cell-index = <3>;
702 reg = <0x2200 0x200>;
703 interrupts = <34>;
704 interrupt-parent = <&qeic>;
705 };
706
707 muram@10000 {
708 #address-cells = <1>;
709 #size-cells = <1>;
710 compatible = "fsl,qe-muram", "fsl,cpm-muram";
711 ranges = <0x0 0x10000 0x6000>;
712
713 data-only@0 {
714 compatible = "fsl,qe-muram-data",
715 "fsl,cpm-muram-data";
716 reg = <0x0 0x6000>;
717 };
718 };
719 };
720
721 lpuart0: serial@2950000 {
722 compatible = "fsl,ls1021a-lpuart";
723 reg = <0x0 0x2950000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600724 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500725 clocks = <&clockgen QORIQ_CLK_SYSCLK 0>;
726 clock-names = "ipg";
727 status = "disabled";
728 };
729
730 lpuart1: serial@2960000 {
731 compatible = "fsl,ls1021a-lpuart";
732 reg = <0x0 0x2960000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600733 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500734 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
735 QORIQ_CLK_PLL_DIV(1)>;
736 clock-names = "ipg";
737 status = "disabled";
738 };
739
740 lpuart2: serial@2970000 {
741 compatible = "fsl,ls1021a-lpuart";
742 reg = <0x0 0x2970000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600743 interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500744 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
745 QORIQ_CLK_PLL_DIV(1)>;
746 clock-names = "ipg";
747 status = "disabled";
748 };
749
750 lpuart3: serial@2980000 {
751 compatible = "fsl,ls1021a-lpuart";
752 reg = <0x0 0x2980000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600753 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500754 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
755 QORIQ_CLK_PLL_DIV(1)>;
756 clock-names = "ipg";
757 status = "disabled";
758 };
759
760 lpuart4: serial@2990000 {
761 compatible = "fsl,ls1021a-lpuart";
762 reg = <0x0 0x2990000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600763 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500764 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
765 QORIQ_CLK_PLL_DIV(1)>;
766 clock-names = "ipg";
767 status = "disabled";
768 };
769
770 lpuart5: serial@29a0000 {
771 compatible = "fsl,ls1021a-lpuart";
772 reg = <0x0 0x29a0000 0x0 0x1000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600773 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500774 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
775 QORIQ_CLK_PLL_DIV(1)>;
776 clock-names = "ipg";
777 status = "disabled";
778 };
779
780 wdog0: watchdog@2ad0000 {
781 compatible = "fsl,ls1043a-wdt", "fsl,imx21-wdt";
782 reg = <0x0 0x2ad0000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600783 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500784 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
785 QORIQ_CLK_PLL_DIV(1)>;
Tom Rini53633a82024-02-29 12:33:36 -0500786 big-endian;
787 };
788
789 edma0: dma-controller@2c00000 {
790 #dma-cells = <2>;
791 compatible = "fsl,vf610-edma";
792 reg = <0x0 0x2c00000 0x0 0x10000>,
793 <0x0 0x2c10000 0x0 0x10000>,
794 <0x0 0x2c20000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600795 interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>,
796 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500797 interrupt-names = "edma-tx", "edma-err";
798 dma-channels = <32>;
799 big-endian;
800 clock-names = "dmamux0", "dmamux1";
801 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
802 QORIQ_CLK_PLL_DIV(1)>,
803 <&clockgen QORIQ_CLK_PLATFORM_PLL
804 QORIQ_CLK_PLL_DIV(1)>;
805 };
806
Tom Rini6b642ac2024-10-01 12:20:28 -0600807 aux_bus: aux-bus {
Tom Rini53633a82024-02-29 12:33:36 -0500808 #address-cells = <2>;
809 #size-cells = <2>;
810 compatible = "simple-bus";
811 ranges;
812 dma-ranges = <0x0 0x0 0x0 0x0 0x100 0x00000000>;
813
814 usb0: usb@2f00000 {
815 compatible = "snps,dwc3";
816 reg = <0x0 0x2f00000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600817 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500818 dr_mode = "host";
819 snps,quirk-frame-length-adjustment = <0x20>;
820 snps,dis_rxdet_inp3_quirk;
821 usb3-lpm-capable;
822 snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>;
823 status = "disabled";
824 };
825
826 usb1: usb@3000000 {
827 compatible = "snps,dwc3";
828 reg = <0x0 0x3000000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600829 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500830 dr_mode = "host";
831 snps,quirk-frame-length-adjustment = <0x20>;
832 snps,dis_rxdet_inp3_quirk;
833 usb3-lpm-capable;
834 snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>;
835 status = "disabled";
836 };
837
838 usb2: usb@3100000 {
839 compatible = "snps,dwc3";
840 reg = <0x0 0x3100000 0x0 0x10000>;
Tom Rini6b642ac2024-10-01 12:20:28 -0600841 interrupts = <GIC_SPI 63 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500842 dr_mode = "host";
843 snps,quirk-frame-length-adjustment = <0x20>;
844 snps,dis_rxdet_inp3_quirk;
845 usb3-lpm-capable;
846 snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>;
847 status = "disabled";
848 };
849
850 sata: sata@3200000 {
851 compatible = "fsl,ls1043a-ahci";
852 reg = <0x0 0x3200000 0x0 0x10000>,
853 <0x0 0x20140520 0x0 0x4>;
854 reg-names = "ahci", "sata-ecc";
Tom Rini6b642ac2024-10-01 12:20:28 -0600855 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500856 clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL
857 QORIQ_CLK_PLL_DIV(1)>;
858 dma-coherent;
859 };
860 };
861
862 msi1: msi-controller1@1571000 {
863 compatible = "fsl,ls1043a-msi";
864 reg = <0x0 0x1571000 0x0 0x8>;
865 msi-controller;
Tom Rini6b642ac2024-10-01 12:20:28 -0600866 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500867 };
868
869 msi2: msi-controller2@1572000 {
870 compatible = "fsl,ls1043a-msi";
871 reg = <0x0 0x1572000 0x0 0x8>;
872 msi-controller;
Tom Rini6b642ac2024-10-01 12:20:28 -0600873 interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500874 };
875
876 msi3: msi-controller3@1573000 {
877 compatible = "fsl,ls1043a-msi";
878 reg = <0x0 0x1573000 0x0 0x8>;
879 msi-controller;
Tom Rini6b642ac2024-10-01 12:20:28 -0600880 interrupts = <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500881 };
882
883 pcie1: pcie@3400000 {
884 compatible = "fsl,ls1043a-pcie";
885 reg = <0x00 0x03400000 0x0 0x00100000>, /* controller registers */
886 <0x40 0x00000000 0x0 0x00002000>; /* configuration space */
887 reg-names = "regs", "config";
Tom Rini6b642ac2024-10-01 12:20:28 -0600888 interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>,
889 <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500890 interrupt-names = "pme", "aer";
891 #address-cells = <3>;
892 #size-cells = <2>;
893 device_type = "pci";
894 num-viewport = <6>;
895 bus-range = <0x0 0xff>;
896 ranges = <0x81000000 0x0 0x00000000 0x40 0x00010000 0x0 0x00010000 /* downstream I/O */
897 0x82000000 0x0 0x40000000 0x40 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
898 msi-parent = <&msi1>, <&msi2>, <&msi3>;
899 #interrupt-cells = <1>;
900 interrupt-map-mask = <0 0 0 7>;
901 interrupt-map = <0000 0 0 1 &gic 0 110 0x4>,
902 <0000 0 0 2 &gic 0 111 0x4>,
903 <0000 0 0 3 &gic 0 112 0x4>,
904 <0000 0 0 4 &gic 0 113 0x4>;
905 fsl,pcie-scfg = <&scfg 0>;
906 big-endian;
907 status = "disabled";
908 };
909
910 pcie2: pcie@3500000 {
911 compatible = "fsl,ls1043a-pcie";
912 reg = <0x00 0x03500000 0x0 0x00100000>, /* controller registers */
913 <0x48 0x00000000 0x0 0x00002000>; /* configuration space */
914 reg-names = "regs", "config";
Tom Rini6b642ac2024-10-01 12:20:28 -0600915 interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>,
916 <GIC_SPI 128 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500917 interrupt-names = "pme", "aer";
918 #address-cells = <3>;
919 #size-cells = <2>;
920 device_type = "pci";
921 num-viewport = <6>;
922 bus-range = <0x0 0xff>;
923 ranges = <0x81000000 0x0 0x00000000 0x48 0x00010000 0x0 0x00010000 /* downstream I/O */
924 0x82000000 0x0 0x40000000 0x48 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
925 msi-parent = <&msi1>, <&msi2>, <&msi3>;
926 #interrupt-cells = <1>;
927 interrupt-map-mask = <0 0 0 7>;
928 interrupt-map = <0000 0 0 1 &gic 0 120 0x4>,
929 <0000 0 0 2 &gic 0 121 0x4>,
930 <0000 0 0 3 &gic 0 122 0x4>,
931 <0000 0 0 4 &gic 0 123 0x4>;
932 fsl,pcie-scfg = <&scfg 1>;
933 big-endian;
934 status = "disabled";
935 };
936
937 pcie3: pcie@3600000 {
938 compatible = "fsl,ls1043a-pcie";
939 reg = <0x00 0x03600000 0x0 0x00100000>, /* controller registers */
940 <0x50 0x00000000 0x0 0x00002000>; /* configuration space */
941 reg-names = "regs", "config";
Tom Rini6b642ac2024-10-01 12:20:28 -0600942 interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
943 <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>;
Tom Rini53633a82024-02-29 12:33:36 -0500944 interrupt-names = "pme", "aer";
945 #address-cells = <3>;
946 #size-cells = <2>;
947 device_type = "pci";
948 num-viewport = <6>;
949 bus-range = <0x0 0xff>;
950 ranges = <0x81000000 0x0 0x00000000 0x50 0x00010000 0x0 0x00010000 /* downstream I/O */
951 0x82000000 0x0 0x40000000 0x50 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
952 msi-parent = <&msi1>, <&msi2>, <&msi3>;
953 #interrupt-cells = <1>;
954 interrupt-map-mask = <0 0 0 7>;
955 interrupt-map = <0000 0 0 1 &gic 0 154 0x4>,
956 <0000 0 0 2 &gic 0 155 0x4>,
957 <0000 0 0 3 &gic 0 156 0x4>,
958 <0000 0 0 4 &gic 0 157 0x4>;
959 fsl,pcie-scfg = <&scfg 2>;
960 big-endian;
961 status = "disabled";
962 };
963
964 qdma: dma-controller@8380000 {
965 compatible = "fsl,ls1021a-qdma", "fsl,ls1043a-qdma";
966 reg = <0x0 0x8380000 0x0 0x1000>, /* Controller regs */
967 <0x0 0x8390000 0x0 0x10000>, /* Status regs */
968 <0x0 0x83a0000 0x0 0x40000>; /* Block regs */
969 interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
970 <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>,
971 <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
972 <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
973 <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
974 interrupt-names = "qdma-error", "qdma-queue0",
975 "qdma-queue1", "qdma-queue2", "qdma-queue3";
Tom Rini6b642ac2024-10-01 12:20:28 -0600976 #dma-cells = <1>;
Tom Rini53633a82024-02-29 12:33:36 -0500977 dma-channels = <8>;
978 block-number = <1>;
979 block-offset = <0x10000>;
980 fsl,dma-queues = <2>;
981 status-sizes = <64>;
982 queue-sizes = <64 64>;
983 big-endian;
984 };
985
986 rcpm: power-controller@1ee2140 {
987 compatible = "fsl,ls1043a-rcpm", "fsl,qoriq-rcpm-2.1+";
988 reg = <0x0 0x1ee2140 0x0 0x4>;
989 #fsl,rcpm-wakeup-cells = <1>;
990 };
991
Tom Rini6b642ac2024-10-01 12:20:28 -0600992 ftm_alarm0: rtc@29d0000 {
Tom Rini53633a82024-02-29 12:33:36 -0500993 compatible = "fsl,ls1043a-ftm-alarm";
994 reg = <0x0 0x29d0000 0x0 0x10000>;
995 fsl,rcpm-wakeup = <&rcpm 0x20000>;
996 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
997 big-endian;
998 };
999 };
1000
1001 firmware {
1002 optee {
1003 compatible = "linaro,optee-tz";
1004 method = "smc";
1005 };
1006 };
1007
1008};
1009
1010#include "qoriq-qman-portals.dtsi"
1011#include "qoriq-bman-portals.dtsi"