blob: a1a928064b53dd0540a78cea4bf974732b6651ee [file] [log] [blame]
R Sricharan6e58b8f2013-08-14 19:08:20 +05301/*
2 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 * Based on "omap4.dtsi"
8 */
9
10#include <dt-bindings/interrupt-controller/arm-gic.h>
11#include <dt-bindings/pinctrl/dra.h>
12
R Sricharana46631c2014-06-26 12:55:31 +053013#define MAX_SOURCES 400
R Sricharana46631c2014-06-26 12:55:31 +053014
R Sricharan6e58b8f2013-08-14 19:08:20 +053015/ {
Lokesh Vutladae320e2016-02-24 15:41:04 +053016 #address-cells = <2>;
17 #size-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053018
19 compatible = "ti,dra7xx";
Marc Zyngier783d3182015-03-11 15:43:44 +000020 interrupt-parent = <&crossbar_mpu>;
Javier Martinez Canillasd4f12aa2016-12-19 11:44:41 -030021 chosen { };
R Sricharan6e58b8f2013-08-14 19:08:20 +053022
23 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050024 i2c0 = &i2c1;
25 i2c1 = &i2c2;
26 i2c2 = &i2c3;
27 i2c3 = &i2c4;
28 i2c4 = &i2c5;
R Sricharan6e58b8f2013-08-14 19:08:20 +053029 serial0 = &uart1;
30 serial1 = &uart2;
31 serial2 = &uart3;
32 serial3 = &uart4;
33 serial4 = &uart5;
34 serial5 = &uart6;
Nishanth Menon065bd7f2014-10-21 11:18:15 -050035 serial6 = &uart7;
36 serial7 = &uart8;
37 serial8 = &uart9;
38 serial9 = &uart10;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +053039 ethernet0 = &cpsw_emac0;
40 ethernet1 = &cpsw_emac1;
Roger Quadros9ec49b92014-08-15 16:08:36 +030041 d_can0 = &dcan1;
42 d_can1 = &dcan2;
Mugunthan V N480b2b32015-11-19 12:31:01 +053043 spi0 = &qspi;
R Sricharan6e58b8f2013-08-14 19:08:20 +053044 };
45
R Sricharan6e58b8f2013-08-14 19:08:20 +053046 timer {
47 compatible = "arm,armv7-timer";
48 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
49 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
50 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
51 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000052 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053053 };
54
55 gic: interrupt-controller@48211000 {
56 compatible = "arm,cortex-a15-gic";
57 interrupt-controller;
58 #interrupt-cells = <3>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053059 reg = <0x0 0x48211000 0x0 0x1000>,
60 <0x0 0x48212000 0x0 0x1000>,
61 <0x0 0x48214000 0x0 0x2000>,
62 <0x0 0x48216000 0x0 0x2000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053063 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000064 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053065 };
66
Marc Zyngier7136d452015-03-11 15:43:49 +000067 wakeupgen: interrupt-controller@48281000 {
68 compatible = "ti,omap5-wugen-mpu", "ti,omap4-wugen-mpu";
69 interrupt-controller;
70 #interrupt-cells = <3>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053071 reg = <0x0 0x48281000 0x0 0x1000>;
Marc Zyngier7136d452015-03-11 15:43:49 +000072 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053073 };
74
Dave Gerlachb82ffb32016-05-18 18:36:32 -050075 cpus {
76 #address-cells = <1>;
77 #size-cells = <0>;
78
79 cpu0: cpu@0 {
80 device_type = "cpu";
81 compatible = "arm,cortex-a15";
82 reg = <0>;
83
Dave Gerlacha8dc7cb2016-09-14 16:26:53 -070084 operating-points = <
85 /* kHz uV */
86 1000000 1060000
87 1176000 1160000
88 >;
Dave Gerlachb82ffb32016-05-18 18:36:32 -050089
90 clocks = <&dpll_mpu_ck>;
91 clock-names = "cpu";
92
93 clock-latency = <300000>; /* From omap-cpufreq driver */
94
95 /* cooling options */
96 cooling-min-level = <0>;
97 cooling-max-level = <2>;
98 #cooling-cells = <2>; /* min followed by max */
99 };
100 };
101
R Sricharan6e58b8f2013-08-14 19:08:20 +0530102 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +0100103 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +0530104 * that are not memory mapped in the MPU view or for the MPU itself.
105 */
106 soc {
107 compatible = "ti,omap-infra";
108 mpu {
109 compatible = "ti,omap5-mpu";
110 ti,hwmods = "mpu";
111 };
112 };
113
114 /*
115 * XXX: Use a flat representation of the SOC interconnect.
116 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +0100117 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +0530118 * the moment, just use a fake OCP bus entry to represent the whole bus
119 * hierarchy.
120 */
121 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -0500122 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530123 #address-cells = <1>;
124 #size-cells = <1>;
Lokesh Vutladae320e2016-02-24 15:41:04 +0530125 ranges = <0x0 0x0 0x0 0xc0000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530126 ti,hwmods = "l3_main_1", "l3_main_2";
Lokesh Vutladae320e2016-02-24 15:41:04 +0530127 reg = <0x0 0x44000000 0x0 0x1000000>,
128 <0x0 0x45000000 0x0 0x1000>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000129 interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
Marc Zyngier7136d452015-03-11 15:43:49 +0000130 <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530131
Tero Kristod9195012015-02-12 11:37:13 +0200132 l4_cfg: l4@4a000000 {
133 compatible = "ti,dra7-l4-cfg", "simple-bus";
134 #address-cells = <1>;
135 #size-cells = <1>;
136 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300137
Tero Kristod9195012015-02-12 11:37:13 +0200138 scm: scm@2000 {
139 compatible = "ti,dra7-scm-core", "simple-bus";
140 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300141 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200142 #size-cells = <1>;
143 ranges = <0 0x2000 0x2000>;
144
145 scm_conf: scm_conf@0 {
Kishon Vijay Abraham Icd455672015-07-27 17:46:41 +0530146 compatible = "syscon", "simple-bus";
Tero Kristod9195012015-02-12 11:37:13 +0200147 reg = <0x0 0x1400>;
148 #address-cells = <1>;
149 #size-cells = <1>;
Kishon Vijay Abraham I9a5e3f22015-09-04 17:38:24 +0530150 ranges = <0 0x0 0x1400>;
Tero Kristod9195012015-02-12 11:37:13 +0200151
Javier Martinez Canillas308cfda2016-04-01 16:20:18 -0400152 pbias_regulator: pbias_regulator@e00 {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530153 compatible = "ti,pbias-dra7", "ti,pbias-omap";
Tero Kristod9195012015-02-12 11:37:13 +0200154 reg = <0xe00 0x4>;
155 syscon = <&scm_conf>;
156 pbias_mmc_reg: pbias_mmc_omap5 {
157 regulator-name = "pbias_mmc_omap5";
158 regulator-min-microvolt = <1800000>;
159 regulator-max-microvolt = <3000000>;
160 };
161 };
Tomi Valkeinen2d5a3c82015-02-23 12:53:56 +0200162
163 scm_conf_clocks: clocks {
164 #address-cells = <1>;
165 #size-cells = <0>;
166 };
Tero Kristod9195012015-02-12 11:37:13 +0200167 };
168
169 dra7_pmx_core: pinmux@1400 {
170 compatible = "ti,dra7-padconf",
171 "pinctrl-single";
Roger Quadros1c5cb6f2015-07-27 13:27:29 +0300172 reg = <0x1400 0x0468>;
Tero Kristod9195012015-02-12 11:37:13 +0200173 #address-cells = <1>;
174 #size-cells = <0>;
175 #interrupt-cells = <1>;
176 interrupt-controller;
177 pinctrl-single,register-width = <32>;
178 pinctrl-single,function-mask = <0x3fffffff>;
179 };
Roger Quadros33cb3a12015-08-04 12:10:14 +0300180
181 scm_conf1: scm_conf@1c04 {
182 compatible = "syscon";
183 reg = <0x1c04 0x0020>;
184 };
Kishon Vijay Abraham I43acf162015-12-21 14:43:18 +0530185
186 scm_conf_pcie: scm_conf@1c24 {
187 compatible = "syscon";
188 reg = <0x1c24 0x0024>;
189 };
Peter Ujfalusi3d2a58b2016-03-07 17:17:28 +0200190
191 sdma_xbar: dma-router@b78 {
192 compatible = "ti,dra7-dma-crossbar";
193 reg = <0xb78 0xfc>;
194 #dma-cells = <1>;
195 dma-requests = <205>;
196 ti,dma-safe-map = <0>;
197 dma-masters = <&sdma>;
198 };
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200199
200 edma_xbar: dma-router@c78 {
201 compatible = "ti,dra7-dma-crossbar";
202 reg = <0xc78 0x7c>;
203 #dma-cells = <2>;
204 dma-requests = <204>;
205 ti,dma-safe-map = <0>;
206 dma-masters = <&edma>;
207 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300208 };
209
Tero Kristod9195012015-02-12 11:37:13 +0200210 cm_core_aon: cm_core_aon@5000 {
211 compatible = "ti,dra7-cm-core-aon";
212 reg = <0x5000 0x2000>;
213
214 cm_core_aon_clocks: clocks {
215 #address-cells = <1>;
216 #size-cells = <0>;
217 };
218
219 cm_core_aon_clockdomains: clockdomains {
220 };
221 };
222
223 cm_core: cm_core@8000 {
224 compatible = "ti,dra7-cm-core";
225 reg = <0x8000 0x3000>;
226
227 cm_core_clocks: clocks {
228 #address-cells = <1>;
229 #size-cells = <0>;
230 };
231
232 cm_core_clockdomains: clockdomains {
233 };
234 };
235 };
236
237 l4_wkup: l4@4ae00000 {
238 compatible = "ti,dra7-l4-wkup", "simple-bus";
239 #address-cells = <1>;
240 #size-cells = <1>;
241 ranges = <0 0x4ae00000 0x3f000>;
242
243 counter32k: counter@4000 {
244 compatible = "ti,omap-counter32k";
245 reg = <0x4000 0x40>;
246 ti,hwmods = "counter_32k";
247 };
248
249 prm: prm@6000 {
250 compatible = "ti,dra7-prm";
251 reg = <0x6000 0x3000>;
252 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
253
254 prm_clocks: clocks {
255 #address-cells = <1>;
256 #size-cells = <0>;
257 };
258
259 prm_clockdomains: clockdomains {
260 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300261 };
Dave Gerlach62e4fee2016-05-18 18:36:31 -0500262
263 scm_wkup: scm_conf@c000 {
264 compatible = "syscon";
265 reg = <0xc000 0x1000>;
266 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300267 };
268
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530269 axi@0 {
270 compatible = "simple-bus";
271 #size-cells = <1>;
272 #address-cells = <1>;
273 ranges = <0x51000000 0x51000000 0x3000
274 0x0 0x20000000 0x10000000>;
Kishon Vijay Abraham I73c8f0c2015-07-28 19:09:10 +0530275 pcie1: pcie@51000000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530276 compatible = "ti,dra7-pcie";
277 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
278 reg-names = "rc_dbics", "ti_conf", "config";
279 interrupts = <0 232 0x4>, <0 233 0x4>;
280 #address-cells = <3>;
281 #size-cells = <2>;
282 device_type = "pci";
283 ranges = <0x81000000 0 0 0x03000 0 0x00010000
284 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
Rob Herring5700ffc2017-03-21 21:03:01 -0500285 bus-range = <0x00 0xff>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530286 #interrupt-cells = <1>;
287 num-lanes = <1>;
Kishon Vijay Abraham Ibed596d2016-08-10 18:03:18 +0530288 linux,pci-domain = <0>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530289 ti,hwmods = "pcie1";
290 phys = <&pcie1_phy>;
291 phy-names = "pcie-phy0";
292 interrupt-map-mask = <0 0 0 7>;
293 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
294 <0 0 0 2 &pcie1_intc 2>,
295 <0 0 0 3 &pcie1_intc 3>,
296 <0 0 0 4 &pcie1_intc 4>;
297 pcie1_intc: interrupt-controller {
298 interrupt-controller;
299 #address-cells = <0>;
300 #interrupt-cells = <1>;
301 };
302 };
303 };
304
305 axi@1 {
306 compatible = "simple-bus";
307 #size-cells = <1>;
308 #address-cells = <1>;
309 ranges = <0x51800000 0x51800000 0x3000
310 0x0 0x30000000 0x10000000>;
311 status = "disabled";
Kishon Vijay Abraham I605b3d32016-06-09 20:43:55 +0530312 pcie@51800000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530313 compatible = "ti,dra7-pcie";
314 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
315 reg-names = "rc_dbics", "ti_conf", "config";
316 interrupts = <0 355 0x4>, <0 356 0x4>;
317 #address-cells = <3>;
318 #size-cells = <2>;
319 device_type = "pci";
320 ranges = <0x81000000 0 0 0x03000 0 0x00010000
321 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
Rob Herring5700ffc2017-03-21 21:03:01 -0500322 bus-range = <0x00 0xff>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530323 #interrupt-cells = <1>;
324 num-lanes = <1>;
Kishon Vijay Abraham Ibed596d2016-08-10 18:03:18 +0530325 linux,pci-domain = <1>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530326 ti,hwmods = "pcie2";
327 phys = <&pcie2_phy>;
328 phy-names = "pcie-phy0";
329 interrupt-map-mask = <0 0 0 7>;
330 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
331 <0 0 0 2 &pcie2_intc 2>,
332 <0 0 0 3 &pcie2_intc 3>,
333 <0 0 0 4 &pcie2_intc 4>;
334 pcie2_intc: interrupt-controller {
335 interrupt-controller;
336 #address-cells = <0>;
337 #interrupt-cells = <1>;
338 };
339 };
340 };
341
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500342 ocmcram1: ocmcram@40300000 {
343 compatible = "mmio-sram";
344 reg = <0x40300000 0x80000>;
345 ranges = <0x0 0x40300000 0x80000>;
346 #address-cells = <1>;
347 #size-cells = <1>;
Dave Gerlachfae3a9f2016-05-10 14:49:42 -0500348 /*
349 * This is a placeholder for an optional reserved
350 * region for use by secure software. The size
351 * of this region is not known until runtime so it
352 * is set as zero to either be updated to reserve
353 * space or left unchanged to leave all SRAM for use.
354 * On HS parts that that require the reserved region
355 * either the bootloader can update the size to
356 * the required amount or the node can be overridden
357 * from the board dts file for the secure platform.
358 */
359 sram-hs@0 {
360 compatible = "ti,secure-ram";
361 reg = <0x0 0x0>;
362 };
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500363 };
364
365 /*
366 * NOTE: ocmcram2 and ocmcram3 are not available on all
367 * DRA7xx and AM57xx variants. Confirm availability in
368 * the data manual for the exact part number in use
369 * before enabling these nodes in the board dts file.
370 */
371 ocmcram2: ocmcram@40400000 {
372 status = "disabled";
373 compatible = "mmio-sram";
374 reg = <0x40400000 0x100000>;
375 ranges = <0x0 0x40400000 0x100000>;
376 #address-cells = <1>;
377 #size-cells = <1>;
378 };
379
380 ocmcram3: ocmcram@40500000 {
381 status = "disabled";
382 compatible = "mmio-sram";
383 reg = <0x40500000 0x100000>;
384 ranges = <0x0 0x40500000 0x100000>;
385 #address-cells = <1>;
386 #size-cells = <1>;
387 };
388
Keerthyf7397ed2015-03-23 14:39:38 -0500389 bandgap: bandgap@4a0021e0 {
390 reg = <0x4a0021e0 0xc
391 0x4a00232c 0xc
392 0x4a002380 0x2c
393 0x4a0023C0 0x3c
394 0x4a002564 0x8
395 0x4a002574 0x50>;
396 compatible = "ti,dra752-bandgap";
397 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
398 #thermal-sensor-cells = <1>;
399 };
400
Suman Anna99639ac2015-10-02 18:23:22 -0500401 dsp1_system: dsp_system@40d00000 {
402 compatible = "syscon";
403 reg = <0x40d00000 0x100>;
404 };
405
R Sricharan6e58b8f2013-08-14 19:08:20 +0530406 sdma: dma-controller@4a056000 {
407 compatible = "ti,omap4430-sdma";
408 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530409 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
410 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
411 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
412 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530413 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200414 dma-channels = <32>;
415 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530416 };
417
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200418 edma: edma@43300000 {
419 compatible = "ti,edma3-tpcc";
420 ti,hwmods = "tpcc";
421 reg = <0x43300000 0x100000>;
422 reg-names = "edma3_cc";
423 interrupts = <GIC_SPI 361 IRQ_TYPE_LEVEL_HIGH>,
424 <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>,
425 <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>;
Robert P. J. Daya5206552016-05-24 17:20:28 -0400426 interrupt-names = "edma3_ccint", "edma3_mperr",
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200427 "edma3_ccerrint";
428 dma-requests = <64>;
429 #dma-cells = <2>;
430
431 ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 0>;
432
433 /*
434 * memcpy is disabled, can be enabled with:
435 * ti,edma-memcpy-channels = <20 21>;
436 * for example. Note that these channels need to be
437 * masked in the xbar as well.
438 */
439 };
440
441 edma_tptc0: tptc@43400000 {
442 compatible = "ti,edma3-tptc";
443 ti,hwmods = "tptc0";
444 reg = <0x43400000 0x100000>;
445 interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
446 interrupt-names = "edma3_tcerrint";
447 };
448
449 edma_tptc1: tptc@43500000 {
450 compatible = "ti,edma3-tptc";
451 ti,hwmods = "tptc1";
452 reg = <0x43500000 0x100000>;
453 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
454 interrupt-names = "edma3_tcerrint";
455 };
456
R Sricharan6e58b8f2013-08-14 19:08:20 +0530457 gpio1: gpio@4ae10000 {
458 compatible = "ti,omap4-gpio";
459 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530460 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530461 ti,hwmods = "gpio1";
462 gpio-controller;
463 #gpio-cells = <2>;
464 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700465 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530466 };
467
468 gpio2: gpio@48055000 {
469 compatible = "ti,omap4-gpio";
470 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530471 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530472 ti,hwmods = "gpio2";
473 gpio-controller;
474 #gpio-cells = <2>;
475 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700476 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530477 };
478
479 gpio3: gpio@48057000 {
480 compatible = "ti,omap4-gpio";
481 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530482 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530483 ti,hwmods = "gpio3";
484 gpio-controller;
485 #gpio-cells = <2>;
486 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700487 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530488 };
489
490 gpio4: gpio@48059000 {
491 compatible = "ti,omap4-gpio";
492 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530493 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530494 ti,hwmods = "gpio4";
495 gpio-controller;
496 #gpio-cells = <2>;
497 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700498 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530499 };
500
501 gpio5: gpio@4805b000 {
502 compatible = "ti,omap4-gpio";
503 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530504 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530505 ti,hwmods = "gpio5";
506 gpio-controller;
507 #gpio-cells = <2>;
508 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700509 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530510 };
511
512 gpio6: gpio@4805d000 {
513 compatible = "ti,omap4-gpio";
514 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530515 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530516 ti,hwmods = "gpio6";
517 gpio-controller;
518 #gpio-cells = <2>;
519 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700520 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530521 };
522
523 gpio7: gpio@48051000 {
524 compatible = "ti,omap4-gpio";
525 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530526 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530527 ti,hwmods = "gpio7";
528 gpio-controller;
529 #gpio-cells = <2>;
530 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700531 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530532 };
533
534 gpio8: gpio@48053000 {
535 compatible = "ti,omap4-gpio";
536 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530537 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530538 ti,hwmods = "gpio8";
539 gpio-controller;
540 #gpio-cells = <2>;
541 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700542 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530543 };
544
545 uart1: serial@4806a000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530546 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530547 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000548 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530549 ti,hwmods = "uart1";
550 clock-frequency = <48000000>;
551 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300552 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200553 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530554 };
555
556 uart2: serial@4806c000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530557 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530558 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000559 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530560 ti,hwmods = "uart2";
561 clock-frequency = <48000000>;
562 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300563 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200564 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530565 };
566
567 uart3: serial@48020000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530568 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530569 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000570 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530571 ti,hwmods = "uart3";
572 clock-frequency = <48000000>;
573 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300574 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200575 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530576 };
577
578 uart4: serial@4806e000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530579 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530580 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000581 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530582 ti,hwmods = "uart4";
583 clock-frequency = <48000000>;
584 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300585 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200586 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530587 };
588
589 uart5: serial@48066000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530590 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530591 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000592 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530593 ti,hwmods = "uart5";
594 clock-frequency = <48000000>;
595 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300596 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200597 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530598 };
599
600 uart6: serial@48068000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530601 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530602 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000603 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530604 ti,hwmods = "uart6";
605 clock-frequency = <48000000>;
606 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300607 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200608 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530609 };
610
611 uart7: serial@48420000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530612 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530613 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000614 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530615 ti,hwmods = "uart7";
616 clock-frequency = <48000000>;
617 status = "disabled";
618 };
619
620 uart8: serial@48422000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530621 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530622 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000623 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530624 ti,hwmods = "uart8";
625 clock-frequency = <48000000>;
626 status = "disabled";
627 };
628
629 uart9: serial@48424000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530630 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530631 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000632 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530633 ti,hwmods = "uart9";
634 clock-frequency = <48000000>;
635 status = "disabled";
636 };
637
638 uart10: serial@4ae2b000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530639 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530640 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000641 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530642 ti,hwmods = "uart10";
643 clock-frequency = <48000000>;
644 status = "disabled";
645 };
646
Suman Anna38baefb2014-07-11 16:44:38 -0500647 mailbox1: mailbox@4a0f4000 {
648 compatible = "ti,omap4-mailbox";
649 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600650 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
651 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
652 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500653 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600654 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500655 ti,mbox-num-users = <3>;
656 ti,mbox-num-fifos = <8>;
657 status = "disabled";
658 };
659
660 mailbox2: mailbox@4883a000 {
661 compatible = "ti,omap4-mailbox";
662 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600663 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
664 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
665 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
666 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500667 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600668 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500669 ti,mbox-num-users = <4>;
670 ti,mbox-num-fifos = <12>;
671 status = "disabled";
672 };
673
674 mailbox3: mailbox@4883c000 {
675 compatible = "ti,omap4-mailbox";
676 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600677 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
678 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
679 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
680 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500681 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600682 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500683 ti,mbox-num-users = <4>;
684 ti,mbox-num-fifos = <12>;
685 status = "disabled";
686 };
687
688 mailbox4: mailbox@4883e000 {
689 compatible = "ti,omap4-mailbox";
690 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600691 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
692 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
693 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
694 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500695 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600696 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500697 ti,mbox-num-users = <4>;
698 ti,mbox-num-fifos = <12>;
699 status = "disabled";
700 };
701
702 mailbox5: mailbox@48840000 {
703 compatible = "ti,omap4-mailbox";
704 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600705 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
706 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
707 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
708 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500709 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600710 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500711 ti,mbox-num-users = <4>;
712 ti,mbox-num-fifos = <12>;
713 status = "disabled";
714 };
715
716 mailbox6: mailbox@48842000 {
717 compatible = "ti,omap4-mailbox";
718 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600719 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
720 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
721 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
722 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500723 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600724 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500725 ti,mbox-num-users = <4>;
726 ti,mbox-num-fifos = <12>;
727 status = "disabled";
728 };
729
730 mailbox7: mailbox@48844000 {
731 compatible = "ti,omap4-mailbox";
732 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600733 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
734 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
735 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
736 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500737 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600738 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500739 ti,mbox-num-users = <4>;
740 ti,mbox-num-fifos = <12>;
741 status = "disabled";
742 };
743
744 mailbox8: mailbox@48846000 {
745 compatible = "ti,omap4-mailbox";
746 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600747 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
748 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
749 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
750 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500751 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600752 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500753 ti,mbox-num-users = <4>;
754 ti,mbox-num-fifos = <12>;
755 status = "disabled";
756 };
757
758 mailbox9: mailbox@4885e000 {
759 compatible = "ti,omap4-mailbox";
760 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600761 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
762 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
763 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
764 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500765 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600766 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500767 ti,mbox-num-users = <4>;
768 ti,mbox-num-fifos = <12>;
769 status = "disabled";
770 };
771
772 mailbox10: mailbox@48860000 {
773 compatible = "ti,omap4-mailbox";
774 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600775 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
776 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
777 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
778 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500779 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600780 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500781 ti,mbox-num-users = <4>;
782 ti,mbox-num-fifos = <12>;
783 status = "disabled";
784 };
785
786 mailbox11: mailbox@48862000 {
787 compatible = "ti,omap4-mailbox";
788 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600789 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
790 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
791 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
792 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500793 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600794 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500795 ti,mbox-num-users = <4>;
796 ti,mbox-num-fifos = <12>;
797 status = "disabled";
798 };
799
800 mailbox12: mailbox@48864000 {
801 compatible = "ti,omap4-mailbox";
802 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600803 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
804 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
805 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
806 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500807 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600808 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500809 ti,mbox-num-users = <4>;
810 ti,mbox-num-fifos = <12>;
811 status = "disabled";
812 };
813
814 mailbox13: mailbox@48802000 {
815 compatible = "ti,omap4-mailbox";
816 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600817 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
818 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
819 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
820 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500821 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600822 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500823 ti,mbox-num-users = <4>;
824 ti,mbox-num-fifos = <12>;
825 status = "disabled";
826 };
827
R Sricharan6e58b8f2013-08-14 19:08:20 +0530828 timer1: timer@4ae18000 {
829 compatible = "ti,omap5430-timer";
830 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530831 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530832 ti,hwmods = "timer1";
833 ti,timer-alwon;
834 };
835
836 timer2: timer@48032000 {
837 compatible = "ti,omap5430-timer";
838 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530839 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530840 ti,hwmods = "timer2";
841 };
842
843 timer3: timer@48034000 {
844 compatible = "ti,omap5430-timer";
845 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530846 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530847 ti,hwmods = "timer3";
848 };
849
850 timer4: timer@48036000 {
851 compatible = "ti,omap5430-timer";
852 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530853 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530854 ti,hwmods = "timer4";
855 };
856
857 timer5: timer@48820000 {
858 compatible = "ti,omap5430-timer";
859 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530860 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530861 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530862 };
863
864 timer6: timer@48822000 {
865 compatible = "ti,omap5430-timer";
866 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530867 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530868 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530869 };
870
871 timer7: timer@48824000 {
872 compatible = "ti,omap5430-timer";
873 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530874 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530875 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530876 };
877
878 timer8: timer@48826000 {
879 compatible = "ti,omap5430-timer";
880 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530881 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530882 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530883 };
884
885 timer9: timer@4803e000 {
886 compatible = "ti,omap5430-timer";
887 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530888 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530889 ti,hwmods = "timer9";
890 };
891
892 timer10: timer@48086000 {
893 compatible = "ti,omap5430-timer";
894 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530895 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530896 ti,hwmods = "timer10";
897 };
898
899 timer11: timer@48088000 {
900 compatible = "ti,omap5430-timer";
901 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530902 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530903 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530904 };
905
Suman Annad79852a2016-04-05 16:44:10 -0500906 timer12: timer@4ae20000 {
907 compatible = "ti,omap5430-timer";
908 reg = <0x4ae20000 0x80>;
909 interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
910 ti,hwmods = "timer12";
911 ti,timer-alwon;
912 ti,timer-secure;
913 };
914
R Sricharan6e58b8f2013-08-14 19:08:20 +0530915 timer13: timer@48828000 {
916 compatible = "ti,omap5430-timer";
917 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530918 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530919 ti,hwmods = "timer13";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530920 };
921
922 timer14: timer@4882a000 {
923 compatible = "ti,omap5430-timer";
924 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530925 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530926 ti,hwmods = "timer14";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530927 };
928
929 timer15: timer@4882c000 {
930 compatible = "ti,omap5430-timer";
931 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530932 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530933 ti,hwmods = "timer15";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530934 };
935
936 timer16: timer@4882e000 {
937 compatible = "ti,omap5430-timer";
938 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530939 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530940 ti,hwmods = "timer16";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530941 };
942
943 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530944 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530945 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530946 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530947 ti,hwmods = "wd_timer2";
948 };
949
Suman Annadbd7c192014-01-13 18:26:46 -0600950 hwspinlock: spinlock@4a0f6000 {
951 compatible = "ti,omap4-hwspinlock";
952 reg = <0x4a0f6000 0x1000>;
953 ti,hwmods = "spinlock";
954 #hwlock-cells = <1>;
955 };
956
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530957 dmm@4e000000 {
958 compatible = "ti,omap5-dmm";
959 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530960 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530961 ti,hwmods = "dmm";
962 };
963
R Sricharan6e58b8f2013-08-14 19:08:20 +0530964 i2c1: i2c@48070000 {
965 compatible = "ti,omap4-i2c";
966 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530967 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530968 #address-cells = <1>;
969 #size-cells = <0>;
970 ti,hwmods = "i2c1";
971 status = "disabled";
972 };
973
974 i2c2: i2c@48072000 {
975 compatible = "ti,omap4-i2c";
976 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530977 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530978 #address-cells = <1>;
979 #size-cells = <0>;
980 ti,hwmods = "i2c2";
981 status = "disabled";
982 };
983
984 i2c3: i2c@48060000 {
985 compatible = "ti,omap4-i2c";
986 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530987 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530988 #address-cells = <1>;
989 #size-cells = <0>;
990 ti,hwmods = "i2c3";
991 status = "disabled";
992 };
993
994 i2c4: i2c@4807a000 {
995 compatible = "ti,omap4-i2c";
996 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530997 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530998 #address-cells = <1>;
999 #size-cells = <0>;
1000 ti,hwmods = "i2c4";
1001 status = "disabled";
1002 };
1003
1004 i2c5: i2c@4807c000 {
1005 compatible = "ti,omap4-i2c";
1006 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301007 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301008 #address-cells = <1>;
1009 #size-cells = <0>;
1010 ti,hwmods = "i2c5";
1011 status = "disabled";
1012 };
1013
1014 mmc1: mmc@4809c000 {
1015 compatible = "ti,omap4-hsmmc";
1016 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301017 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301018 ti,hwmods = "mmc1";
1019 ti,dual-volt;
1020 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001021 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301022 dma-names = "tx", "rx";
1023 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +05301024 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301025 };
1026
1027 mmc2: mmc@480b4000 {
1028 compatible = "ti,omap4-hsmmc";
1029 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301030 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301031 ti,hwmods = "mmc2";
1032 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001033 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301034 dma-names = "tx", "rx";
1035 status = "disabled";
1036 };
1037
1038 mmc3: mmc@480ad000 {
1039 compatible = "ti,omap4-hsmmc";
1040 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301041 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301042 ti,hwmods = "mmc3";
1043 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001044 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301045 dma-names = "tx", "rx";
1046 status = "disabled";
1047 };
1048
1049 mmc4: mmc@480d1000 {
1050 compatible = "ti,omap4-hsmmc";
1051 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301052 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301053 ti,hwmods = "mmc4";
1054 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001055 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301056 dma-names = "tx", "rx";
1057 status = "disabled";
1058 };
1059
Suman Anna2c7e07c52015-10-02 18:23:24 -05001060 mmu0_dsp1: mmu@40d01000 {
1061 compatible = "ti,dra7-dsp-iommu";
1062 reg = <0x40d01000 0x100>;
1063 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
1064 ti,hwmods = "mmu0_dsp1";
1065 #iommu-cells = <0>;
1066 ti,syscon-mmuconfig = <&dsp1_system 0x0>;
1067 status = "disabled";
1068 };
1069
1070 mmu1_dsp1: mmu@40d02000 {
1071 compatible = "ti,dra7-dsp-iommu";
1072 reg = <0x40d02000 0x100>;
1073 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
1074 ti,hwmods = "mmu1_dsp1";
1075 #iommu-cells = <0>;
1076 ti,syscon-mmuconfig = <&dsp1_system 0x1>;
1077 status = "disabled";
1078 };
1079
1080 mmu_ipu1: mmu@58882000 {
1081 compatible = "ti,dra7-iommu";
1082 reg = <0x58882000 0x100>;
1083 interrupts = <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>;
1084 ti,hwmods = "mmu_ipu1";
1085 #iommu-cells = <0>;
1086 ti,iommu-bus-err-back;
1087 status = "disabled";
1088 };
1089
1090 mmu_ipu2: mmu@55082000 {
1091 compatible = "ti,dra7-iommu";
1092 reg = <0x55082000 0x100>;
1093 interrupts = <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>;
1094 ti,hwmods = "mmu_ipu2";
1095 #iommu-cells = <0>;
1096 ti,iommu-bus-err-back;
1097 status = "disabled";
1098 };
1099
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301100 abb_mpu: regulator-abb-mpu {
1101 compatible = "ti,abb-v3";
1102 regulator-name = "abb_mpu";
1103 #address-cells = <0>;
1104 #size-cells = <0>;
1105 clocks = <&sys_clkin1>;
1106 ti,settling-time = <50>;
1107 ti,clock-cycles = <16>;
1108
1109 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001110 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301111 <0x4ae0c158 0x4>;
1112 reg-names = "setup-address", "control-address",
1113 "int-address", "efuse-address",
1114 "ldo-address";
1115 ti,tranxdone-status-mask = <0x80>;
1116 /* LDOVBBMPU_FBB_MUX_CTRL */
1117 ti,ldovbb-override-mask = <0x400>;
1118 /* LDOVBBMPU_FBB_VSET_OUT */
1119 ti,ldovbb-vset-mask = <0x1F>;
1120
1121 /*
1122 * NOTE: only FBB mode used but actual vset will
1123 * determine final biasing
1124 */
1125 ti,abb_info = <
1126 /*uV ABB efuse rbb_m fbb_m vset_m*/
1127 1060000 0 0x0 0 0x02000000 0x01F00000
1128 1160000 0 0x4 0 0x02000000 0x01F00000
1129 1210000 0 0x8 0 0x02000000 0x01F00000
1130 >;
1131 };
1132
1133 abb_ivahd: regulator-abb-ivahd {
1134 compatible = "ti,abb-v3";
1135 regulator-name = "abb_ivahd";
1136 #address-cells = <0>;
1137 #size-cells = <0>;
1138 clocks = <&sys_clkin1>;
1139 ti,settling-time = <50>;
1140 ti,clock-cycles = <16>;
1141
1142 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001143 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301144 <0x4a002470 0x4>;
1145 reg-names = "setup-address", "control-address",
1146 "int-address", "efuse-address",
1147 "ldo-address";
1148 ti,tranxdone-status-mask = <0x40000000>;
1149 /* LDOVBBIVA_FBB_MUX_CTRL */
1150 ti,ldovbb-override-mask = <0x400>;
1151 /* LDOVBBIVA_FBB_VSET_OUT */
1152 ti,ldovbb-vset-mask = <0x1F>;
1153
1154 /*
1155 * NOTE: only FBB mode used but actual vset will
1156 * determine final biasing
1157 */
1158 ti,abb_info = <
1159 /*uV ABB efuse rbb_m fbb_m vset_m*/
1160 1055000 0 0x0 0 0x02000000 0x01F00000
1161 1150000 0 0x4 0 0x02000000 0x01F00000
1162 1250000 0 0x8 0 0x02000000 0x01F00000
1163 >;
1164 };
1165
1166 abb_dspeve: regulator-abb-dspeve {
1167 compatible = "ti,abb-v3";
1168 regulator-name = "abb_dspeve";
1169 #address-cells = <0>;
1170 #size-cells = <0>;
1171 clocks = <&sys_clkin1>;
1172 ti,settling-time = <50>;
1173 ti,clock-cycles = <16>;
1174
1175 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001176 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301177 <0x4a00246c 0x4>;
1178 reg-names = "setup-address", "control-address",
1179 "int-address", "efuse-address",
1180 "ldo-address";
1181 ti,tranxdone-status-mask = <0x20000000>;
1182 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
1183 ti,ldovbb-override-mask = <0x400>;
1184 /* LDOVBBDSPEVE_FBB_VSET_OUT */
1185 ti,ldovbb-vset-mask = <0x1F>;
1186
1187 /*
1188 * NOTE: only FBB mode used but actual vset will
1189 * determine final biasing
1190 */
1191 ti,abb_info = <
1192 /*uV ABB efuse rbb_m fbb_m vset_m*/
1193 1055000 0 0x0 0 0x02000000 0x01F00000
1194 1150000 0 0x4 0 0x02000000 0x01F00000
1195 1250000 0 0x8 0 0x02000000 0x01F00000
1196 >;
1197 };
1198
1199 abb_gpu: regulator-abb-gpu {
1200 compatible = "ti,abb-v3";
1201 regulator-name = "abb_gpu";
1202 #address-cells = <0>;
1203 #size-cells = <0>;
1204 clocks = <&sys_clkin1>;
1205 ti,settling-time = <50>;
1206 ti,clock-cycles = <16>;
1207
1208 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001209 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301210 <0x4ae0c154 0x4>;
1211 reg-names = "setup-address", "control-address",
1212 "int-address", "efuse-address",
1213 "ldo-address";
1214 ti,tranxdone-status-mask = <0x10000000>;
1215 /* LDOVBBGPU_FBB_MUX_CTRL */
1216 ti,ldovbb-override-mask = <0x400>;
1217 /* LDOVBBGPU_FBB_VSET_OUT */
1218 ti,ldovbb-vset-mask = <0x1F>;
1219
1220 /*
1221 * NOTE: only FBB mode used but actual vset will
1222 * determine final biasing
1223 */
1224 ti,abb_info = <
1225 /*uV ABB efuse rbb_m fbb_m vset_m*/
1226 1090000 0 0x0 0 0x02000000 0x01F00000
1227 1210000 0 0x4 0 0x02000000 0x01F00000
1228 1280000 0 0x8 0 0x02000000 0x01F00000
1229 >;
1230 };
1231
R Sricharan6e58b8f2013-08-14 19:08:20 +05301232 mcspi1: spi@48098000 {
1233 compatible = "ti,omap4-mcspi";
1234 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301235 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301236 #address-cells = <1>;
1237 #size-cells = <0>;
1238 ti,hwmods = "mcspi1";
1239 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001240 dmas = <&sdma_xbar 35>,
1241 <&sdma_xbar 36>,
1242 <&sdma_xbar 37>,
1243 <&sdma_xbar 38>,
1244 <&sdma_xbar 39>,
1245 <&sdma_xbar 40>,
1246 <&sdma_xbar 41>,
1247 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301248 dma-names = "tx0", "rx0", "tx1", "rx1",
1249 "tx2", "rx2", "tx3", "rx3";
1250 status = "disabled";
1251 };
1252
1253 mcspi2: spi@4809a000 {
1254 compatible = "ti,omap4-mcspi";
1255 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301256 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301257 #address-cells = <1>;
1258 #size-cells = <0>;
1259 ti,hwmods = "mcspi2";
1260 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001261 dmas = <&sdma_xbar 43>,
1262 <&sdma_xbar 44>,
1263 <&sdma_xbar 45>,
1264 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301265 dma-names = "tx0", "rx0", "tx1", "rx1";
1266 status = "disabled";
1267 };
1268
1269 mcspi3: spi@480b8000 {
1270 compatible = "ti,omap4-mcspi";
1271 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301272 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301273 #address-cells = <1>;
1274 #size-cells = <0>;
1275 ti,hwmods = "mcspi3";
1276 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001277 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301278 dma-names = "tx0", "rx0";
1279 status = "disabled";
1280 };
1281
1282 mcspi4: spi@480ba000 {
1283 compatible = "ti,omap4-mcspi";
1284 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301285 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301286 #address-cells = <1>;
1287 #size-cells = <0>;
1288 ti,hwmods = "mcspi4";
1289 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001290 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301291 dma-names = "tx0", "rx0";
1292 status = "disabled";
1293 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301294
1295 qspi: qspi@4b300000 {
1296 compatible = "ti,dra7xxx-qspi";
Vignesh R1929d0b2015-12-11 09:39:59 +05301297 reg = <0x4b300000 0x100>,
1298 <0x5c000000 0x4000000>;
1299 reg-names = "qspi_base", "qspi_mmap";
1300 syscon-chipselects = <&scm_conf 0x558>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301301 #address-cells = <1>;
1302 #size-cells = <0>;
1303 ti,hwmods = "qspi";
1304 clocks = <&qspi_gfclk_div>;
1305 clock-names = "fck";
1306 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301307 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301308 status = "disabled";
1309 };
Balaji T K7be80562014-05-07 14:58:58 +03001310
Balaji T K7be80562014-05-07 14:58:58 +03001311 /* OCP2SCP3 */
1312 ocp2scp@4a090000 {
1313 compatible = "ti,omap-ocp2scp";
1314 #address-cells = <1>;
1315 #size-cells = <1>;
1316 ranges;
1317 reg = <0x4a090000 0x20>;
1318 ti,hwmods = "ocp2scp3";
1319 sata_phy: phy@4A096000 {
1320 compatible = "ti,phy-pipe3-sata";
1321 reg = <0x4A096000 0x80>, /* phy_rx */
1322 <0x4A096400 0x64>, /* phy_tx */
1323 <0x4A096800 0x40>; /* pll_ctrl */
1324 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301325 syscon-phy-power = <&scm_conf 0x374>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001326 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1327 clock-names = "sysclk", "refclk";
Roger Quadros257d5d92015-07-17 16:47:23 +03001328 syscon-pllreset = <&scm_conf 0x3fc>;
Balaji T K7be80562014-05-07 14:58:58 +03001329 #phy-cells = <0>;
1330 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301331
1332 pcie1_phy: pciephy@4a094000 {
1333 compatible = "ti,phy-pipe3-pcie";
1334 reg = <0x4a094000 0x80>, /* phy_rx */
1335 <0x4a094400 0x64>; /* phy_tx */
1336 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301337 syscon-phy-power = <&scm_conf_pcie 0x1c>;
1338 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301339 clocks = <&dpll_pcie_ref_ck>,
1340 <&dpll_pcie_ref_m2ldo_ck>,
1341 <&optfclk_pciephy1_32khz>,
1342 <&optfclk_pciephy1_clk>,
1343 <&optfclk_pciephy1_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301344 <&optfclk_pciephy_div>,
1345 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301346 clock-names = "dpll_ref", "dpll_ref_m2",
1347 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301348 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301349 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301350 };
1351
1352 pcie2_phy: pciephy@4a095000 {
1353 compatible = "ti,phy-pipe3-pcie";
1354 reg = <0x4a095000 0x80>, /* phy_rx */
1355 <0x4a095400 0x64>; /* phy_tx */
1356 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301357 syscon-phy-power = <&scm_conf_pcie 0x20>;
1358 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301359 clocks = <&dpll_pcie_ref_ck>,
1360 <&dpll_pcie_ref_m2ldo_ck>,
1361 <&optfclk_pciephy2_32khz>,
1362 <&optfclk_pciephy2_clk>,
1363 <&optfclk_pciephy2_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301364 <&optfclk_pciephy_div>,
1365 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301366 clock-names = "dpll_ref", "dpll_ref_m2",
1367 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301368 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301369 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301370 status = "disabled";
1371 };
Balaji T K7be80562014-05-07 14:58:58 +03001372 };
1373
1374 sata: sata@4a141100 {
1375 compatible = "snps,dwc-ahci";
1376 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301377 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001378 phys = <&sata_phy>;
1379 phy-names = "sata-phy";
1380 clocks = <&sata_ref_clk>;
1381 ti,hwmods = "sata";
Jean-Jacques Hiblot5b661862017-01-09 13:22:15 +01001382 ports-implemented = <0x1>;
Balaji T K7be80562014-05-07 14:58:58 +03001383 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001384
Nishanth Menon00edd312015-04-08 18:56:27 -05001385 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301386 compatible = "ti,am3352-rtc";
1387 reg = <0x48838000 0x100>;
1388 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1389 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1390 ti,hwmods = "rtcss";
1391 clocks = <&sys_32k_ck>;
1392 };
1393
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001394 /* OCP2SCP1 */
1395 ocp2scp@4a080000 {
1396 compatible = "ti,omap-ocp2scp";
1397 #address-cells = <1>;
1398 #size-cells = <1>;
1399 ranges;
1400 reg = <0x4a080000 0x20>;
1401 ti,hwmods = "ocp2scp1";
1402
1403 usb2_phy1: phy@4a084000 {
Sekhar Nori291f1af2016-08-23 11:57:41 +03001404 compatible = "ti,dra7x-usb2", "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001405 reg = <0x4a084000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301406 syscon-phy-power = <&scm_conf 0x300>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001407 clocks = <&usb_phy1_always_on_clk32k>,
1408 <&usb_otg_ss1_refclk960m>;
1409 clock-names = "wkupclk",
1410 "refclk";
1411 #phy-cells = <0>;
1412 };
1413
1414 usb2_phy2: phy@4a085000 {
Kishon Vijay Abraham I4b4f52e2015-12-21 14:43:20 +05301415 compatible = "ti,dra7x-usb2-phy2",
1416 "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001417 reg = <0x4a085000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301418 syscon-phy-power = <&scm_conf 0xe74>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001419 clocks = <&usb_phy2_always_on_clk32k>,
1420 <&usb_otg_ss2_refclk960m>;
1421 clock-names = "wkupclk",
1422 "refclk";
1423 #phy-cells = <0>;
1424 };
1425
1426 usb3_phy1: phy@4a084400 {
1427 compatible = "ti,omap-usb3";
1428 reg = <0x4a084400 0x80>,
1429 <0x4a084800 0x64>,
1430 <0x4a084c00 0x40>;
1431 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301432 syscon-phy-power = <&scm_conf 0x370>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001433 clocks = <&usb_phy3_always_on_clk32k>,
1434 <&sys_clkin1>,
1435 <&usb_otg_ss1_refclk960m>;
1436 clock-names = "wkupclk",
1437 "sysclk",
1438 "refclk";
1439 #phy-cells = <0>;
1440 };
1441 };
1442
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001443 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001444 compatible = "ti,dwc3";
1445 ti,hwmods = "usb_otg_ss1";
1446 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301447 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001448 #address-cells = <1>;
1449 #size-cells = <1>;
1450 utmi-mode = <2>;
1451 ranges;
1452 usb1: usb@48890000 {
1453 compatible = "snps,dwc3";
1454 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001455 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1456 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1457 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1458 interrupt-names = "peripheral",
1459 "host",
1460 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001461 phys = <&usb2_phy1>, <&usb3_phy1>;
1462 phy-names = "usb2-phy", "usb3-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001463 maximum-speed = "super-speed";
1464 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001465 snps,dis_u3_susphy_quirk;
1466 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001467 };
1468 };
1469
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001470 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001471 compatible = "ti,dwc3";
1472 ti,hwmods = "usb_otg_ss2";
1473 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301474 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001475 #address-cells = <1>;
1476 #size-cells = <1>;
1477 utmi-mode = <2>;
1478 ranges;
1479 usb2: usb@488d0000 {
1480 compatible = "snps,dwc3";
1481 reg = <0x488d0000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001482 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1483 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1484 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1485 interrupt-names = "peripheral",
1486 "host",
1487 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001488 phys = <&usb2_phy2>;
1489 phy-names = "usb2-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001490 maximum-speed = "high-speed";
1491 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001492 snps,dis_u3_susphy_quirk;
1493 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001494 };
1495 };
1496
1497 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001498 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001499 compatible = "ti,dwc3";
1500 ti,hwmods = "usb_otg_ss3";
1501 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301502 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001503 #address-cells = <1>;
1504 #size-cells = <1>;
1505 utmi-mode = <2>;
1506 ranges;
1507 status = "disabled";
1508 usb3: usb@48910000 {
1509 compatible = "snps,dwc3";
1510 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001511 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1512 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1513 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1514 interrupt-names = "peripheral",
1515 "host",
1516 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001517 maximum-speed = "high-speed";
1518 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001519 snps,dis_u3_susphy_quirk;
1520 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001521 };
1522 };
1523
Minal Shahff66a3c2014-05-19 14:45:47 +05301524 elm: elm@48078000 {
1525 compatible = "ti,am3352-elm";
1526 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301527 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301528 ti,hwmods = "elm";
1529 status = "disabled";
1530 };
1531
1532 gpmc: gpmc@50000000 {
1533 compatible = "ti,am3352-gpmc";
1534 ti,hwmods = "gpmc";
1535 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301536 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Franklin S Cooper Jr10ce2402016-05-04 12:43:55 -05001537 dmas = <&edma_xbar 4 0>;
1538 dma-names = "rxtx";
Minal Shahff66a3c2014-05-19 14:45:47 +05301539 gpmc,num-cs = <8>;
1540 gpmc,num-waitpins = <2>;
1541 #address-cells = <2>;
1542 #size-cells = <1>;
Roger Quadros488f2702016-02-23 18:37:17 +02001543 interrupt-controller;
1544 #interrupt-cells = <2>;
Roger Quadros845b1a22016-04-07 13:25:31 +03001545 gpio-controller;
1546 #gpio-cells = <2>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301547 status = "disabled";
1548 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001549
1550 atl: atl@4843c000 {
1551 compatible = "ti,dra7-atl";
1552 reg = <0x4843c000 0x3ff>;
1553 ti,hwmods = "atl";
1554 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1555 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1556 clocks = <&atl_gfclk_mux>;
1557 clock-names = "fck";
1558 status = "disabled";
1559 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001560
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001561 mcasp1: mcasp@48460000 {
1562 compatible = "ti,dra7-mcasp-audio";
1563 ti,hwmods = "mcasp1";
1564 reg = <0x48460000 0x2000>,
1565 <0x45800000 0x1000>;
1566 reg-names = "mpu","dat";
1567 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
1568 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
1569 interrupt-names = "tx", "rx";
1570 dmas = <&edma_xbar 129 1>, <&edma_xbar 128 1>;
1571 dma-names = "tx", "rx";
1572 clocks = <&mcasp1_aux_gfclk_mux>, <&mcasp1_ahclkx_mux>,
1573 <&mcasp1_ahclkr_mux>;
1574 clock-names = "fck", "ahclkx", "ahclkr";
1575 status = "disabled";
1576 };
1577
1578 mcasp2: mcasp@48464000 {
1579 compatible = "ti,dra7-mcasp-audio";
1580 ti,hwmods = "mcasp2";
1581 reg = <0x48464000 0x2000>,
1582 <0x45c00000 0x1000>;
1583 reg-names = "mpu","dat";
1584 interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
1585 <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
1586 interrupt-names = "tx", "rx";
1587 dmas = <&edma_xbar 131 1>, <&edma_xbar 130 1>;
1588 dma-names = "tx", "rx";
1589 clocks = <&mcasp2_aux_gfclk_mux>, <&mcasp2_ahclkx_mux>,
1590 <&mcasp2_ahclkr_mux>;
1591 clock-names = "fck", "ahclkx", "ahclkr";
1592 status = "disabled";
1593 };
1594
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001595 mcasp3: mcasp@48468000 {
1596 compatible = "ti,dra7-mcasp-audio";
1597 ti,hwmods = "mcasp3";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001598 reg = <0x48468000 0x2000>,
1599 <0x46000000 0x1000>;
1600 reg-names = "mpu","dat";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001601 interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>,
1602 <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
1603 interrupt-names = "tx", "rx";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001604 dmas = <&edma_xbar 133 1>, <&edma_xbar 132 1>;
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001605 dma-names = "tx", "rx";
Peter Ujfalusibf05c2c2015-11-12 09:32:57 +02001606 clocks = <&mcasp3_aux_gfclk_mux>, <&mcasp3_ahclkx_mux>;
1607 clock-names = "fck", "ahclkx";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001608 status = "disabled";
1609 };
1610
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001611 mcasp4: mcasp@4846c000 {
1612 compatible = "ti,dra7-mcasp-audio";
1613 ti,hwmods = "mcasp4";
1614 reg = <0x4846c000 0x2000>,
1615 <0x48436000 0x1000>;
1616 reg-names = "mpu","dat";
1617 interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
1618 <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
1619 interrupt-names = "tx", "rx";
1620 dmas = <&edma_xbar 135 1>, <&edma_xbar 134 1>;
1621 dma-names = "tx", "rx";
1622 clocks = <&mcasp4_aux_gfclk_mux>, <&mcasp4_ahclkx_mux>;
1623 clock-names = "fck", "ahclkx";
1624 status = "disabled";
1625 };
1626
1627 mcasp5: mcasp@48470000 {
1628 compatible = "ti,dra7-mcasp-audio";
1629 ti,hwmods = "mcasp5";
1630 reg = <0x48470000 0x2000>,
1631 <0x4843a000 0x1000>;
1632 reg-names = "mpu","dat";
1633 interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>,
1634 <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
1635 interrupt-names = "tx", "rx";
1636 dmas = <&edma_xbar 137 1>, <&edma_xbar 136 1>;
1637 dma-names = "tx", "rx";
1638 clocks = <&mcasp5_aux_gfclk_mux>, <&mcasp5_ahclkx_mux>;
1639 clock-names = "fck", "ahclkx";
1640 status = "disabled";
1641 };
1642
1643 mcasp6: mcasp@48474000 {
1644 compatible = "ti,dra7-mcasp-audio";
1645 ti,hwmods = "mcasp6";
1646 reg = <0x48474000 0x2000>,
1647 <0x4844c000 0x1000>;
1648 reg-names = "mpu","dat";
1649 interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
1650 <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
1651 interrupt-names = "tx", "rx";
1652 dmas = <&edma_xbar 139 1>, <&edma_xbar 138 1>;
1653 dma-names = "tx", "rx";
1654 clocks = <&mcasp6_aux_gfclk_mux>, <&mcasp6_ahclkx_mux>;
1655 clock-names = "fck", "ahclkx";
1656 status = "disabled";
1657 };
1658
1659 mcasp7: mcasp@48478000 {
1660 compatible = "ti,dra7-mcasp-audio";
1661 ti,hwmods = "mcasp7";
1662 reg = <0x48478000 0x2000>,
1663 <0x48450000 0x1000>;
1664 reg-names = "mpu","dat";
1665 interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
1666 <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
1667 interrupt-names = "tx", "rx";
1668 dmas = <&edma_xbar 141 1>, <&edma_xbar 140 1>;
1669 dma-names = "tx", "rx";
1670 clocks = <&mcasp7_aux_gfclk_mux>, <&mcasp7_ahclkx_mux>;
1671 clock-names = "fck", "ahclkx";
1672 status = "disabled";
1673 };
1674
1675 mcasp8: mcasp@4847c000 {
1676 compatible = "ti,dra7-mcasp-audio";
1677 ti,hwmods = "mcasp8";
1678 reg = <0x4847c000 0x2000>,
1679 <0x48454000 0x1000>;
1680 reg-names = "mpu","dat";
1681 interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
1682 <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
1683 interrupt-names = "tx", "rx";
1684 dmas = <&edma_xbar 143 1>, <&edma_xbar 142 1>;
1685 dma-names = "tx", "rx";
1686 clocks = <&mcasp8_aux_gfclk_mux>, <&mcasp8_ahclkx_mux>;
1687 clock-names = "fck", "ahclkx";
1688 status = "disabled";
1689 };
1690
Marc Zyngier783d3182015-03-11 15:43:44 +00001691 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301692 compatible = "ti,irq-crossbar";
1693 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001694 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001695 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001696 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301697 ti,max-irqs = <160>;
1698 ti,max-crossbar-sources = <MAX_SOURCES>;
1699 ti,reg-size = <2>;
1700 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1701 ti,irqs-skip = <10 133 139 140>;
1702 ti,irqs-safe-map = <0>;
1703 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301704
Vishal Mahaveerc263a5b2015-08-25 13:57:49 -05001705 mac: ethernet@48484000 {
Mugunthan V Ne2095312015-08-12 15:22:54 +05301706 compatible = "ti,dra7-cpsw","ti,cpsw";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301707 ti,hwmods = "gmac";
Grygorii Strashkoc0973382016-08-30 17:58:01 +03001708 clocks = <&gmac_main_clk>, <&gmac_rft_clk_mux>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301709 clock-names = "fck", "cpts";
1710 cpdma_channels = <8>;
1711 ale_entries = <1024>;
1712 bd_ram_size = <0x2000>;
1713 no_bd_ram = <0>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301714 mac_control = <0x20>;
1715 slaves = <2>;
1716 active_slave = <0>;
Grygorii Strashkoc0973382016-08-30 17:58:01 +03001717 cpts_clock_mult = <0x784CFE14>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301718 cpts_clock_shift = <29>;
1719 reg = <0x48484000 0x1000
1720 0x48485200 0x2E00>;
1721 #address-cells = <1>;
1722 #size-cells = <1>;
Mugunthan V N0f514e62016-03-07 01:41:22 -07001723
1724 /*
1725 * Do not allow gating of cpsw clock as workaround
1726 * for errata i877. Keeping internal clock disabled
1727 * causes the device switching characteristics
1728 * to degrade over time and eventually fail to meet
1729 * the data manual delay time/skew specs.
1730 */
1731 ti,no-idle;
1732
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301733 /*
1734 * rx_thresh_pend
1735 * rx_pend
1736 * tx_pend
1737 * misc_pend
1738 */
1739 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1740 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1741 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1742 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1743 ranges;
Mugunthan V Na084e132015-09-21 15:56:52 +05301744 syscon = <&scm_conf>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301745 status = "disabled";
1746
1747 davinci_mdio: mdio@48485000 {
Grygorii Strashko9efd1a62016-06-24 21:23:55 +03001748 compatible = "ti,cpsw-mdio","ti,davinci_mdio";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301749 #address-cells = <1>;
1750 #size-cells = <0>;
1751 ti,hwmods = "davinci_mdio";
1752 bus_freq = <1000000>;
1753 reg = <0x48485000 0x100>;
1754 };
1755
1756 cpsw_emac0: slave@48480200 {
1757 /* Filled in by U-Boot */
1758 mac-address = [ 00 00 00 00 00 00 ];
1759 };
1760
1761 cpsw_emac1: slave@48480300 {
1762 /* Filled in by U-Boot */
1763 mac-address = [ 00 00 00 00 00 00 ];
1764 };
1765
1766 phy_sel: cpsw-phy-sel@4a002554 {
1767 compatible = "ti,dra7xx-cpsw-phy-sel";
1768 reg= <0x4a002554 0x4>;
1769 reg-names = "gmii-sel";
1770 };
1771 };
1772
Kevin Hilmana5f17352018-05-21 13:08:32 -07001773 dcan1: can@4ae3c000 {
Roger Quadros9ec49b92014-08-15 16:08:36 +03001774 compatible = "ti,dra7-d_can";
1775 ti,hwmods = "dcan1";
1776 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001777 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001778 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1779 clocks = <&dcan1_sys_clk_mux>;
1780 status = "disabled";
1781 };
1782
Kevin Hilmana5f17352018-05-21 13:08:32 -07001783 dcan2: can@48480000 {
Roger Quadros9ec49b92014-08-15 16:08:36 +03001784 compatible = "ti,dra7-d_can";
1785 ti,hwmods = "dcan2";
1786 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001787 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001788 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1789 clocks = <&sys_clkin1>;
1790 status = "disabled";
1791 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301792
1793 dss: dss@58000000 {
1794 compatible = "ti,dra7-dss";
1795 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1796 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1797 status = "disabled";
1798 ti,hwmods = "dss_core";
1799 /* CTRL_CORE_DSS_PLL_CONTROL */
1800 syscon-pll-ctrl = <&scm_conf 0x538>;
1801 #address-cells = <1>;
1802 #size-cells = <1>;
1803 ranges;
1804
1805 dispc@58001000 {
1806 compatible = "ti,dra7-dispc";
1807 reg = <0x58001000 0x1000>;
1808 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1809 ti,hwmods = "dss_dispc";
1810 clocks = <&dss_dss_clk>;
1811 clock-names = "fck";
1812 /* CTRL_CORE_SMA_SW_1 */
1813 syscon-pol = <&scm_conf 0x534>;
1814 };
1815
1816 hdmi: encoder@58060000 {
1817 compatible = "ti,dra7-hdmi";
1818 reg = <0x58040000 0x200>,
1819 <0x58040200 0x80>,
1820 <0x58040300 0x80>,
1821 <0x58060000 0x19000>;
1822 reg-names = "wp", "pll", "phy", "core";
1823 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1824 status = "disabled";
1825 ti,hwmods = "dss_hdmi";
1826 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1827 clock-names = "fck", "sys_clk";
1828 };
1829 };
Vignesh R34370142016-05-03 10:56:55 -05001830
1831 epwmss0: epwmss@4843e000 {
1832 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1833 reg = <0x4843e000 0x30>;
1834 ti,hwmods = "epwmss0";
1835 #address-cells = <1>;
1836 #size-cells = <1>;
1837 status = "disabled";
1838 ranges;
1839
1840 ehrpwm0: pwm@4843e200 {
1841 compatible = "ti,dra746-ehrpwm",
1842 "ti,am3352-ehrpwm";
1843 #pwm-cells = <3>;
1844 reg = <0x4843e200 0x80>;
1845 clocks = <&ehrpwm0_tbclk>, <&l4_root_clk_div>;
1846 clock-names = "tbclk", "fck";
1847 status = "disabled";
1848 };
1849
1850 ecap0: ecap@4843e100 {
1851 compatible = "ti,dra746-ecap",
1852 "ti,am3352-ecap";
1853 #pwm-cells = <3>;
1854 reg = <0x4843e100 0x80>;
1855 clocks = <&l4_root_clk_div>;
1856 clock-names = "fck";
1857 status = "disabled";
1858 };
1859 };
1860
1861 epwmss1: epwmss@48440000 {
1862 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1863 reg = <0x48440000 0x30>;
1864 ti,hwmods = "epwmss1";
1865 #address-cells = <1>;
1866 #size-cells = <1>;
1867 status = "disabled";
1868 ranges;
1869
1870 ehrpwm1: pwm@48440200 {
1871 compatible = "ti,dra746-ehrpwm",
1872 "ti,am3352-ehrpwm";
1873 #pwm-cells = <3>;
1874 reg = <0x48440200 0x80>;
1875 clocks = <&ehrpwm1_tbclk>, <&l4_root_clk_div>;
1876 clock-names = "tbclk", "fck";
1877 status = "disabled";
1878 };
1879
1880 ecap1: ecap@48440100 {
1881 compatible = "ti,dra746-ecap",
1882 "ti,am3352-ecap";
1883 #pwm-cells = <3>;
1884 reg = <0x48440100 0x80>;
1885 clocks = <&l4_root_clk_div>;
1886 clock-names = "fck";
1887 status = "disabled";
1888 };
1889 };
1890
1891 epwmss2: epwmss@48442000 {
1892 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1893 reg = <0x48442000 0x30>;
1894 ti,hwmods = "epwmss2";
1895 #address-cells = <1>;
1896 #size-cells = <1>;
1897 status = "disabled";
1898 ranges;
1899
1900 ehrpwm2: pwm@48442200 {
1901 compatible = "ti,dra746-ehrpwm",
1902 "ti,am3352-ehrpwm";
1903 #pwm-cells = <3>;
1904 reg = <0x48442200 0x80>;
1905 clocks = <&ehrpwm2_tbclk>, <&l4_root_clk_div>;
1906 clock-names = "tbclk", "fck";
1907 status = "disabled";
1908 };
1909
1910 ecap2: ecap@48442100 {
1911 compatible = "ti,dra746-ecap",
1912 "ti,am3352-ecap";
1913 #pwm-cells = <3>;
1914 reg = <0x48442100 0x80>;
1915 clocks = <&l4_root_clk_div>;
1916 clock-names = "fck";
1917 status = "disabled";
1918 };
1919 };
Joel Fernandesbac9d0b2016-06-01 12:06:41 +03001920
Joel Fernandese7fd15c2016-06-01 12:06:42 +03001921 aes1: aes@4b500000 {
1922 compatible = "ti,omap4-aes";
1923 ti,hwmods = "aes1";
1924 reg = <0x4b500000 0xa0>;
1925 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
1926 dmas = <&edma_xbar 111 0>, <&edma_xbar 110 0>;
1927 dma-names = "tx", "rx";
1928 clocks = <&l3_iclk_div>;
1929 clock-names = "fck";
1930 };
1931
1932 aes2: aes@4b700000 {
1933 compatible = "ti,omap4-aes";
1934 ti,hwmods = "aes2";
1935 reg = <0x4b700000 0xa0>;
1936 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
1937 dmas = <&edma_xbar 114 0>, <&edma_xbar 113 0>;
1938 dma-names = "tx", "rx";
1939 clocks = <&l3_iclk_div>;
1940 clock-names = "fck";
1941 };
1942
Joel Fernandesbac9d0b2016-06-01 12:06:41 +03001943 des: des@480a5000 {
1944 compatible = "ti,omap4-des";
1945 ti,hwmods = "des";
1946 reg = <0x480a5000 0xa0>;
1947 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
1948 dmas = <&sdma_xbar 117>, <&sdma_xbar 116>;
1949 dma-names = "tx", "rx";
1950 clocks = <&l3_iclk_div>;
1951 clock-names = "fck";
1952 };
Lokesh Vutlada346092016-06-01 12:06:43 +03001953
1954 sham: sham@53100000 {
1955 compatible = "ti,omap5-sham";
1956 ti,hwmods = "sham";
1957 reg = <0x4b101000 0x300>;
1958 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
1959 dmas = <&edma_xbar 119 0>;
1960 dma-names = "rx";
1961 clocks = <&l3_iclk_div>;
1962 clock-names = "fck";
1963 };
Lokesh Vutla610e9c42016-06-01 12:06:44 +03001964
1965 rng: rng@48090000 {
1966 compatible = "ti,omap4-rng";
1967 ti,hwmods = "rng";
1968 reg = <0x48090000 0x2000>;
1969 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
1970 clocks = <&l3_iclk_div>;
1971 clock-names = "fck";
1972 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301973 };
Keerthyf7397ed2015-03-23 14:39:38 -05001974
1975 thermal_zones: thermal-zones {
1976 #include "omap4-cpu-thermal.dtsi"
1977 #include "omap5-gpu-thermal.dtsi"
1978 #include "omap5-core-thermal.dtsi"
Keerthy667f2592016-02-08 14:46:30 +05301979 #include "dra7-dspeve-thermal.dtsi"
1980 #include "dra7-iva-thermal.dtsi"
Keerthyf7397ed2015-03-23 14:39:38 -05001981 };
1982
1983};
1984
1985&cpu_thermal {
1986 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301987};
Tero Kristoee6c7502013-07-18 17:18:33 +03001988
1989/include/ "dra7xx-clocks.dtsi"