blob: c35eb2344fa8944f81acbc5c6488d7d4571ad09c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jagannadha Sutradharudu Tekif8f36c52014-01-09 01:48:26 +05302/*
3 * Xilinx Zynq 7000 DTSI
4 * Describes the hardware common to all Zynq 7000-based boards.
5 *
Michal Simek05e7ca62015-07-22 11:18:43 +02006 * Copyright (C) 2011 - 2015 Xilinx
Jagannadha Sutradharudu Tekif8f36c52014-01-09 01:48:26 +05307 */
Jagannadha Sutradharudu Tekif8f36c52014-01-09 01:48:26 +05308
9/ {
Michal Simekcc7978b2016-11-11 13:11:37 +010010 #address-cells = <1>;
11 #size-cells = <1>;
Jagannadha Sutradharudu Tekif8f36c52014-01-09 01:48:26 +053012 compatible = "xlnx,zynq-7000";
Masahiro Yamada580a54c2014-05-15 20:37:53 +090013
14 cpus {
15 #address-cells = <1>;
16 #size-cells = <0>;
17
Moritz Fischer720ba462016-12-12 08:48:50 -080018 cpu0: cpu@0 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +090019 compatible = "arm,cortex-a9";
20 device_type = "cpu";
21 reg = <0>;
22 clocks = <&clkc 3>;
23 clock-latency = <1000>;
Michal Simekbece06c2015-07-22 10:38:45 +020024 cpu0-supply = <&regulator_vccpint>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +090025 operating-points = <
26 /* kHz uV */
27 666667 1000000
28 333334 1000000
Masahiro Yamada580a54c2014-05-15 20:37:53 +090029 >;
30 };
31
Moritz Fischer720ba462016-12-12 08:48:50 -080032 cpu1: cpu@1 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +090033 compatible = "arm,cortex-a9";
34 device_type = "cpu";
35 reg = <1>;
36 clocks = <&clkc 3>;
37 };
38 };
39
Michal Simek0b180d02017-02-14 17:40:21 +010040 fpga_full: fpga-full {
41 compatible = "fpga-region";
42 fpga-mgr = <&devcfg>;
43 #address-cells = <1>;
44 #size-cells = <1>;
45 ranges;
46 };
47
Michal Simekcc7978b2016-11-11 13:11:37 +010048 pmu@f8891000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +090049 compatible = "arm,cortex-a9-pmu";
50 interrupts = <0 5 4>, <0 6 4>;
51 interrupt-parent = <&intc>;
Michal Simek427d5682016-11-16 09:29:57 +010052 reg = <0xf8891000 0x1000>,
53 <0xf8893000 0x1000>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +090054 };
55
Michal Simekcc7978b2016-11-11 13:11:37 +010056 regulator_vccpint: fixedregulator {
Michal Simekbece06c2015-07-22 10:38:45 +020057 compatible = "regulator-fixed";
58 regulator-name = "VCCPINT";
59 regulator-min-microvolt = <1000000>;
60 regulator-max-microvolt = <1000000>;
61 regulator-boot-on;
62 regulator-always-on;
63 };
64
Zumeng Chend12c8cc2019-09-23 17:47:09 +080065 replicator {
66 compatible = "arm,coresight-static-replicator";
67 clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>;
68 clock-names = "apb_pclk", "dbg_trc", "dbg_apb";
69
70 out-ports {
71 #address-cells = <1>;
72 #size-cells = <0>;
73
74 /* replicator output ports */
75 port@0 {
76 reg = <0>;
77 replicator_out_port0: endpoint {
78 remote-endpoint = <&tpiu_in_port>;
79 };
80 };
81 port@1 {
82 reg = <1>;
83 replicator_out_port1: endpoint {
84 remote-endpoint = <&etb_in_port>;
85 };
86 };
87 };
88 in-ports {
89 /* replicator input port */
90 port {
91 replicator_in_port0: endpoint {
92 remote-endpoint = <&funnel_out_port>;
93 };
94 };
95 };
96 };
97
Michal Simek461c3882015-07-22 11:08:40 +020098 amba: amba {
Simon Glass035c6b22015-10-17 19:41:24 -060099 u-boot,dm-pre-reloc;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900100 compatible = "simple-bus";
101 #address-cells = <1>;
102 #size-cells = <1>;
103 interrupt-parent = <&intc>;
104 ranges;
105
Michal Simekfb1a5062015-07-22 10:32:05 +0200106 adc: adc@f8007100 {
107 compatible = "xlnx,zynq-xadc-1.00.a";
108 reg = <0xf8007100 0x20>;
109 interrupts = <0 7 4>;
110 interrupt-parent = <&intc>;
111 clocks = <&clkc 12>;
112 };
113
114 can0: can@e0008000 {
115 compatible = "xlnx,zynq-can-1.0";
116 status = "disabled";
117 clocks = <&clkc 19>, <&clkc 36>;
118 clock-names = "can_clk", "pclk";
119 reg = <0xe0008000 0x1000>;
120 interrupts = <0 28 4>;
121 interrupt-parent = <&intc>;
122 tx-fifo-depth = <0x40>;
123 rx-fifo-depth = <0x40>;
124 };
125
126 can1: can@e0009000 {
127 compatible = "xlnx,zynq-can-1.0";
128 status = "disabled";
129 clocks = <&clkc 20>, <&clkc 37>;
130 clock-names = "can_clk", "pclk";
131 reg = <0xe0009000 0x1000>;
132 interrupts = <0 51 4>;
133 interrupt-parent = <&intc>;
134 tx-fifo-depth = <0x40>;
135 rx-fifo-depth = <0x40>;
136 };
137
138 gpio0: gpio@e000a000 {
139 compatible = "xlnx,zynq-gpio-1.0";
140 #gpio-cells = <2>;
141 clocks = <&clkc 42>;
142 gpio-controller;
Michal Simek58fab4c2016-04-07 10:54:08 +0200143 interrupt-controller;
Michal Simek534f7e02017-11-02 09:24:12 +0100144 #interrupt-cells = <2>;
Michal Simekfb1a5062015-07-22 10:32:05 +0200145 interrupt-parent = <&intc>;
146 interrupts = <0 20 4>;
147 reg = <0xe000a000 0x1000>;
148 };
149
Michal Simeka0cb47f2015-07-22 10:28:48 +0200150 i2c0: i2c@e0004000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900151 compatible = "cdns,i2c-r1p10";
152 status = "disabled";
153 clocks = <&clkc 38>;
154 interrupt-parent = <&intc>;
155 interrupts = <0 25 4>;
156 reg = <0xe0004000 0x1000>;
157 #address-cells = <1>;
158 #size-cells = <0>;
159 };
160
Michal Simeka0cb47f2015-07-22 10:28:48 +0200161 i2c1: i2c@e0005000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900162 compatible = "cdns,i2c-r1p10";
163 status = "disabled";
164 clocks = <&clkc 39>;
165 interrupt-parent = <&intc>;
166 interrupts = <0 48 4>;
167 reg = <0xe0005000 0x1000>;
168 #address-cells = <1>;
169 #size-cells = <0>;
170 };
171
172 intc: interrupt-controller@f8f01000 {
173 compatible = "arm,cortex-a9-gic";
174 #interrupt-cells = <3>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900175 interrupt-controller;
176 reg = <0xF8F01000 0x1000>,
177 <0xF8F00100 0x100>;
178 };
179
Michal Simeka0cb47f2015-07-22 10:28:48 +0200180 L2: cache-controller@f8f02000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900181 compatible = "arm,pl310-cache";
182 reg = <0xF8F02000 0x1000>;
Michal Simekd50cb3d2015-07-22 11:26:08 +0200183 interrupts = <0 2 4>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900184 arm,data-latency = <3 2 2>;
185 arm,tag-latency = <2 2 2>;
186 cache-unified;
187 cache-level = <2>;
188 };
189
Michal Simekfb1a5062015-07-22 10:32:05 +0200190 mc: memory-controller@f8006000 {
191 compatible = "xlnx,zynq-ddrc-a05";
192 reg = <0xf8006000 0x1000>;
193 };
194
Michal Simeka0cb47f2015-07-22 10:28:48 +0200195 uart0: serial@e0000000 {
Michal Simek8a8c46a2015-07-22 10:40:51 +0200196 compatible = "xlnx,xuartps", "cdns,uart-r1p8";
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900197 status = "disabled";
198 clocks = <&clkc 23>, <&clkc 40>;
Michal Simek8a8c46a2015-07-22 10:40:51 +0200199 clock-names = "uart_clk", "pclk";
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900200 reg = <0xE0000000 0x1000>;
201 interrupts = <0 27 4>;
202 };
203
Michal Simeka0cb47f2015-07-22 10:28:48 +0200204 uart1: serial@e0001000 {
Michal Simek8a8c46a2015-07-22 10:40:51 +0200205 compatible = "xlnx,xuartps", "cdns,uart-r1p8";
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900206 status = "disabled";
207 clocks = <&clkc 24>, <&clkc 41>;
Michal Simek8a8c46a2015-07-22 10:40:51 +0200208 clock-names = "uart_clk", "pclk";
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900209 reg = <0xE0001000 0x1000>;
210 interrupts = <0 50 4>;
211 };
212
Jagan Tekia8a8fc92015-06-27 00:51:33 +0530213 spi0: spi@e0006000 {
Michal Simek40b383f2015-07-22 10:47:33 +0200214 compatible = "xlnx,zynq-spi-r1p6";
Jagan Tekia8a8fc92015-06-27 00:51:33 +0530215 reg = <0xe0006000 0x1000>;
216 status = "disabled";
217 interrupt-parent = <&intc>;
218 interrupts = <0 26 4>;
219 clocks = <&clkc 25>, <&clkc 34>;
220 clock-names = "ref_clk", "pclk";
221 #address-cells = <1>;
222 #size-cells = <0>;
223 };
224
225 spi1: spi@e0007000 {
Michal Simek40b383f2015-07-22 10:47:33 +0200226 compatible = "xlnx,zynq-spi-r1p6";
Jagan Tekia8a8fc92015-06-27 00:51:33 +0530227 reg = <0xe0007000 0x1000>;
228 status = "disabled";
229 interrupt-parent = <&intc>;
230 interrupts = <0 49 4>;
231 clocks = <&clkc 26>, <&clkc 35>;
232 clock-names = "ref_clk", "pclk";
233 #address-cells = <1>;
234 #size-cells = <0>;
235 };
236
Jagan Teki70676cb2015-08-15 23:02:31 +0530237 qspi: spi@e000d000 {
238 clock-names = "ref_clk", "pclk";
239 clocks = <&clkc 10>, <&clkc 43>;
240 compatible = "xlnx,zynq-qspi-1.0";
241 status = "disabled";
242 interrupt-parent = <&intc>;
243 interrupts = <0 19 4>;
244 reg = <0xe000d000 0x1000>;
245 #address-cells = <1>;
246 #size-cells = <0>;
247 };
248
Michal Simek233750d2019-10-14 10:14:07 +0200249 smcc: memory-controller@e000e000 {
250 #address-cells = <1>;
251 #size-cells = <1>;
252 status = "disabled";
253 clock-names = "memclk", "apb_pclk";
254 clocks = <&clkc 11>, <&clkc 44>;
255 compatible = "arm,pl353-smc-r2p1", "arm,primecell";
256 interrupt-parent = <&intc>;
257 interrupts = <0 18 4>;
258 ranges ;
259 reg = <0xe000e000 0x1000>;
260 nand0: flash@e1000000 {
261 status = "disabled";
262 compatible = "arm,pl353-nand-r2p1";
263 reg = <0xe1000000 0x1000000>;
264 #address-cells = <1>;
265 #size-cells = <1>;
266 };
267 nor0: flash@e2000000 {
268 status = "disabled";
269 compatible = "cfi-flash";
270 reg = <0xe2000000 0x2000000>;
271 #address-cells = <1>;
272 #size-cells = <1>;
273 };
274 };
275
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900276 gem0: ethernet@e000b000 {
Michal Simek7e163362015-07-22 10:51:16 +0200277 compatible = "cdns,zynq-gem", "cdns,gem";
Michal Simek08305fe2015-07-22 10:50:02 +0200278 reg = <0xe000b000 0x1000>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900279 status = "disabled";
280 interrupts = <0 22 4>;
281 clocks = <&clkc 30>, <&clkc 30>, <&clkc 13>;
282 clock-names = "pclk", "hclk", "tx_clk";
Michal Simek5ee236a2015-07-22 11:03:36 +0200283 #address-cells = <1>;
284 #size-cells = <0>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900285 };
286
287 gem1: ethernet@e000c000 {
Michal Simek7e163362015-07-22 10:51:16 +0200288 compatible = "cdns,zynq-gem", "cdns,gem";
Michal Simek08305fe2015-07-22 10:50:02 +0200289 reg = <0xe000c000 0x1000>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900290 status = "disabled";
291 interrupts = <0 45 4>;
292 clocks = <&clkc 31>, <&clkc 31>, <&clkc 14>;
293 clock-names = "pclk", "hclk", "tx_clk";
Michal Simek5ee236a2015-07-22 11:03:36 +0200294 #address-cells = <1>;
295 #size-cells = <0>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900296 };
297
Michal Simek7b85f792018-09-26 13:36:16 +0200298 sdhci0: mmc@e0100000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900299 compatible = "arasan,sdhci-8.9a";
300 status = "disabled";
301 clock-names = "clk_xin", "clk_ahb";
302 clocks = <&clkc 21>, <&clkc 32>;
303 interrupt-parent = <&intc>;
304 interrupts = <0 24 4>;
305 reg = <0xe0100000 0x1000>;
Michal Simeke5c343d2016-01-14 13:06:28 +0100306 };
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900307
Michal Simek7b85f792018-09-26 13:36:16 +0200308 sdhci1: mmc@e0101000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900309 compatible = "arasan,sdhci-8.9a";
310 status = "disabled";
311 clock-names = "clk_xin", "clk_ahb";
312 clocks = <&clkc 22>, <&clkc 33>;
313 interrupt-parent = <&intc>;
314 interrupts = <0 47 4>;
315 reg = <0xe0101000 0x1000>;
Michal Simeke5c343d2016-01-14 13:06:28 +0100316 };
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900317
318 slcr: slcr@f8000000 {
Stefan Herbrechtsmeier781745b2017-01-17 16:27:30 +0100319 u-boot,dm-pre-reloc;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900320 #address-cells = <1>;
321 #size-cells = <1>;
Masahiro Yamada621a93e2016-04-25 12:14:43 +0900322 compatible = "xlnx,zynq-slcr", "syscon", "simple-mfd";
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900323 reg = <0xF8000000 0x1000>;
324 ranges;
325 clkc: clkc@100 {
Stefan Herbrechtsmeier781745b2017-01-17 16:27:30 +0100326 u-boot,dm-pre-reloc;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900327 #clock-cells = <1>;
328 compatible = "xlnx,ps7-clkc";
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900329 fclk-enable = <0>;
330 clock-output-names = "armpll", "ddrpll", "iopll", "cpu_6or4x",
331 "cpu_3or2x", "cpu_2x", "cpu_1x", "ddr2x", "ddr3x",
332 "dci", "lqspi", "smc", "pcap", "gem0", "gem1",
333 "fclk0", "fclk1", "fclk2", "fclk3", "can0", "can1",
334 "sdio0", "sdio1", "uart0", "uart1", "spi0", "spi1",
335 "dma", "usb0_aper", "usb1_aper", "gem0_aper",
336 "gem1_aper", "sdio0_aper", "sdio1_aper",
337 "spi0_aper", "spi1_aper", "can0_aper", "can1_aper",
338 "i2c0_aper", "i2c1_aper", "uart0_aper", "uart1_aper",
339 "gpio_aper", "lqspi_aper", "smc_aper", "swdt",
340 "dbg_trc", "dbg_apb";
341 reg = <0x100 0x100>;
342 };
Michal Simeke913ce22015-07-22 11:07:49 +0200343
Moritz Fischer4c987272015-07-30 18:13:55 -0700344 rstc: rstc@200 {
345 compatible = "xlnx,zynq-reset";
346 reg = <0x200 0x48>;
347 #reset-cells = <1>;
348 syscon = <&slcr>;
349 };
350
Michal Simeke913ce22015-07-22 11:07:49 +0200351 pinctrl0: pinctrl@700 {
352 compatible = "xlnx,pinctrl-zynq";
353 reg = <0x700 0x200>;
354 syscon = <&slcr>;
355 };
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900356 };
357
Michal Simekfb1a5062015-07-22 10:32:05 +0200358 dmac_s: dmac@f8003000 {
359 compatible = "arm,pl330", "arm,primecell";
360 reg = <0xf8003000 0x1000>;
361 interrupt-parent = <&intc>;
362 interrupt-names = "abort", "dma0", "dma1", "dma2", "dma3",
363 "dma4", "dma5", "dma6", "dma7";
364 interrupts = <0 13 4>,
365 <0 14 4>, <0 15 4>,
366 <0 16 4>, <0 17 4>,
367 <0 40 4>, <0 41 4>,
368 <0 42 4>, <0 43 4>;
369 #dma-cells = <1>;
370 #dma-channels = <8>;
371 #dma-requests = <4>;
372 clocks = <&clkc 27>;
373 clock-names = "apb_pclk";
374 };
375
376 devcfg: devcfg@f8007000 {
377 compatible = "xlnx,zynq-devcfg-1.0";
Michal Simek77bb73d2016-04-07 11:00:37 +0200378 interrupt-parent = <&intc>;
379 interrupts = <0 8 4>;
Michal Simekfb1a5062015-07-22 10:32:05 +0200380 reg = <0xf8007000 0x100>;
Michal Simek77bb73d2016-04-07 11:00:37 +0200381 clocks = <&clkc 12>, <&clkc 15>, <&clkc 16>, <&clkc 17>, <&clkc 18>;
382 clock-names = "ref_clk", "fclk0", "fclk1", "fclk2", "fclk3";
Moritz Fischer20fe3f12015-06-22 23:18:44 -0700383 syscon = <&slcr>;
Michal Simekfb1a5062015-07-22 10:32:05 +0200384 };
385
Michal Simeke7f327f2017-02-28 11:46:37 +0100386 efuse: efuse@f800d000 {
387 compatible = "xlnx,zynq-efuse";
388 reg = <0xf800d000 0x20>;
389 };
390
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900391 global_timer: timer@f8f00200 {
392 compatible = "arm,cortex-a9-global-timer";
393 reg = <0xf8f00200 0x20>;
394 interrupts = <1 11 0x301>;
395 interrupt-parent = <&intc>;
396 clocks = <&clkc 4>;
397 };
398
Michal Simeka0cb47f2015-07-22 10:28:48 +0200399 ttc0: timer@f8001000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900400 interrupt-parent = <&intc>;
Michal Simekb346bd12015-07-22 10:57:51 +0200401 interrupts = <0 10 4>, <0 11 4>, <0 12 4>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900402 compatible = "cdns,ttc";
403 clocks = <&clkc 6>;
404 reg = <0xF8001000 0x1000>;
405 };
406
Michal Simeka0cb47f2015-07-22 10:28:48 +0200407 ttc1: timer@f8002000 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900408 interrupt-parent = <&intc>;
Michal Simekb346bd12015-07-22 10:57:51 +0200409 interrupts = <0 37 4>, <0 38 4>, <0 39 4>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900410 compatible = "cdns,ttc";
411 clocks = <&clkc 6>;
412 reg = <0xF8002000 0x1000>;
413 };
Michal Simekfb1a5062015-07-22 10:32:05 +0200414
Michal Simeka0cb47f2015-07-22 10:28:48 +0200415 scutimer: timer@f8f00600 {
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900416 interrupt-parent = <&intc>;
Michal Simeke5c343d2016-01-14 13:06:28 +0100417 interrupts = <1 13 0x301>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900418 compatible = "arm,cortex-a9-twd-timer";
Michal Simeke5c343d2016-01-14 13:06:28 +0100419 reg = <0xf8f00600 0x20>;
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900420 clocks = <&clkc 4>;
Michal Simeke5c343d2016-01-14 13:06:28 +0100421 };
Michal Simekfb1a5062015-07-22 10:32:05 +0200422
423 usb0: usb@e0002000 {
424 compatible = "xlnx,zynq-usb-2.20a", "chipidea,usb2";
425 status = "disabled";
426 clocks = <&clkc 28>;
427 interrupt-parent = <&intc>;
428 interrupts = <0 21 4>;
429 reg = <0xe0002000 0x1000>;
430 phy_type = "ulpi";
431 };
432
433 usb1: usb@e0003000 {
434 compatible = "xlnx,zynq-usb-2.20a", "chipidea,usb2";
435 status = "disabled";
436 clocks = <&clkc 29>;
437 interrupt-parent = <&intc>;
438 interrupts = <0 44 4>;
439 reg = <0xe0003000 0x1000>;
440 phy_type = "ulpi";
441 };
442
443 watchdog0: watchdog@f8005000 {
444 clocks = <&clkc 45>;
445 compatible = "cdns,wdt-r1p2";
446 interrupt-parent = <&intc>;
447 interrupts = <0 9 1>;
448 reg = <0xf8005000 0x1000>;
449 timeout-sec = <10>;
450 };
Zumeng Chend12c8cc2019-09-23 17:47:09 +0800451
452 etb@f8801000 {
453 compatible = "arm,coresight-etb10", "arm,primecell";
454 reg = <0xf8801000 0x1000>;
455 clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>;
456 clock-names = "apb_pclk", "dbg_trc", "dbg_apb";
457 in-ports {
458 port {
459 etb_in_port: endpoint {
460 remote-endpoint = <&replicator_out_port1>;
461 };
462 };
463 };
464 };
465
466 tpiu@f8803000 {
467 compatible = "arm,coresight-tpiu", "arm,primecell";
468 reg = <0xf8803000 0x1000>;
469 clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>;
470 clock-names = "apb_pclk", "dbg_trc", "dbg_apb";
471 in-ports {
472 port {
473 tpiu_in_port: endpoint {
474 remote-endpoint = <&replicator_out_port0>;
475 };
476 };
477 };
478 };
479
480 funnel@f8804000 {
481 compatible = "arm,coresight-static-funnel", "arm,primecell";
482 reg = <0xf8804000 0x1000>;
483 clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>;
484 clock-names = "apb_pclk", "dbg_trc", "dbg_apb";
485
486 /* funnel output ports */
487 out-ports {
488 port {
489 funnel_out_port: endpoint {
490 remote-endpoint =
491 <&replicator_in_port0>;
492 };
493 };
494 };
495
496 in-ports {
497 #address-cells = <1>;
498 #size-cells = <0>;
499
500 /* funnel input ports */
501 port@0 {
502 reg = <0>;
503 funnel0_in_port0: endpoint {
504 remote-endpoint = <&ptm0_out_port>;
505 };
506 };
507
508 port@1 {
509 reg = <1>;
510 funnel0_in_port1: endpoint {
511 remote-endpoint = <&ptm1_out_port>;
512 };
513 };
514
515 port@2 {
516 reg = <2>;
517 funnel0_in_port2: endpoint {
518 };
519 };
520 /* The other input ports are not connect to anything */
521 };
522 };
523
524 ptm@f889c000 {
525 compatible = "arm,coresight-etm3x", "arm,primecell";
526 reg = <0xf889c000 0x1000>;
527 clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>;
528 clock-names = "apb_pclk", "dbg_trc", "dbg_apb";
529 cpu = <&cpu0>;
530 out-ports {
531 port {
532 ptm0_out_port: endpoint {
533 remote-endpoint = <&funnel0_in_port0>;
534 };
535 };
536 };
537 };
538
539 ptm@f889d000 {
540 compatible = "arm,coresight-etm3x", "arm,primecell";
541 reg = <0xf889d000 0x1000>;
542 clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>;
543 clock-names = "apb_pclk", "dbg_trc", "dbg_apb";
544 cpu = <&cpu1>;
545 out-ports {
546 port {
547 ptm1_out_port: endpoint {
548 remote-endpoint = <&funnel0_in_port1>;
549 };
550 };
551 };
552 };
Masahiro Yamada580a54c2014-05-15 20:37:53 +0900553 };
Jagannadha Sutradharudu Tekif8f36c52014-01-09 01:48:26 +0530554};