Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[sfrench/cifs-2.6.git] / arch / arm64 / boot / dts / freescale / fsl-ls1043a.dtsi
1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2 /*
3  * Device Tree Include file for Freescale Layerscape-1043A family SoC.
4  *
5  * Copyright 2014-2015 Freescale Semiconductor, Inc.
6  * Copyright 2018 NXP
7  *
8  * Mingkai Hu <Mingkai.hu@freescale.com>
9  */
10
11 #include <dt-bindings/thermal/thermal.h>
12 #include <dt-bindings/interrupt-controller/arm-gic.h>
13
14 / {
15         compatible = "fsl,ls1043a";
16         interrupt-parent = <&gic>;
17         #address-cells = <2>;
18         #size-cells = <2>;
19
20         aliases {
21                 crypto = &crypto;
22                 fman0 = &fman0;
23                 ethernet0 = &enet0;
24                 ethernet1 = &enet1;
25                 ethernet2 = &enet2;
26                 ethernet3 = &enet3;
27                 ethernet4 = &enet4;
28                 ethernet5 = &enet5;
29                 ethernet6 = &enet6;
30         };
31
32         cpus {
33                 #address-cells = <1>;
34                 #size-cells = <0>;
35
36                 /*
37                  * We expect the enable-method for cpu's to be "psci", but this
38                  * is dependent on the SoC FW, which will fill this in.
39                  *
40                  * Currently supported enable-method is psci v0.2
41                  */
42                 cpu0: cpu@0 {
43                         device_type = "cpu";
44                         compatible = "arm,cortex-a53";
45                         reg = <0x0>;
46                         clocks = <&clockgen 1 0>;
47                         next-level-cache = <&l2>;
48                         cpu-idle-states = <&CPU_PH20>;
49                         #cooling-cells = <2>;
50                 };
51
52                 cpu1: cpu@1 {
53                         device_type = "cpu";
54                         compatible = "arm,cortex-a53";
55                         reg = <0x1>;
56                         clocks = <&clockgen 1 0>;
57                         next-level-cache = <&l2>;
58                         cpu-idle-states = <&CPU_PH20>;
59                         #cooling-cells = <2>;
60                 };
61
62                 cpu2: cpu@2 {
63                         device_type = "cpu";
64                         compatible = "arm,cortex-a53";
65                         reg = <0x2>;
66                         clocks = <&clockgen 1 0>;
67                         next-level-cache = <&l2>;
68                         cpu-idle-states = <&CPU_PH20>;
69                         #cooling-cells = <2>;
70                 };
71
72                 cpu3: cpu@3 {
73                         device_type = "cpu";
74                         compatible = "arm,cortex-a53";
75                         reg = <0x3>;
76                         clocks = <&clockgen 1 0>;
77                         next-level-cache = <&l2>;
78                         cpu-idle-states = <&CPU_PH20>;
79                         #cooling-cells = <2>;
80                 };
81
82                 l2: l2-cache {
83                         compatible = "cache";
84                 };
85         };
86
87         idle-states {
88                 /*
89                  * PSCI node is not added default, U-boot will add missing
90                  * parts if it determines to use PSCI.
91                  */
92                 entry-method = "psci";
93
94                 CPU_PH20: cpu-ph20 {
95                         compatible = "arm,idle-state";
96                         idle-state-name = "PH20";
97                         arm,psci-suspend-param = <0x0>;
98                         entry-latency-us = <1000>;
99                         exit-latency-us = <1000>;
100                         min-residency-us = <3000>;
101                 };
102         };
103
104         memory@80000000 {
105                 device_type = "memory";
106                 reg = <0x0 0x80000000 0 0x80000000>;
107                       /* DRAM space 1, size: 2GiB DRAM */
108         };
109
110         reserved-memory {
111                 #address-cells = <2>;
112                 #size-cells = <2>;
113                 ranges;
114
115                 bman_fbpr: bman-fbpr {
116                         compatible = "shared-dma-pool";
117                         size = <0 0x1000000>;
118                         alignment = <0 0x1000000>;
119                         no-map;
120                 };
121
122                 qman_fqd: qman-fqd {
123                         compatible = "shared-dma-pool";
124                         size = <0 0x400000>;
125                         alignment = <0 0x400000>;
126                         no-map;
127                 };
128
129                 qman_pfdr: qman-pfdr {
130                         compatible = "shared-dma-pool";
131                         size = <0 0x2000000>;
132                         alignment = <0 0x2000000>;
133                         no-map;
134                 };
135         };
136
137         sysclk: sysclk {
138                 compatible = "fixed-clock";
139                 #clock-cells = <0>;
140                 clock-frequency = <100000000>;
141                 clock-output-names = "sysclk";
142         };
143
144         reboot {
145                 compatible ="syscon-reboot";
146                 regmap = <&dcfg>;
147                 offset = <0xb0>;
148                 mask = <0x02>;
149         };
150
151         thermal-zones {
152                 cpu_thermal: cpu-thermal {
153                         polling-delay-passive = <1000>;
154                         polling-delay = <5000>;
155
156                         thermal-sensors = <&tmu 3>;
157
158                         trips {
159                                 cpu_alert: cpu-alert {
160                                         temperature = <85000>;
161                                         hysteresis = <2000>;
162                                         type = "passive";
163                                 };
164                                 cpu_crit: cpu-crit {
165                                         temperature = <95000>;
166                                         hysteresis = <2000>;
167                                         type = "critical";
168                                 };
169                         };
170
171                         cooling-maps {
172                                 map0 {
173                                         trip = <&cpu_alert>;
174                                         cooling-device =
175                                                 <&cpu0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
176                                                 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
177                                                 <&cpu2 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
178                                                 <&cpu3 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
179                                 };
180                         };
181                 };
182         };
183
184         timer {
185                 compatible = "arm,armv8-timer";
186                 interrupts = <1 13 0xf08>, /* Physical Secure PPI */
187                              <1 14 0xf08>, /* Physical Non-Secure PPI */
188                              <1 11 0xf08>, /* Virtual PPI */
189                              <1 10 0xf08>; /* Hypervisor PPI */
190                 fsl,erratum-a008585;
191         };
192
193         pmu {
194                 compatible = "arm,armv8-pmuv3";
195                 interrupts = <0 106 0x4>,
196                              <0 107 0x4>,
197                              <0 95 0x4>,
198                              <0 97 0x4>;
199                 interrupt-affinity = <&cpu0>,
200                                      <&cpu1>,
201                                      <&cpu2>,
202                                      <&cpu3>;
203         };
204
205         gic: interrupt-controller@1400000 {
206                 compatible = "arm,gic-400";
207                 #interrupt-cells = <3>;
208                 interrupt-controller;
209                 reg = <0x0 0x1401000 0 0x1000>, /* GICD */
210                       <0x0 0x1402000 0 0x2000>, /* GICC */
211                       <0x0 0x1404000 0 0x2000>, /* GICH */
212                       <0x0 0x1406000 0 0x2000>; /* GICV */
213                 interrupts = <1 9 0xf08>;
214         };
215
216         soc: soc {
217                 compatible = "simple-bus";
218                 #address-cells = <2>;
219                 #size-cells = <2>;
220                 ranges;
221
222                 clockgen: clocking@1ee1000 {
223                         compatible = "fsl,ls1043a-clockgen";
224                         reg = <0x0 0x1ee1000 0x0 0x1000>;
225                         #clock-cells = <2>;
226                         clocks = <&sysclk>;
227                 };
228
229                 scfg: scfg@1570000 {
230                         compatible = "fsl,ls1043a-scfg", "syscon";
231                         reg = <0x0 0x1570000 0x0 0x10000>;
232                         big-endian;
233                 };
234
235                 crypto: crypto@1700000 {
236                         compatible = "fsl,sec-v5.4", "fsl,sec-v5.0",
237                                      "fsl,sec-v4.0";
238                         fsl,sec-era = <3>;
239                         #address-cells = <1>;
240                         #size-cells = <1>;
241                         ranges = <0x0 0x00 0x1700000 0x100000>;
242                         reg = <0x00 0x1700000 0x0 0x100000>;
243                         interrupts = <0 75 0x4>;
244
245                         sec_jr0: jr@10000 {
246                                 compatible = "fsl,sec-v5.4-job-ring",
247                                              "fsl,sec-v5.0-job-ring",
248                                              "fsl,sec-v4.0-job-ring";
249                                 reg        = <0x10000 0x10000>;
250                                 interrupts = <0 71 0x4>;
251                         };
252
253                         sec_jr1: jr@20000 {
254                                 compatible = "fsl,sec-v5.4-job-ring",
255                                              "fsl,sec-v5.0-job-ring",
256                                              "fsl,sec-v4.0-job-ring";
257                                 reg        = <0x20000 0x10000>;
258                                 interrupts = <0 72 0x4>;
259                         };
260
261                         sec_jr2: jr@30000 {
262                                 compatible = "fsl,sec-v5.4-job-ring",
263                                              "fsl,sec-v5.0-job-ring",
264                                              "fsl,sec-v4.0-job-ring";
265                                 reg        = <0x30000 0x10000>;
266                                 interrupts = <0 73 0x4>;
267                         };
268
269                         sec_jr3: jr@40000 {
270                                 compatible = "fsl,sec-v5.4-job-ring",
271                                              "fsl,sec-v5.0-job-ring",
272                                              "fsl,sec-v4.0-job-ring";
273                                 reg        = <0x40000 0x10000>;
274                                 interrupts = <0 74 0x4>;
275                         };
276                 };
277
278                 dcfg: dcfg@1ee0000 {
279                         compatible = "fsl,ls1043a-dcfg", "syscon";
280                         reg = <0x0 0x1ee0000 0x0 0x10000>;
281                         big-endian;
282                 };
283
284                 ifc: ifc@1530000 {
285                         compatible = "fsl,ifc", "simple-bus";
286                         reg = <0x0 0x1530000 0x0 0x10000>;
287                         interrupts = <0 43 0x4>;
288                 };
289
290                 qspi: spi@1550000 {
291                         compatible = "fsl,ls1043a-qspi", "fsl,ls1021a-qspi";
292                         #address-cells = <1>;
293                         #size-cells = <0>;
294                         reg = <0x0 0x1550000 0x0 0x10000>,
295                                 <0x0 0x40000000 0x0 0x4000000>;
296                         reg-names = "QuadSPI", "QuadSPI-memory";
297                         interrupts = <0 99 0x4>;
298                         clock-names = "qspi_en", "qspi";
299                         clocks = <&clockgen 4 0>, <&clockgen 4 0>;
300                         status = "disabled";
301                 };
302
303                 esdhc: esdhc@1560000 {
304                         compatible = "fsl,ls1043a-esdhc", "fsl,esdhc";
305                         reg = <0x0 0x1560000 0x0 0x10000>;
306                         interrupts = <0 62 0x4>;
307                         clock-frequency = <0>;
308                         voltage-ranges = <1800 1800 3300 3300>;
309                         sdhci,auto-cmd12;
310                         big-endian;
311                         bus-width = <4>;
312                 };
313
314                 ddr: memory-controller@1080000 {
315                         compatible = "fsl,qoriq-memory-controller";
316                         reg = <0x0 0x1080000 0x0 0x1000>;
317                         interrupts = <0 144 0x4>;
318                         big-endian;
319                 };
320
321                 tmu: tmu@1f00000 {
322                         compatible = "fsl,qoriq-tmu";
323                         reg = <0x0 0x1f00000 0x0 0x10000>;
324                         interrupts = <0 33 0x4>;
325                         fsl,tmu-range = <0xb0000 0x9002a 0x6004c 0x30062>;
326                         fsl,tmu-calibration = <0x00000000 0x00000026
327                                                0x00000001 0x0000002d
328                                                0x00000002 0x00000032
329                                                0x00000003 0x00000039
330                                                0x00000004 0x0000003f
331                                                0x00000005 0x00000046
332                                                0x00000006 0x0000004d
333                                                0x00000007 0x00000054
334                                                0x00000008 0x0000005a
335                                                0x00000009 0x00000061
336                                                0x0000000a 0x0000006a
337                                                0x0000000b 0x00000071
338
339                                                0x00010000 0x00000025
340                                                0x00010001 0x0000002c
341                                                0x00010002 0x00000035
342                                                0x00010003 0x0000003d
343                                                0x00010004 0x00000045
344                                                0x00010005 0x0000004e
345                                                0x00010006 0x00000057
346                                                0x00010007 0x00000061
347                                                0x00010008 0x0000006b
348                                                0x00010009 0x00000076
349
350                                                0x00020000 0x00000029
351                                                0x00020001 0x00000033
352                                                0x00020002 0x0000003d
353                                                0x00020003 0x00000049
354                                                0x00020004 0x00000056
355                                                0x00020005 0x00000061
356                                                0x00020006 0x0000006d
357
358                                                0x00030000 0x00000021
359                                                0x00030001 0x0000002a
360                                                0x00030002 0x0000003c
361                                                0x00030003 0x0000004e>;
362                         #thermal-sensor-cells = <1>;
363                 };
364
365                 qman: qman@1880000 {
366                         compatible = "fsl,qman";
367                         reg = <0x0 0x1880000 0x0 0x10000>;
368                         interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
369                         memory-region = <&qman_fqd &qman_pfdr>;
370                 };
371
372                 bman: bman@1890000 {
373                         compatible = "fsl,bman";
374                         reg = <0x0 0x1890000 0x0 0x10000>;
375                         interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
376                         memory-region = <&bman_fbpr>;
377                 };
378
379                 bportals: bman-portals@508000000 {
380                         ranges = <0x0 0x5 0x08000000 0x8000000>;
381                 };
382
383                 qportals: qman-portals@500000000 {
384                         ranges = <0x0 0x5 0x00000000 0x8000000>;
385                 };
386
387                 dspi0: spi@2100000 {
388                         compatible = "fsl,ls1043a-dspi", "fsl,ls1021a-v1.0-dspi";
389                         #address-cells = <1>;
390                         #size-cells = <0>;
391                         reg = <0x0 0x2100000 0x0 0x10000>;
392                         interrupts = <0 64 0x4>;
393                         clock-names = "dspi";
394                         clocks = <&clockgen 4 0>;
395                         spi-num-chipselects = <5>;
396                         big-endian;
397                         status = "disabled";
398                 };
399
400                 dspi1: spi@2110000 {
401                         compatible = "fsl,ls1043a-dspi", "fsl,ls1021a-v1.0-dspi";
402                         #address-cells = <1>;
403                         #size-cells = <0>;
404                         reg = <0x0 0x2110000 0x0 0x10000>;
405                         interrupts = <0 65 0x4>;
406                         clock-names = "dspi";
407                         clocks = <&clockgen 4 0>;
408                         spi-num-chipselects = <5>;
409                         big-endian;
410                         status = "disabled";
411                 };
412
413                 i2c0: i2c@2180000 {
414                         compatible = "fsl,vf610-i2c";
415                         #address-cells = <1>;
416                         #size-cells = <0>;
417                         reg = <0x0 0x2180000 0x0 0x10000>;
418                         interrupts = <0 56 0x4>;
419                         clock-names = "i2c";
420                         clocks = <&clockgen 4 0>;
421                         dmas = <&edma0 1 39>,
422                                <&edma0 1 38>;
423                         dma-names = "tx", "rx";
424                         status = "disabled";
425                 };
426
427                 i2c1: i2c@2190000 {
428                         compatible = "fsl,vf610-i2c";
429                         #address-cells = <1>;
430                         #size-cells = <0>;
431                         reg = <0x0 0x2190000 0x0 0x10000>;
432                         interrupts = <0 57 0x4>;
433                         clock-names = "i2c";
434                         clocks = <&clockgen 4 0>;
435                         status = "disabled";
436                 };
437
438                 i2c2: i2c@21a0000 {
439                         compatible = "fsl,vf610-i2c";
440                         #address-cells = <1>;
441                         #size-cells = <0>;
442                         reg = <0x0 0x21a0000 0x0 0x10000>;
443                         interrupts = <0 58 0x4>;
444                         clock-names = "i2c";
445                         clocks = <&clockgen 4 0>;
446                         status = "disabled";
447                 };
448
449                 i2c3: i2c@21b0000 {
450                         compatible = "fsl,vf610-i2c";
451                         #address-cells = <1>;
452                         #size-cells = <0>;
453                         reg = <0x0 0x21b0000 0x0 0x10000>;
454                         interrupts = <0 59 0x4>;
455                         clock-names = "i2c";
456                         clocks = <&clockgen 4 0>;
457                         status = "disabled";
458                 };
459
460                 duart0: serial@21c0500 {
461                         compatible = "fsl,ns16550", "ns16550a";
462                         reg = <0x00 0x21c0500 0x0 0x100>;
463                         interrupts = <0 54 0x4>;
464                         clocks = <&clockgen 4 0>;
465                 };
466
467                 duart1: serial@21c0600 {
468                         compatible = "fsl,ns16550", "ns16550a";
469                         reg = <0x00 0x21c0600 0x0 0x100>;
470                         interrupts = <0 54 0x4>;
471                         clocks = <&clockgen 4 0>;
472                 };
473
474                 duart2: serial@21d0500 {
475                         compatible = "fsl,ns16550", "ns16550a";
476                         reg = <0x0 0x21d0500 0x0 0x100>;
477                         interrupts = <0 55 0x4>;
478                         clocks = <&clockgen 4 0>;
479                 };
480
481                 duart3: serial@21d0600 {
482                         compatible = "fsl,ns16550", "ns16550a";
483                         reg = <0x0 0x21d0600 0x0 0x100>;
484                         interrupts = <0 55 0x4>;
485                         clocks = <&clockgen 4 0>;
486                 };
487
488                 gpio1: gpio@2300000 {
489                         compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
490                         reg = <0x0 0x2300000 0x0 0x10000>;
491                         interrupts = <0 66 0x4>;
492                         gpio-controller;
493                         #gpio-cells = <2>;
494                         interrupt-controller;
495                         #interrupt-cells = <2>;
496                 };
497
498                 gpio2: gpio@2310000 {
499                         compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
500                         reg = <0x0 0x2310000 0x0 0x10000>;
501                         interrupts = <0 67 0x4>;
502                         gpio-controller;
503                         #gpio-cells = <2>;
504                         interrupt-controller;
505                         #interrupt-cells = <2>;
506                 };
507
508                 gpio3: gpio@2320000 {
509                         compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
510                         reg = <0x0 0x2320000 0x0 0x10000>;
511                         interrupts = <0 68 0x4>;
512                         gpio-controller;
513                         #gpio-cells = <2>;
514                         interrupt-controller;
515                         #interrupt-cells = <2>;
516                 };
517
518                 gpio4: gpio@2330000 {
519                         compatible = "fsl,ls1043a-gpio", "fsl,qoriq-gpio";
520                         reg = <0x0 0x2330000 0x0 0x10000>;
521                         interrupts = <0 134 0x4>;
522                         gpio-controller;
523                         #gpio-cells = <2>;
524                         interrupt-controller;
525                         #interrupt-cells = <2>;
526                 };
527
528                 lpuart0: serial@2950000 {
529                         compatible = "fsl,ls1021a-lpuart";
530                         reg = <0x0 0x2950000 0x0 0x1000>;
531                         interrupts = <0 48 0x4>;
532                         clocks = <&clockgen 0 0>;
533                         clock-names = "ipg";
534                         status = "disabled";
535                 };
536
537                 lpuart1: serial@2960000 {
538                         compatible = "fsl,ls1021a-lpuart";
539                         reg = <0x0 0x2960000 0x0 0x1000>;
540                         interrupts = <0 49 0x4>;
541                         clocks = <&clockgen 4 0>;
542                         clock-names = "ipg";
543                         status = "disabled";
544                 };
545
546                 lpuart2: serial@2970000 {
547                         compatible = "fsl,ls1021a-lpuart";
548                         reg = <0x0 0x2970000 0x0 0x1000>;
549                         interrupts = <0 50 0x4>;
550                         clocks = <&clockgen 4 0>;
551                         clock-names = "ipg";
552                         status = "disabled";
553                 };
554
555                 lpuart3: serial@2980000 {
556                         compatible = "fsl,ls1021a-lpuart";
557                         reg = <0x0 0x2980000 0x0 0x1000>;
558                         interrupts = <0 51 0x4>;
559                         clocks = <&clockgen 4 0>;
560                         clock-names = "ipg";
561                         status = "disabled";
562                 };
563
564                 lpuart4: serial@2990000 {
565                         compatible = "fsl,ls1021a-lpuart";
566                         reg = <0x0 0x2990000 0x0 0x1000>;
567                         interrupts = <0 52 0x4>;
568                         clocks = <&clockgen 4 0>;
569                         clock-names = "ipg";
570                         status = "disabled";
571                 };
572
573                 lpuart5: serial@29a0000 {
574                         compatible = "fsl,ls1021a-lpuart";
575                         reg = <0x0 0x29a0000 0x0 0x1000>;
576                         interrupts = <0 53 0x4>;
577                         clocks = <&clockgen 4 0>;
578                         clock-names = "ipg";
579                         status = "disabled";
580                 };
581
582                 wdog0: wdog@2ad0000 {
583                         compatible = "fsl,ls1043a-wdt", "fsl,imx21-wdt";
584                         reg = <0x0 0x2ad0000 0x0 0x10000>;
585                         interrupts = <0 83 0x4>;
586                         clocks = <&clockgen 4 0>;
587                         clock-names = "wdog";
588                         big-endian;
589                 };
590
591                 edma0: edma@2c00000 {
592                         #dma-cells = <2>;
593                         compatible = "fsl,vf610-edma";
594                         reg = <0x0 0x2c00000 0x0 0x10000>,
595                               <0x0 0x2c10000 0x0 0x10000>,
596                               <0x0 0x2c20000 0x0 0x10000>;
597                         interrupts = <0 103 0x4>,
598                                      <0 103 0x4>;
599                         interrupt-names = "edma-tx", "edma-err";
600                         dma-channels = <32>;
601                         big-endian;
602                         clock-names = "dmamux0", "dmamux1";
603                         clocks = <&clockgen 4 0>,
604                                  <&clockgen 4 0>;
605                 };
606
607                 usb0: usb3@2f00000 {
608                         compatible = "snps,dwc3";
609                         reg = <0x0 0x2f00000 0x0 0x10000>;
610                         interrupts = <0 60 0x4>;
611                         dr_mode = "host";
612                         snps,quirk-frame-length-adjustment = <0x20>;
613                         snps,dis_rxdet_inp3_quirk;
614                         snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>;
615                 };
616
617                 usb1: usb3@3000000 {
618                         compatible = "snps,dwc3";
619                         reg = <0x0 0x3000000 0x0 0x10000>;
620                         interrupts = <0 61 0x4>;
621                         dr_mode = "host";
622                         snps,quirk-frame-length-adjustment = <0x20>;
623                         snps,dis_rxdet_inp3_quirk;
624                         snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>;
625                 };
626
627                 usb2: usb3@3100000 {
628                         compatible = "snps,dwc3";
629                         reg = <0x0 0x3100000 0x0 0x10000>;
630                         interrupts = <0 63 0x4>;
631                         dr_mode = "host";
632                         snps,quirk-frame-length-adjustment = <0x20>;
633                         snps,dis_rxdet_inp3_quirk;
634                         snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>;
635                 };
636
637                 sata: sata@3200000 {
638                         compatible = "fsl,ls1043a-ahci";
639                         reg = <0x0 0x3200000 0x0 0x10000>,
640                                 <0x0 0x20140520 0x0 0x4>;
641                         reg-names = "ahci", "sata-ecc";
642                         interrupts = <0 69 0x4>;
643                         clocks = <&clockgen 4 0>;
644                         dma-coherent;
645                 };
646
647                 msi1: msi-controller1@1571000 {
648                         compatible = "fsl,ls1043a-msi";
649                         reg = <0x0 0x1571000 0x0 0x8>;
650                         msi-controller;
651                         interrupts = <0 116 0x4>;
652                 };
653
654                 msi2: msi-controller2@1572000 {
655                         compatible = "fsl,ls1043a-msi";
656                         reg = <0x0 0x1572000 0x0 0x8>;
657                         msi-controller;
658                         interrupts = <0 126 0x4>;
659                 };
660
661                 msi3: msi-controller3@1573000 {
662                         compatible = "fsl,ls1043a-msi";
663                         reg = <0x0 0x1573000 0x0 0x8>;
664                         msi-controller;
665                         interrupts = <0 160 0x4>;
666                 };
667
668                 pcie@3400000 {
669                         compatible = "fsl,ls1043a-pcie";
670                         reg = <0x00 0x03400000 0x0 0x00100000   /* controller registers */
671                                0x40 0x00000000 0x0 0x00002000>; /* configuration space */
672                         reg-names = "regs", "config";
673                         interrupts = <0 118 0x4>, /* controller interrupt */
674                                      <0 117 0x4>; /* PME interrupt */
675                         interrupt-names = "intr", "pme";
676                         #address-cells = <3>;
677                         #size-cells = <2>;
678                         device_type = "pci";
679                         dma-coherent;
680                         num-viewport = <6>;
681                         bus-range = <0x0 0xff>;
682                         ranges = <0x81000000 0x0 0x00000000 0x40 0x00010000 0x0 0x00010000   /* downstream I/O */
683                                   0x82000000 0x0 0x40000000 0x40 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
684                         msi-parent = <&msi1>, <&msi2>, <&msi3>;
685                         #interrupt-cells = <1>;
686                         interrupt-map-mask = <0 0 0 7>;
687                         interrupt-map = <0000 0 0 1 &gic 0 110 0x4>,
688                                         <0000 0 0 2 &gic 0 111 0x4>,
689                                         <0000 0 0 3 &gic 0 112 0x4>,
690                                         <0000 0 0 4 &gic 0 113 0x4>;
691                         status = "disabled";
692                 };
693
694                 pcie@3500000 {
695                         compatible = "fsl,ls1043a-pcie";
696                         reg = <0x00 0x03500000 0x0 0x00100000   /* controller registers */
697                                0x48 0x00000000 0x0 0x00002000>; /* configuration space */
698                         reg-names = "regs", "config";
699                         interrupts = <0 128 0x4>,
700                                      <0 127 0x4>;
701                         interrupt-names = "intr", "pme";
702                         #address-cells = <3>;
703                         #size-cells = <2>;
704                         device_type = "pci";
705                         dma-coherent;
706                         num-viewport = <6>;
707                         bus-range = <0x0 0xff>;
708                         ranges = <0x81000000 0x0 0x00000000 0x48 0x00010000 0x0 0x00010000   /* downstream I/O */
709                                   0x82000000 0x0 0x40000000 0x48 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
710                         msi-parent = <&msi1>, <&msi2>, <&msi3>;
711                         #interrupt-cells = <1>;
712                         interrupt-map-mask = <0 0 0 7>;
713                         interrupt-map = <0000 0 0 1 &gic 0 120  0x4>,
714                                         <0000 0 0 2 &gic 0 121 0x4>,
715                                         <0000 0 0 3 &gic 0 122 0x4>,
716                                         <0000 0 0 4 &gic 0 123 0x4>;
717                         status = "disabled";
718                 };
719
720                 pcie@3600000 {
721                         compatible = "fsl,ls1043a-pcie";
722                         reg = <0x00 0x03600000 0x0 0x00100000   /* controller registers */
723                                0x50 0x00000000 0x0 0x00002000>; /* configuration space */
724                         reg-names = "regs", "config";
725                         interrupts = <0 162 0x4>,
726                                      <0 161 0x4>;
727                         interrupt-names = "intr", "pme";
728                         #address-cells = <3>;
729                         #size-cells = <2>;
730                         device_type = "pci";
731                         dma-coherent;
732                         num-viewport = <6>;
733                         bus-range = <0x0 0xff>;
734                         ranges = <0x81000000 0x0 0x00000000 0x50 0x00010000 0x0 0x00010000   /* downstream I/O */
735                                   0x82000000 0x0 0x40000000 0x50 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
736                         msi-parent = <&msi1>, <&msi2>, <&msi3>;
737                         #interrupt-cells = <1>;
738                         interrupt-map-mask = <0 0 0 7>;
739                         interrupt-map = <0000 0 0 1 &gic 0 154 0x4>,
740                                         <0000 0 0 2 &gic 0 155 0x4>,
741                                         <0000 0 0 3 &gic 0 156 0x4>,
742                                         <0000 0 0 4 &gic 0 157 0x4>;
743                         status = "disabled";
744                 };
745
746                 qdma: dma-controller@8380000 {
747                         compatible = "fsl,ls1021a-qdma", "fsl,ls1043a-qdma";
748                         reg = <0x0 0x8380000 0x0 0x1000>, /* Controller regs */
749                               <0x0 0x8390000 0x0 0x10000>, /* Status regs */
750                               <0x0 0x83a0000 0x0 0x40000>; /* Block regs */
751                         interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
752                                      <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>,
753                                      <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
754                                      <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
755                                      <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
756                         interrupt-names = "qdma-error", "qdma-queue0",
757                                 "qdma-queue1", "qdma-queue2", "qdma-queue3";
758                         dma-channels = <8>;
759                         block-number = <1>;
760                         block-offset = <0x10000>;
761                         fsl,dma-queues = <2>;
762                         status-sizes = <64>;
763                         queue-sizes = <64 64>;
764                         big-endian;
765                 };
766
767         };
768
769         firmware {
770                 optee {
771                         compatible = "linaro,optee-tz";
772                         method = "smc";
773                 };
774         };
775
776 };
777
778 #include "qoriq-qman-portals.dtsi"
779 #include "qoriq-bman-portals.dtsi"