blob: b1e9f5c0fb79123dd1e117260eacaea6c700825f [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
13#include "skeleton.dtsi"
14
R Sricharana46631c2014-06-26 12:55:31 +053015#define MAX_SOURCES 400
R Sricharana46631c2014-06-26 12:55:31 +053016
R Sricharan6e58b8f2013-08-14 19:08:20 +053017/ {
Lokesh Vutladae320e2016-02-24 15:41:04 +053018 #address-cells = <2>;
19 #size-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053020
21 compatible = "ti,dra7xx";
Marc Zyngier783d3182015-03-11 15:43:44 +000022 interrupt-parent = <&crossbar_mpu>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053023
24 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050025 i2c0 = &i2c1;
26 i2c1 = &i2c2;
27 i2c2 = &i2c3;
28 i2c3 = &i2c4;
29 i2c4 = &i2c5;
R Sricharan6e58b8f2013-08-14 19:08:20 +053030 serial0 = &uart1;
31 serial1 = &uart2;
32 serial2 = &uart3;
33 serial3 = &uart4;
34 serial4 = &uart5;
35 serial5 = &uart6;
Nishanth Menon065bd7f2014-10-21 11:18:15 -050036 serial6 = &uart7;
37 serial7 = &uart8;
38 serial8 = &uart9;
39 serial9 = &uart10;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +053040 ethernet0 = &cpsw_emac0;
41 ethernet1 = &cpsw_emac1;
Roger Quadros9ec49b92014-08-15 16:08:36 +030042 d_can0 = &dcan1;
43 d_can1 = &dcan2;
Mugunthan V N480b2b32015-11-19 12:31:01 +053044 spi0 = &qspi;
R Sricharan6e58b8f2013-08-14 19:08:20 +053045 };
46
R Sricharan6e58b8f2013-08-14 19:08:20 +053047 timer {
48 compatible = "arm,armv7-timer";
49 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
50 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
51 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
52 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000053 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053054 };
55
56 gic: interrupt-controller@48211000 {
57 compatible = "arm,cortex-a15-gic";
58 interrupt-controller;
59 #interrupt-cells = <3>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053060 reg = <0x0 0x48211000 0x0 0x1000>,
61 <0x0 0x48212000 0x0 0x1000>,
62 <0x0 0x48214000 0x0 0x2000>,
63 <0x0 0x48216000 0x0 0x2000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053064 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000065 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053066 };
67
Marc Zyngier7136d452015-03-11 15:43:49 +000068 wakeupgen: interrupt-controller@48281000 {
69 compatible = "ti,omap5-wugen-mpu", "ti,omap4-wugen-mpu";
70 interrupt-controller;
71 #interrupt-cells = <3>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053072 reg = <0x0 0x48281000 0x0 0x1000>;
Marc Zyngier7136d452015-03-11 15:43:49 +000073 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053074 };
75
Dave Gerlachb82ffb32016-05-18 18:36:32 -050076 cpus {
77 #address-cells = <1>;
78 #size-cells = <0>;
79
80 cpu0: cpu@0 {
81 device_type = "cpu";
82 compatible = "arm,cortex-a15";
83 reg = <0>;
84
85 operating-points = <
86 /* kHz uV */
87 1000000 1060000
88 1176000 1160000
89 >;
90
91 clocks = <&dpll_mpu_ck>;
92 clock-names = "cpu";
93
94 clock-latency = <300000>; /* From omap-cpufreq driver */
95
96 /* cooling options */
97 cooling-min-level = <0>;
98 cooling-max-level = <2>;
99 #cooling-cells = <2>; /* min followed by max */
100 };
101 };
102
R Sricharan6e58b8f2013-08-14 19:08:20 +0530103 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +0100104 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +0530105 * that are not memory mapped in the MPU view or for the MPU itself.
106 */
107 soc {
108 compatible = "ti,omap-infra";
109 mpu {
110 compatible = "ti,omap5-mpu";
111 ti,hwmods = "mpu";
112 };
113 };
114
115 /*
116 * XXX: Use a flat representation of the SOC interconnect.
117 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +0100118 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +0530119 * the moment, just use a fake OCP bus entry to represent the whole bus
120 * hierarchy.
121 */
122 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -0500123 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530124 #address-cells = <1>;
125 #size-cells = <1>;
Lokesh Vutladae320e2016-02-24 15:41:04 +0530126 ranges = <0x0 0x0 0x0 0xc0000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530127 ti,hwmods = "l3_main_1", "l3_main_2";
Lokesh Vutladae320e2016-02-24 15:41:04 +0530128 reg = <0x0 0x44000000 0x0 0x1000000>,
129 <0x0 0x45000000 0x0 0x1000>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000130 interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
Marc Zyngier7136d452015-03-11 15:43:49 +0000131 <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530132
Tero Kristod9195012015-02-12 11:37:13 +0200133 l4_cfg: l4@4a000000 {
134 compatible = "ti,dra7-l4-cfg", "simple-bus";
135 #address-cells = <1>;
136 #size-cells = <1>;
137 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300138
Tero Kristod9195012015-02-12 11:37:13 +0200139 scm: scm@2000 {
140 compatible = "ti,dra7-scm-core", "simple-bus";
141 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300142 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200143 #size-cells = <1>;
144 ranges = <0 0x2000 0x2000>;
145
146 scm_conf: scm_conf@0 {
Kishon Vijay Abraham Icd455672015-07-27 17:46:41 +0530147 compatible = "syscon", "simple-bus";
Tero Kristod9195012015-02-12 11:37:13 +0200148 reg = <0x0 0x1400>;
149 #address-cells = <1>;
150 #size-cells = <1>;
Kishon Vijay Abraham I9a5e3f22015-09-04 17:38:24 +0530151 ranges = <0 0x0 0x1400>;
Tero Kristod9195012015-02-12 11:37:13 +0200152
Javier Martinez Canillas308cfda2016-04-01 16:20:18 -0400153 pbias_regulator: pbias_regulator@e00 {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530154 compatible = "ti,pbias-dra7", "ti,pbias-omap";
Tero Kristod9195012015-02-12 11:37:13 +0200155 reg = <0xe00 0x4>;
156 syscon = <&scm_conf>;
157 pbias_mmc_reg: pbias_mmc_omap5 {
158 regulator-name = "pbias_mmc_omap5";
159 regulator-min-microvolt = <1800000>;
160 regulator-max-microvolt = <3000000>;
161 };
162 };
Tomi Valkeinen2d5a3c82015-02-23 12:53:56 +0200163
164 scm_conf_clocks: clocks {
165 #address-cells = <1>;
166 #size-cells = <0>;
167 };
Tero Kristod9195012015-02-12 11:37:13 +0200168 };
169
170 dra7_pmx_core: pinmux@1400 {
171 compatible = "ti,dra7-padconf",
172 "pinctrl-single";
Roger Quadros1c5cb6f2015-07-27 13:27:29 +0300173 reg = <0x1400 0x0468>;
Tero Kristod9195012015-02-12 11:37:13 +0200174 #address-cells = <1>;
175 #size-cells = <0>;
176 #interrupt-cells = <1>;
177 interrupt-controller;
178 pinctrl-single,register-width = <32>;
179 pinctrl-single,function-mask = <0x3fffffff>;
180 };
Roger Quadros33cb3a12015-08-04 12:10:14 +0300181
182 scm_conf1: scm_conf@1c04 {
183 compatible = "syscon";
184 reg = <0x1c04 0x0020>;
185 };
Kishon Vijay Abraham I43acf162015-12-21 14:43:18 +0530186
187 scm_conf_pcie: scm_conf@1c24 {
188 compatible = "syscon";
189 reg = <0x1c24 0x0024>;
190 };
Peter Ujfalusi3d2a58b2016-03-07 17:17:28 +0200191
192 sdma_xbar: dma-router@b78 {
193 compatible = "ti,dra7-dma-crossbar";
194 reg = <0xb78 0xfc>;
195 #dma-cells = <1>;
196 dma-requests = <205>;
197 ti,dma-safe-map = <0>;
198 dma-masters = <&sdma>;
199 };
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200200
201 edma_xbar: dma-router@c78 {
202 compatible = "ti,dra7-dma-crossbar";
203 reg = <0xc78 0x7c>;
204 #dma-cells = <2>;
205 dma-requests = <204>;
206 ti,dma-safe-map = <0>;
207 dma-masters = <&edma>;
208 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300209 };
210
Tero Kristod9195012015-02-12 11:37:13 +0200211 cm_core_aon: cm_core_aon@5000 {
212 compatible = "ti,dra7-cm-core-aon";
213 reg = <0x5000 0x2000>;
214
215 cm_core_aon_clocks: clocks {
216 #address-cells = <1>;
217 #size-cells = <0>;
218 };
219
220 cm_core_aon_clockdomains: clockdomains {
221 };
222 };
223
224 cm_core: cm_core@8000 {
225 compatible = "ti,dra7-cm-core";
226 reg = <0x8000 0x3000>;
227
228 cm_core_clocks: clocks {
229 #address-cells = <1>;
230 #size-cells = <0>;
231 };
232
233 cm_core_clockdomains: clockdomains {
234 };
235 };
236 };
237
238 l4_wkup: l4@4ae00000 {
239 compatible = "ti,dra7-l4-wkup", "simple-bus";
240 #address-cells = <1>;
241 #size-cells = <1>;
242 ranges = <0 0x4ae00000 0x3f000>;
243
244 counter32k: counter@4000 {
245 compatible = "ti,omap-counter32k";
246 reg = <0x4000 0x40>;
247 ti,hwmods = "counter_32k";
248 };
249
250 prm: prm@6000 {
251 compatible = "ti,dra7-prm";
252 reg = <0x6000 0x3000>;
253 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
254
255 prm_clocks: clocks {
256 #address-cells = <1>;
257 #size-cells = <0>;
258 };
259
260 prm_clockdomains: clockdomains {
261 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300262 };
Dave Gerlach62e4fee2016-05-18 18:36:31 -0500263
264 scm_wkup: scm_conf@c000 {
265 compatible = "syscon";
266 reg = <0xc000 0x1000>;
267 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300268 };
269
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530270 axi@0 {
271 compatible = "simple-bus";
272 #size-cells = <1>;
273 #address-cells = <1>;
274 ranges = <0x51000000 0x51000000 0x3000
275 0x0 0x20000000 0x10000000>;
Kishon Vijay Abraham I73c8f0c2015-07-28 19:09:10 +0530276 pcie1: pcie@51000000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530277 compatible = "ti,dra7-pcie";
278 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
279 reg-names = "rc_dbics", "ti_conf", "config";
280 interrupts = <0 232 0x4>, <0 233 0x4>;
281 #address-cells = <3>;
282 #size-cells = <2>;
283 device_type = "pci";
284 ranges = <0x81000000 0 0 0x03000 0 0x00010000
285 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
286 #interrupt-cells = <1>;
287 num-lanes = <1>;
288 ti,hwmods = "pcie1";
289 phys = <&pcie1_phy>;
290 phy-names = "pcie-phy0";
291 interrupt-map-mask = <0 0 0 7>;
292 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
293 <0 0 0 2 &pcie1_intc 2>,
294 <0 0 0 3 &pcie1_intc 3>,
295 <0 0 0 4 &pcie1_intc 4>;
296 pcie1_intc: interrupt-controller {
297 interrupt-controller;
298 #address-cells = <0>;
299 #interrupt-cells = <1>;
300 };
301 };
302 };
303
304 axi@1 {
305 compatible = "simple-bus";
306 #size-cells = <1>;
307 #address-cells = <1>;
308 ranges = <0x51800000 0x51800000 0x3000
309 0x0 0x30000000 0x10000000>;
310 status = "disabled";
311 pcie@51000000 {
312 compatible = "ti,dra7-pcie";
313 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
314 reg-names = "rc_dbics", "ti_conf", "config";
315 interrupts = <0 355 0x4>, <0 356 0x4>;
316 #address-cells = <3>;
317 #size-cells = <2>;
318 device_type = "pci";
319 ranges = <0x81000000 0 0 0x03000 0 0x00010000
320 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
321 #interrupt-cells = <1>;
322 num-lanes = <1>;
323 ti,hwmods = "pcie2";
324 phys = <&pcie2_phy>;
325 phy-names = "pcie-phy0";
326 interrupt-map-mask = <0 0 0 7>;
327 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
328 <0 0 0 2 &pcie2_intc 2>,
329 <0 0 0 3 &pcie2_intc 3>,
330 <0 0 0 4 &pcie2_intc 4>;
331 pcie2_intc: interrupt-controller {
332 interrupt-controller;
333 #address-cells = <0>;
334 #interrupt-cells = <1>;
335 };
336 };
337 };
338
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500339 ocmcram1: ocmcram@40300000 {
340 compatible = "mmio-sram";
341 reg = <0x40300000 0x80000>;
342 ranges = <0x0 0x40300000 0x80000>;
343 #address-cells = <1>;
344 #size-cells = <1>;
Dave Gerlachfae3a9f2016-05-10 14:49:42 -0500345 /*
346 * This is a placeholder for an optional reserved
347 * region for use by secure software. The size
348 * of this region is not known until runtime so it
349 * is set as zero to either be updated to reserve
350 * space or left unchanged to leave all SRAM for use.
351 * On HS parts that that require the reserved region
352 * either the bootloader can update the size to
353 * the required amount or the node can be overridden
354 * from the board dts file for the secure platform.
355 */
356 sram-hs@0 {
357 compatible = "ti,secure-ram";
358 reg = <0x0 0x0>;
359 };
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500360 };
361
362 /*
363 * NOTE: ocmcram2 and ocmcram3 are not available on all
364 * DRA7xx and AM57xx variants. Confirm availability in
365 * the data manual for the exact part number in use
366 * before enabling these nodes in the board dts file.
367 */
368 ocmcram2: ocmcram@40400000 {
369 status = "disabled";
370 compatible = "mmio-sram";
371 reg = <0x40400000 0x100000>;
372 ranges = <0x0 0x40400000 0x100000>;
373 #address-cells = <1>;
374 #size-cells = <1>;
375 };
376
377 ocmcram3: ocmcram@40500000 {
378 status = "disabled";
379 compatible = "mmio-sram";
380 reg = <0x40500000 0x100000>;
381 ranges = <0x0 0x40500000 0x100000>;
382 #address-cells = <1>;
383 #size-cells = <1>;
384 };
385
Keerthyf7397ed2015-03-23 14:39:38 -0500386 bandgap: bandgap@4a0021e0 {
387 reg = <0x4a0021e0 0xc
388 0x4a00232c 0xc
389 0x4a002380 0x2c
390 0x4a0023C0 0x3c
391 0x4a002564 0x8
392 0x4a002574 0x50>;
393 compatible = "ti,dra752-bandgap";
394 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
395 #thermal-sensor-cells = <1>;
396 };
397
Suman Anna99639ac2015-10-02 18:23:22 -0500398 dsp1_system: dsp_system@40d00000 {
399 compatible = "syscon";
400 reg = <0x40d00000 0x100>;
401 };
402
R Sricharan6e58b8f2013-08-14 19:08:20 +0530403 sdma: dma-controller@4a056000 {
404 compatible = "ti,omap4430-sdma";
405 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530406 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
407 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
408 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
409 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530410 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200411 dma-channels = <32>;
412 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530413 };
414
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200415 edma: edma@43300000 {
416 compatible = "ti,edma3-tpcc";
417 ti,hwmods = "tpcc";
418 reg = <0x43300000 0x100000>;
419 reg-names = "edma3_cc";
420 interrupts = <GIC_SPI 361 IRQ_TYPE_LEVEL_HIGH>,
421 <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>,
422 <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>;
423 interrupt-names = "edma3_ccint", "emda3_mperr",
424 "edma3_ccerrint";
425 dma-requests = <64>;
426 #dma-cells = <2>;
427
428 ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 0>;
429
430 /*
431 * memcpy is disabled, can be enabled with:
432 * ti,edma-memcpy-channels = <20 21>;
433 * for example. Note that these channels need to be
434 * masked in the xbar as well.
435 */
436 };
437
438 edma_tptc0: tptc@43400000 {
439 compatible = "ti,edma3-tptc";
440 ti,hwmods = "tptc0";
441 reg = <0x43400000 0x100000>;
442 interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
443 interrupt-names = "edma3_tcerrint";
444 };
445
446 edma_tptc1: tptc@43500000 {
447 compatible = "ti,edma3-tptc";
448 ti,hwmods = "tptc1";
449 reg = <0x43500000 0x100000>;
450 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
451 interrupt-names = "edma3_tcerrint";
452 };
453
R Sricharan6e58b8f2013-08-14 19:08:20 +0530454 gpio1: gpio@4ae10000 {
455 compatible = "ti,omap4-gpio";
456 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530457 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530458 ti,hwmods = "gpio1";
459 gpio-controller;
460 #gpio-cells = <2>;
461 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700462 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530463 };
464
465 gpio2: gpio@48055000 {
466 compatible = "ti,omap4-gpio";
467 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530468 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530469 ti,hwmods = "gpio2";
470 gpio-controller;
471 #gpio-cells = <2>;
472 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700473 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530474 };
475
476 gpio3: gpio@48057000 {
477 compatible = "ti,omap4-gpio";
478 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530479 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530480 ti,hwmods = "gpio3";
481 gpio-controller;
482 #gpio-cells = <2>;
483 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700484 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530485 };
486
487 gpio4: gpio@48059000 {
488 compatible = "ti,omap4-gpio";
489 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530490 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530491 ti,hwmods = "gpio4";
492 gpio-controller;
493 #gpio-cells = <2>;
494 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700495 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530496 };
497
498 gpio5: gpio@4805b000 {
499 compatible = "ti,omap4-gpio";
500 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530501 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530502 ti,hwmods = "gpio5";
503 gpio-controller;
504 #gpio-cells = <2>;
505 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700506 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530507 };
508
509 gpio6: gpio@4805d000 {
510 compatible = "ti,omap4-gpio";
511 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530512 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530513 ti,hwmods = "gpio6";
514 gpio-controller;
515 #gpio-cells = <2>;
516 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700517 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530518 };
519
520 gpio7: gpio@48051000 {
521 compatible = "ti,omap4-gpio";
522 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530523 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530524 ti,hwmods = "gpio7";
525 gpio-controller;
526 #gpio-cells = <2>;
527 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700528 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530529 };
530
531 gpio8: gpio@48053000 {
532 compatible = "ti,omap4-gpio";
533 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530534 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530535 ti,hwmods = "gpio8";
536 gpio-controller;
537 #gpio-cells = <2>;
538 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700539 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530540 };
541
542 uart1: serial@4806a000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530543 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530544 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000545 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530546 ti,hwmods = "uart1";
547 clock-frequency = <48000000>;
548 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300549 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200550 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530551 };
552
553 uart2: serial@4806c000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530554 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530555 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000556 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530557 ti,hwmods = "uart2";
558 clock-frequency = <48000000>;
559 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300560 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200561 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530562 };
563
564 uart3: serial@48020000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530565 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530566 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000567 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530568 ti,hwmods = "uart3";
569 clock-frequency = <48000000>;
570 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300571 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200572 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530573 };
574
575 uart4: serial@4806e000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530576 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530577 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000578 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530579 ti,hwmods = "uart4";
580 clock-frequency = <48000000>;
581 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300582 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200583 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530584 };
585
586 uart5: serial@48066000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530587 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530588 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000589 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530590 ti,hwmods = "uart5";
591 clock-frequency = <48000000>;
592 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300593 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200594 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530595 };
596
597 uart6: serial@48068000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530598 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530599 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000600 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530601 ti,hwmods = "uart6";
602 clock-frequency = <48000000>;
603 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300604 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200605 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530606 };
607
608 uart7: serial@48420000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530609 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530610 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000611 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530612 ti,hwmods = "uart7";
613 clock-frequency = <48000000>;
614 status = "disabled";
615 };
616
617 uart8: serial@48422000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530618 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530619 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000620 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530621 ti,hwmods = "uart8";
622 clock-frequency = <48000000>;
623 status = "disabled";
624 };
625
626 uart9: serial@48424000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530627 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530628 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000629 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530630 ti,hwmods = "uart9";
631 clock-frequency = <48000000>;
632 status = "disabled";
633 };
634
635 uart10: serial@4ae2b000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530636 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530637 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000638 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530639 ti,hwmods = "uart10";
640 clock-frequency = <48000000>;
641 status = "disabled";
642 };
643
Suman Anna38baefb2014-07-11 16:44:38 -0500644 mailbox1: mailbox@4a0f4000 {
645 compatible = "ti,omap4-mailbox";
646 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600647 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
648 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
649 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500650 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600651 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500652 ti,mbox-num-users = <3>;
653 ti,mbox-num-fifos = <8>;
654 status = "disabled";
655 };
656
657 mailbox2: mailbox@4883a000 {
658 compatible = "ti,omap4-mailbox";
659 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600660 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
661 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
662 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
663 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500664 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600665 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500666 ti,mbox-num-users = <4>;
667 ti,mbox-num-fifos = <12>;
668 status = "disabled";
669 };
670
671 mailbox3: mailbox@4883c000 {
672 compatible = "ti,omap4-mailbox";
673 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600674 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
675 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
676 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
677 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500678 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600679 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500680 ti,mbox-num-users = <4>;
681 ti,mbox-num-fifos = <12>;
682 status = "disabled";
683 };
684
685 mailbox4: mailbox@4883e000 {
686 compatible = "ti,omap4-mailbox";
687 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600688 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
689 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
690 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
691 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500692 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600693 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500694 ti,mbox-num-users = <4>;
695 ti,mbox-num-fifos = <12>;
696 status = "disabled";
697 };
698
699 mailbox5: mailbox@48840000 {
700 compatible = "ti,omap4-mailbox";
701 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600702 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
703 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
704 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
705 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500706 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600707 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500708 ti,mbox-num-users = <4>;
709 ti,mbox-num-fifos = <12>;
710 status = "disabled";
711 };
712
713 mailbox6: mailbox@48842000 {
714 compatible = "ti,omap4-mailbox";
715 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600716 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
717 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
718 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
719 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500720 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600721 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500722 ti,mbox-num-users = <4>;
723 ti,mbox-num-fifos = <12>;
724 status = "disabled";
725 };
726
727 mailbox7: mailbox@48844000 {
728 compatible = "ti,omap4-mailbox";
729 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600730 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
731 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
732 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
733 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500734 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600735 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500736 ti,mbox-num-users = <4>;
737 ti,mbox-num-fifos = <12>;
738 status = "disabled";
739 };
740
741 mailbox8: mailbox@48846000 {
742 compatible = "ti,omap4-mailbox";
743 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600744 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
745 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
746 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
747 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500748 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600749 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500750 ti,mbox-num-users = <4>;
751 ti,mbox-num-fifos = <12>;
752 status = "disabled";
753 };
754
755 mailbox9: mailbox@4885e000 {
756 compatible = "ti,omap4-mailbox";
757 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600758 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
759 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
760 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
761 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500762 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600763 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500764 ti,mbox-num-users = <4>;
765 ti,mbox-num-fifos = <12>;
766 status = "disabled";
767 };
768
769 mailbox10: mailbox@48860000 {
770 compatible = "ti,omap4-mailbox";
771 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600772 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
773 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
774 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
775 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500776 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600777 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500778 ti,mbox-num-users = <4>;
779 ti,mbox-num-fifos = <12>;
780 status = "disabled";
781 };
782
783 mailbox11: mailbox@48862000 {
784 compatible = "ti,omap4-mailbox";
785 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600786 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
787 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
788 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
789 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500790 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600791 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500792 ti,mbox-num-users = <4>;
793 ti,mbox-num-fifos = <12>;
794 status = "disabled";
795 };
796
797 mailbox12: mailbox@48864000 {
798 compatible = "ti,omap4-mailbox";
799 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600800 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
801 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
802 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
803 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500804 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600805 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500806 ti,mbox-num-users = <4>;
807 ti,mbox-num-fifos = <12>;
808 status = "disabled";
809 };
810
811 mailbox13: mailbox@48802000 {
812 compatible = "ti,omap4-mailbox";
813 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600814 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
815 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
816 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
817 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500818 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600819 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500820 ti,mbox-num-users = <4>;
821 ti,mbox-num-fifos = <12>;
822 status = "disabled";
823 };
824
R Sricharan6e58b8f2013-08-14 19:08:20 +0530825 timer1: timer@4ae18000 {
826 compatible = "ti,omap5430-timer";
827 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530828 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530829 ti,hwmods = "timer1";
830 ti,timer-alwon;
831 };
832
833 timer2: timer@48032000 {
834 compatible = "ti,omap5430-timer";
835 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530836 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530837 ti,hwmods = "timer2";
838 };
839
840 timer3: timer@48034000 {
841 compatible = "ti,omap5430-timer";
842 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530843 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530844 ti,hwmods = "timer3";
845 };
846
847 timer4: timer@48036000 {
848 compatible = "ti,omap5430-timer";
849 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530850 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530851 ti,hwmods = "timer4";
852 };
853
854 timer5: timer@48820000 {
855 compatible = "ti,omap5430-timer";
856 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530857 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530858 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530859 };
860
861 timer6: timer@48822000 {
862 compatible = "ti,omap5430-timer";
863 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530864 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530865 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530866 };
867
868 timer7: timer@48824000 {
869 compatible = "ti,omap5430-timer";
870 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530871 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530872 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530873 };
874
875 timer8: timer@48826000 {
876 compatible = "ti,omap5430-timer";
877 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530878 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530879 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530880 };
881
882 timer9: timer@4803e000 {
883 compatible = "ti,omap5430-timer";
884 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530885 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530886 ti,hwmods = "timer9";
887 };
888
889 timer10: timer@48086000 {
890 compatible = "ti,omap5430-timer";
891 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530892 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530893 ti,hwmods = "timer10";
894 };
895
896 timer11: timer@48088000 {
897 compatible = "ti,omap5430-timer";
898 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530899 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530900 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530901 };
902
Suman Annad79852a2016-04-05 16:44:10 -0500903 timer12: timer@4ae20000 {
904 compatible = "ti,omap5430-timer";
905 reg = <0x4ae20000 0x80>;
906 interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
907 ti,hwmods = "timer12";
908 ti,timer-alwon;
909 ti,timer-secure;
910 };
911
R Sricharan6e58b8f2013-08-14 19:08:20 +0530912 timer13: timer@48828000 {
913 compatible = "ti,omap5430-timer";
914 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530915 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530916 ti,hwmods = "timer13";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530917 };
918
919 timer14: timer@4882a000 {
920 compatible = "ti,omap5430-timer";
921 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530922 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530923 ti,hwmods = "timer14";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530924 };
925
926 timer15: timer@4882c000 {
927 compatible = "ti,omap5430-timer";
928 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530929 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530930 ti,hwmods = "timer15";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530931 };
932
933 timer16: timer@4882e000 {
934 compatible = "ti,omap5430-timer";
935 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530936 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530937 ti,hwmods = "timer16";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530938 };
939
940 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530941 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530942 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530943 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530944 ti,hwmods = "wd_timer2";
945 };
946
Suman Annadbd7c192014-01-13 18:26:46 -0600947 hwspinlock: spinlock@4a0f6000 {
948 compatible = "ti,omap4-hwspinlock";
949 reg = <0x4a0f6000 0x1000>;
950 ti,hwmods = "spinlock";
951 #hwlock-cells = <1>;
952 };
953
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530954 dmm@4e000000 {
955 compatible = "ti,omap5-dmm";
956 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530957 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530958 ti,hwmods = "dmm";
959 };
960
R Sricharan6e58b8f2013-08-14 19:08:20 +0530961 i2c1: i2c@48070000 {
962 compatible = "ti,omap4-i2c";
963 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530964 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530965 #address-cells = <1>;
966 #size-cells = <0>;
967 ti,hwmods = "i2c1";
968 status = "disabled";
969 };
970
971 i2c2: i2c@48072000 {
972 compatible = "ti,omap4-i2c";
973 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530974 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530975 #address-cells = <1>;
976 #size-cells = <0>;
977 ti,hwmods = "i2c2";
978 status = "disabled";
979 };
980
981 i2c3: i2c@48060000 {
982 compatible = "ti,omap4-i2c";
983 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530984 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530985 #address-cells = <1>;
986 #size-cells = <0>;
987 ti,hwmods = "i2c3";
988 status = "disabled";
989 };
990
991 i2c4: i2c@4807a000 {
992 compatible = "ti,omap4-i2c";
993 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530994 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530995 #address-cells = <1>;
996 #size-cells = <0>;
997 ti,hwmods = "i2c4";
998 status = "disabled";
999 };
1000
1001 i2c5: i2c@4807c000 {
1002 compatible = "ti,omap4-i2c";
1003 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301004 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301005 #address-cells = <1>;
1006 #size-cells = <0>;
1007 ti,hwmods = "i2c5";
1008 status = "disabled";
1009 };
1010
1011 mmc1: mmc@4809c000 {
1012 compatible = "ti,omap4-hsmmc";
1013 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301014 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301015 ti,hwmods = "mmc1";
1016 ti,dual-volt;
1017 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001018 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301019 dma-names = "tx", "rx";
1020 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +05301021 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301022 };
1023
1024 mmc2: mmc@480b4000 {
1025 compatible = "ti,omap4-hsmmc";
1026 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301027 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301028 ti,hwmods = "mmc2";
1029 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001030 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301031 dma-names = "tx", "rx";
1032 status = "disabled";
1033 };
1034
1035 mmc3: mmc@480ad000 {
1036 compatible = "ti,omap4-hsmmc";
1037 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301038 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301039 ti,hwmods = "mmc3";
1040 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001041 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301042 dma-names = "tx", "rx";
1043 status = "disabled";
1044 };
1045
1046 mmc4: mmc@480d1000 {
1047 compatible = "ti,omap4-hsmmc";
1048 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301049 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301050 ti,hwmods = "mmc4";
1051 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001052 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301053 dma-names = "tx", "rx";
1054 status = "disabled";
1055 };
1056
Suman Anna2c7e07c52015-10-02 18:23:24 -05001057 mmu0_dsp1: mmu@40d01000 {
1058 compatible = "ti,dra7-dsp-iommu";
1059 reg = <0x40d01000 0x100>;
1060 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
1061 ti,hwmods = "mmu0_dsp1";
1062 #iommu-cells = <0>;
1063 ti,syscon-mmuconfig = <&dsp1_system 0x0>;
1064 status = "disabled";
1065 };
1066
1067 mmu1_dsp1: mmu@40d02000 {
1068 compatible = "ti,dra7-dsp-iommu";
1069 reg = <0x40d02000 0x100>;
1070 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
1071 ti,hwmods = "mmu1_dsp1";
1072 #iommu-cells = <0>;
1073 ti,syscon-mmuconfig = <&dsp1_system 0x1>;
1074 status = "disabled";
1075 };
1076
1077 mmu_ipu1: mmu@58882000 {
1078 compatible = "ti,dra7-iommu";
1079 reg = <0x58882000 0x100>;
1080 interrupts = <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>;
1081 ti,hwmods = "mmu_ipu1";
1082 #iommu-cells = <0>;
1083 ti,iommu-bus-err-back;
1084 status = "disabled";
1085 };
1086
1087 mmu_ipu2: mmu@55082000 {
1088 compatible = "ti,dra7-iommu";
1089 reg = <0x55082000 0x100>;
1090 interrupts = <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>;
1091 ti,hwmods = "mmu_ipu2";
1092 #iommu-cells = <0>;
1093 ti,iommu-bus-err-back;
1094 status = "disabled";
1095 };
1096
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301097 abb_mpu: regulator-abb-mpu {
1098 compatible = "ti,abb-v3";
1099 regulator-name = "abb_mpu";
1100 #address-cells = <0>;
1101 #size-cells = <0>;
1102 clocks = <&sys_clkin1>;
1103 ti,settling-time = <50>;
1104 ti,clock-cycles = <16>;
1105
1106 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001107 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301108 <0x4ae0c158 0x4>;
1109 reg-names = "setup-address", "control-address",
1110 "int-address", "efuse-address",
1111 "ldo-address";
1112 ti,tranxdone-status-mask = <0x80>;
1113 /* LDOVBBMPU_FBB_MUX_CTRL */
1114 ti,ldovbb-override-mask = <0x400>;
1115 /* LDOVBBMPU_FBB_VSET_OUT */
1116 ti,ldovbb-vset-mask = <0x1F>;
1117
1118 /*
1119 * NOTE: only FBB mode used but actual vset will
1120 * determine final biasing
1121 */
1122 ti,abb_info = <
1123 /*uV ABB efuse rbb_m fbb_m vset_m*/
1124 1060000 0 0x0 0 0x02000000 0x01F00000
1125 1160000 0 0x4 0 0x02000000 0x01F00000
1126 1210000 0 0x8 0 0x02000000 0x01F00000
1127 >;
1128 };
1129
1130 abb_ivahd: regulator-abb-ivahd {
1131 compatible = "ti,abb-v3";
1132 regulator-name = "abb_ivahd";
1133 #address-cells = <0>;
1134 #size-cells = <0>;
1135 clocks = <&sys_clkin1>;
1136 ti,settling-time = <50>;
1137 ti,clock-cycles = <16>;
1138
1139 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001140 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301141 <0x4a002470 0x4>;
1142 reg-names = "setup-address", "control-address",
1143 "int-address", "efuse-address",
1144 "ldo-address";
1145 ti,tranxdone-status-mask = <0x40000000>;
1146 /* LDOVBBIVA_FBB_MUX_CTRL */
1147 ti,ldovbb-override-mask = <0x400>;
1148 /* LDOVBBIVA_FBB_VSET_OUT */
1149 ti,ldovbb-vset-mask = <0x1F>;
1150
1151 /*
1152 * NOTE: only FBB mode used but actual vset will
1153 * determine final biasing
1154 */
1155 ti,abb_info = <
1156 /*uV ABB efuse rbb_m fbb_m vset_m*/
1157 1055000 0 0x0 0 0x02000000 0x01F00000
1158 1150000 0 0x4 0 0x02000000 0x01F00000
1159 1250000 0 0x8 0 0x02000000 0x01F00000
1160 >;
1161 };
1162
1163 abb_dspeve: regulator-abb-dspeve {
1164 compatible = "ti,abb-v3";
1165 regulator-name = "abb_dspeve";
1166 #address-cells = <0>;
1167 #size-cells = <0>;
1168 clocks = <&sys_clkin1>;
1169 ti,settling-time = <50>;
1170 ti,clock-cycles = <16>;
1171
1172 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001173 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301174 <0x4a00246c 0x4>;
1175 reg-names = "setup-address", "control-address",
1176 "int-address", "efuse-address",
1177 "ldo-address";
1178 ti,tranxdone-status-mask = <0x20000000>;
1179 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
1180 ti,ldovbb-override-mask = <0x400>;
1181 /* LDOVBBDSPEVE_FBB_VSET_OUT */
1182 ti,ldovbb-vset-mask = <0x1F>;
1183
1184 /*
1185 * NOTE: only FBB mode used but actual vset will
1186 * determine final biasing
1187 */
1188 ti,abb_info = <
1189 /*uV ABB efuse rbb_m fbb_m vset_m*/
1190 1055000 0 0x0 0 0x02000000 0x01F00000
1191 1150000 0 0x4 0 0x02000000 0x01F00000
1192 1250000 0 0x8 0 0x02000000 0x01F00000
1193 >;
1194 };
1195
1196 abb_gpu: regulator-abb-gpu {
1197 compatible = "ti,abb-v3";
1198 regulator-name = "abb_gpu";
1199 #address-cells = <0>;
1200 #size-cells = <0>;
1201 clocks = <&sys_clkin1>;
1202 ti,settling-time = <50>;
1203 ti,clock-cycles = <16>;
1204
1205 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001206 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301207 <0x4ae0c154 0x4>;
1208 reg-names = "setup-address", "control-address",
1209 "int-address", "efuse-address",
1210 "ldo-address";
1211 ti,tranxdone-status-mask = <0x10000000>;
1212 /* LDOVBBGPU_FBB_MUX_CTRL */
1213 ti,ldovbb-override-mask = <0x400>;
1214 /* LDOVBBGPU_FBB_VSET_OUT */
1215 ti,ldovbb-vset-mask = <0x1F>;
1216
1217 /*
1218 * NOTE: only FBB mode used but actual vset will
1219 * determine final biasing
1220 */
1221 ti,abb_info = <
1222 /*uV ABB efuse rbb_m fbb_m vset_m*/
1223 1090000 0 0x0 0 0x02000000 0x01F00000
1224 1210000 0 0x4 0 0x02000000 0x01F00000
1225 1280000 0 0x8 0 0x02000000 0x01F00000
1226 >;
1227 };
1228
R Sricharan6e58b8f2013-08-14 19:08:20 +05301229 mcspi1: spi@48098000 {
1230 compatible = "ti,omap4-mcspi";
1231 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301232 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301233 #address-cells = <1>;
1234 #size-cells = <0>;
1235 ti,hwmods = "mcspi1";
1236 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001237 dmas = <&sdma_xbar 35>,
1238 <&sdma_xbar 36>,
1239 <&sdma_xbar 37>,
1240 <&sdma_xbar 38>,
1241 <&sdma_xbar 39>,
1242 <&sdma_xbar 40>,
1243 <&sdma_xbar 41>,
1244 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301245 dma-names = "tx0", "rx0", "tx1", "rx1",
1246 "tx2", "rx2", "tx3", "rx3";
1247 status = "disabled";
1248 };
1249
1250 mcspi2: spi@4809a000 {
1251 compatible = "ti,omap4-mcspi";
1252 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301253 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301254 #address-cells = <1>;
1255 #size-cells = <0>;
1256 ti,hwmods = "mcspi2";
1257 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001258 dmas = <&sdma_xbar 43>,
1259 <&sdma_xbar 44>,
1260 <&sdma_xbar 45>,
1261 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301262 dma-names = "tx0", "rx0", "tx1", "rx1";
1263 status = "disabled";
1264 };
1265
1266 mcspi3: spi@480b8000 {
1267 compatible = "ti,omap4-mcspi";
1268 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301269 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301270 #address-cells = <1>;
1271 #size-cells = <0>;
1272 ti,hwmods = "mcspi3";
1273 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001274 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301275 dma-names = "tx0", "rx0";
1276 status = "disabled";
1277 };
1278
1279 mcspi4: spi@480ba000 {
1280 compatible = "ti,omap4-mcspi";
1281 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301282 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301283 #address-cells = <1>;
1284 #size-cells = <0>;
1285 ti,hwmods = "mcspi4";
1286 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001287 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301288 dma-names = "tx0", "rx0";
1289 status = "disabled";
1290 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301291
1292 qspi: qspi@4b300000 {
1293 compatible = "ti,dra7xxx-qspi";
Vignesh R1929d0b2015-12-11 09:39:59 +05301294 reg = <0x4b300000 0x100>,
1295 <0x5c000000 0x4000000>;
1296 reg-names = "qspi_base", "qspi_mmap";
1297 syscon-chipselects = <&scm_conf 0x558>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301298 #address-cells = <1>;
1299 #size-cells = <0>;
1300 ti,hwmods = "qspi";
1301 clocks = <&qspi_gfclk_div>;
1302 clock-names = "fck";
1303 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301304 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301305 status = "disabled";
1306 };
Balaji T K7be80562014-05-07 14:58:58 +03001307
Balaji T K7be80562014-05-07 14:58:58 +03001308 /* OCP2SCP3 */
1309 ocp2scp@4a090000 {
1310 compatible = "ti,omap-ocp2scp";
1311 #address-cells = <1>;
1312 #size-cells = <1>;
1313 ranges;
1314 reg = <0x4a090000 0x20>;
1315 ti,hwmods = "ocp2scp3";
1316 sata_phy: phy@4A096000 {
1317 compatible = "ti,phy-pipe3-sata";
1318 reg = <0x4A096000 0x80>, /* phy_rx */
1319 <0x4A096400 0x64>, /* phy_tx */
1320 <0x4A096800 0x40>; /* pll_ctrl */
1321 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301322 syscon-phy-power = <&scm_conf 0x374>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001323 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1324 clock-names = "sysclk", "refclk";
Roger Quadros257d5d92015-07-17 16:47:23 +03001325 syscon-pllreset = <&scm_conf 0x3fc>;
Balaji T K7be80562014-05-07 14:58:58 +03001326 #phy-cells = <0>;
1327 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301328
1329 pcie1_phy: pciephy@4a094000 {
1330 compatible = "ti,phy-pipe3-pcie";
1331 reg = <0x4a094000 0x80>, /* phy_rx */
1332 <0x4a094400 0x64>; /* phy_tx */
1333 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301334 syscon-phy-power = <&scm_conf_pcie 0x1c>;
1335 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301336 clocks = <&dpll_pcie_ref_ck>,
1337 <&dpll_pcie_ref_m2ldo_ck>,
1338 <&optfclk_pciephy1_32khz>,
1339 <&optfclk_pciephy1_clk>,
1340 <&optfclk_pciephy1_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301341 <&optfclk_pciephy_div>,
1342 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301343 clock-names = "dpll_ref", "dpll_ref_m2",
1344 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301345 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301346 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301347 };
1348
1349 pcie2_phy: pciephy@4a095000 {
1350 compatible = "ti,phy-pipe3-pcie";
1351 reg = <0x4a095000 0x80>, /* phy_rx */
1352 <0x4a095400 0x64>; /* phy_tx */
1353 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301354 syscon-phy-power = <&scm_conf_pcie 0x20>;
1355 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301356 clocks = <&dpll_pcie_ref_ck>,
1357 <&dpll_pcie_ref_m2ldo_ck>,
1358 <&optfclk_pciephy2_32khz>,
1359 <&optfclk_pciephy2_clk>,
1360 <&optfclk_pciephy2_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301361 <&optfclk_pciephy_div>,
1362 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301363 clock-names = "dpll_ref", "dpll_ref_m2",
1364 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301365 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301366 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301367 status = "disabled";
1368 };
Balaji T K7be80562014-05-07 14:58:58 +03001369 };
1370
1371 sata: sata@4a141100 {
1372 compatible = "snps,dwc-ahci";
1373 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301374 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001375 phys = <&sata_phy>;
1376 phy-names = "sata-phy";
1377 clocks = <&sata_ref_clk>;
1378 ti,hwmods = "sata";
1379 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001380
Nishanth Menon00edd312015-04-08 18:56:27 -05001381 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301382 compatible = "ti,am3352-rtc";
1383 reg = <0x48838000 0x100>;
1384 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1385 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1386 ti,hwmods = "rtcss";
1387 clocks = <&sys_32k_ck>;
1388 };
1389
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001390 /* OCP2SCP1 */
1391 ocp2scp@4a080000 {
1392 compatible = "ti,omap-ocp2scp";
1393 #address-cells = <1>;
1394 #size-cells = <1>;
1395 ranges;
1396 reg = <0x4a080000 0x20>;
1397 ti,hwmods = "ocp2scp1";
1398
1399 usb2_phy1: phy@4a084000 {
1400 compatible = "ti,omap-usb2";
1401 reg = <0x4a084000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301402 syscon-phy-power = <&scm_conf 0x300>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001403 clocks = <&usb_phy1_always_on_clk32k>,
1404 <&usb_otg_ss1_refclk960m>;
1405 clock-names = "wkupclk",
1406 "refclk";
1407 #phy-cells = <0>;
1408 };
1409
1410 usb2_phy2: phy@4a085000 {
Kishon Vijay Abraham I4b4f52e2015-12-21 14:43:20 +05301411 compatible = "ti,dra7x-usb2-phy2",
1412 "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001413 reg = <0x4a085000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301414 syscon-phy-power = <&scm_conf 0xe74>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001415 clocks = <&usb_phy2_always_on_clk32k>,
1416 <&usb_otg_ss2_refclk960m>;
1417 clock-names = "wkupclk",
1418 "refclk";
1419 #phy-cells = <0>;
1420 };
1421
1422 usb3_phy1: phy@4a084400 {
1423 compatible = "ti,omap-usb3";
1424 reg = <0x4a084400 0x80>,
1425 <0x4a084800 0x64>,
1426 <0x4a084c00 0x40>;
1427 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301428 syscon-phy-power = <&scm_conf 0x370>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001429 clocks = <&usb_phy3_always_on_clk32k>,
1430 <&sys_clkin1>,
1431 <&usb_otg_ss1_refclk960m>;
1432 clock-names = "wkupclk",
1433 "sysclk",
1434 "refclk";
1435 #phy-cells = <0>;
1436 };
1437 };
1438
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001439 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001440 compatible = "ti,dwc3";
1441 ti,hwmods = "usb_otg_ss1";
1442 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301443 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001444 #address-cells = <1>;
1445 #size-cells = <1>;
1446 utmi-mode = <2>;
1447 ranges;
1448 usb1: usb@48890000 {
1449 compatible = "snps,dwc3";
1450 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001451 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1452 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1453 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1454 interrupt-names = "peripheral",
1455 "host",
1456 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001457 phys = <&usb2_phy1>, <&usb3_phy1>;
1458 phy-names = "usb2-phy", "usb3-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001459 maximum-speed = "super-speed";
1460 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001461 snps,dis_u3_susphy_quirk;
1462 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001463 };
1464 };
1465
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001466 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001467 compatible = "ti,dwc3";
1468 ti,hwmods = "usb_otg_ss2";
1469 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301470 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001471 #address-cells = <1>;
1472 #size-cells = <1>;
1473 utmi-mode = <2>;
1474 ranges;
1475 usb2: usb@488d0000 {
1476 compatible = "snps,dwc3";
1477 reg = <0x488d0000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001478 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1479 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1480 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1481 interrupt-names = "peripheral",
1482 "host",
1483 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001484 phys = <&usb2_phy2>;
1485 phy-names = "usb2-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001486 maximum-speed = "high-speed";
1487 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001488 snps,dis_u3_susphy_quirk;
1489 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001490 };
1491 };
1492
1493 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001494 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001495 compatible = "ti,dwc3";
1496 ti,hwmods = "usb_otg_ss3";
1497 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301498 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001499 #address-cells = <1>;
1500 #size-cells = <1>;
1501 utmi-mode = <2>;
1502 ranges;
1503 status = "disabled";
1504 usb3: usb@48910000 {
1505 compatible = "snps,dwc3";
1506 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001507 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1508 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1509 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1510 interrupt-names = "peripheral",
1511 "host",
1512 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001513 maximum-speed = "high-speed";
1514 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001515 snps,dis_u3_susphy_quirk;
1516 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001517 };
1518 };
1519
Minal Shahff66a3c2014-05-19 14:45:47 +05301520 elm: elm@48078000 {
1521 compatible = "ti,am3352-elm";
1522 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301523 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301524 ti,hwmods = "elm";
1525 status = "disabled";
1526 };
1527
1528 gpmc: gpmc@50000000 {
1529 compatible = "ti,am3352-gpmc";
1530 ti,hwmods = "gpmc";
1531 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301532 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301533 gpmc,num-cs = <8>;
1534 gpmc,num-waitpins = <2>;
1535 #address-cells = <2>;
1536 #size-cells = <1>;
Roger Quadros488f2702016-02-23 18:37:17 +02001537 interrupt-controller;
1538 #interrupt-cells = <2>;
Roger Quadros845b1a22016-04-07 13:25:31 +03001539 gpio-controller;
1540 #gpio-cells = <2>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301541 status = "disabled";
1542 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001543
1544 atl: atl@4843c000 {
1545 compatible = "ti,dra7-atl";
1546 reg = <0x4843c000 0x3ff>;
1547 ti,hwmods = "atl";
1548 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1549 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1550 clocks = <&atl_gfclk_mux>;
1551 clock-names = "fck";
1552 status = "disabled";
1553 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001554
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001555 mcasp1: mcasp@48460000 {
1556 compatible = "ti,dra7-mcasp-audio";
1557 ti,hwmods = "mcasp1";
1558 reg = <0x48460000 0x2000>,
1559 <0x45800000 0x1000>;
1560 reg-names = "mpu","dat";
1561 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
1562 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
1563 interrupt-names = "tx", "rx";
1564 dmas = <&edma_xbar 129 1>, <&edma_xbar 128 1>;
1565 dma-names = "tx", "rx";
1566 clocks = <&mcasp1_aux_gfclk_mux>, <&mcasp1_ahclkx_mux>,
1567 <&mcasp1_ahclkr_mux>;
1568 clock-names = "fck", "ahclkx", "ahclkr";
1569 status = "disabled";
1570 };
1571
1572 mcasp2: mcasp@48464000 {
1573 compatible = "ti,dra7-mcasp-audio";
1574 ti,hwmods = "mcasp2";
1575 reg = <0x48464000 0x2000>,
1576 <0x45c00000 0x1000>;
1577 reg-names = "mpu","dat";
1578 interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
1579 <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
1580 interrupt-names = "tx", "rx";
1581 dmas = <&edma_xbar 131 1>, <&edma_xbar 130 1>;
1582 dma-names = "tx", "rx";
1583 clocks = <&mcasp2_aux_gfclk_mux>, <&mcasp2_ahclkx_mux>,
1584 <&mcasp2_ahclkr_mux>;
1585 clock-names = "fck", "ahclkx", "ahclkr";
1586 status = "disabled";
1587 };
1588
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001589 mcasp3: mcasp@48468000 {
1590 compatible = "ti,dra7-mcasp-audio";
1591 ti,hwmods = "mcasp3";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001592 reg = <0x48468000 0x2000>,
1593 <0x46000000 0x1000>;
1594 reg-names = "mpu","dat";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001595 interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>,
1596 <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
1597 interrupt-names = "tx", "rx";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001598 dmas = <&edma_xbar 133 1>, <&edma_xbar 132 1>;
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001599 dma-names = "tx", "rx";
Peter Ujfalusibf05c2c2015-11-12 09:32:57 +02001600 clocks = <&mcasp3_aux_gfclk_mux>, <&mcasp3_ahclkx_mux>;
1601 clock-names = "fck", "ahclkx";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001602 status = "disabled";
1603 };
1604
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001605 mcasp4: mcasp@4846c000 {
1606 compatible = "ti,dra7-mcasp-audio";
1607 ti,hwmods = "mcasp4";
1608 reg = <0x4846c000 0x2000>,
1609 <0x48436000 0x1000>;
1610 reg-names = "mpu","dat";
1611 interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
1612 <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
1613 interrupt-names = "tx", "rx";
1614 dmas = <&edma_xbar 135 1>, <&edma_xbar 134 1>;
1615 dma-names = "tx", "rx";
1616 clocks = <&mcasp4_aux_gfclk_mux>, <&mcasp4_ahclkx_mux>;
1617 clock-names = "fck", "ahclkx";
1618 status = "disabled";
1619 };
1620
1621 mcasp5: mcasp@48470000 {
1622 compatible = "ti,dra7-mcasp-audio";
1623 ti,hwmods = "mcasp5";
1624 reg = <0x48470000 0x2000>,
1625 <0x4843a000 0x1000>;
1626 reg-names = "mpu","dat";
1627 interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>,
1628 <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
1629 interrupt-names = "tx", "rx";
1630 dmas = <&edma_xbar 137 1>, <&edma_xbar 136 1>;
1631 dma-names = "tx", "rx";
1632 clocks = <&mcasp5_aux_gfclk_mux>, <&mcasp5_ahclkx_mux>;
1633 clock-names = "fck", "ahclkx";
1634 status = "disabled";
1635 };
1636
1637 mcasp6: mcasp@48474000 {
1638 compatible = "ti,dra7-mcasp-audio";
1639 ti,hwmods = "mcasp6";
1640 reg = <0x48474000 0x2000>,
1641 <0x4844c000 0x1000>;
1642 reg-names = "mpu","dat";
1643 interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
1644 <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
1645 interrupt-names = "tx", "rx";
1646 dmas = <&edma_xbar 139 1>, <&edma_xbar 138 1>;
1647 dma-names = "tx", "rx";
1648 clocks = <&mcasp6_aux_gfclk_mux>, <&mcasp6_ahclkx_mux>;
1649 clock-names = "fck", "ahclkx";
1650 status = "disabled";
1651 };
1652
1653 mcasp7: mcasp@48478000 {
1654 compatible = "ti,dra7-mcasp-audio";
1655 ti,hwmods = "mcasp7";
1656 reg = <0x48478000 0x2000>,
1657 <0x48450000 0x1000>;
1658 reg-names = "mpu","dat";
1659 interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
1660 <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
1661 interrupt-names = "tx", "rx";
1662 dmas = <&edma_xbar 141 1>, <&edma_xbar 140 1>;
1663 dma-names = "tx", "rx";
1664 clocks = <&mcasp7_aux_gfclk_mux>, <&mcasp7_ahclkx_mux>;
1665 clock-names = "fck", "ahclkx";
1666 status = "disabled";
1667 };
1668
1669 mcasp8: mcasp@4847c000 {
1670 compatible = "ti,dra7-mcasp-audio";
1671 ti,hwmods = "mcasp8";
1672 reg = <0x4847c000 0x2000>,
1673 <0x48454000 0x1000>;
1674 reg-names = "mpu","dat";
1675 interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
1676 <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
1677 interrupt-names = "tx", "rx";
1678 dmas = <&edma_xbar 143 1>, <&edma_xbar 142 1>;
1679 dma-names = "tx", "rx";
1680 clocks = <&mcasp8_aux_gfclk_mux>, <&mcasp8_ahclkx_mux>;
1681 clock-names = "fck", "ahclkx";
1682 status = "disabled";
1683 };
1684
Marc Zyngier783d3182015-03-11 15:43:44 +00001685 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301686 compatible = "ti,irq-crossbar";
1687 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001688 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001689 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001690 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301691 ti,max-irqs = <160>;
1692 ti,max-crossbar-sources = <MAX_SOURCES>;
1693 ti,reg-size = <2>;
1694 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1695 ti,irqs-skip = <10 133 139 140>;
1696 ti,irqs-safe-map = <0>;
1697 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301698
Vishal Mahaveerc263a5b2015-08-25 13:57:49 -05001699 mac: ethernet@48484000 {
Mugunthan V Ne2095312015-08-12 15:22:54 +05301700 compatible = "ti,dra7-cpsw","ti,cpsw";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301701 ti,hwmods = "gmac";
1702 clocks = <&dpll_gmac_ck>, <&gmac_gmii_ref_clk_div>;
1703 clock-names = "fck", "cpts";
1704 cpdma_channels = <8>;
1705 ale_entries = <1024>;
1706 bd_ram_size = <0x2000>;
1707 no_bd_ram = <0>;
1708 rx_descs = <64>;
1709 mac_control = <0x20>;
1710 slaves = <2>;
1711 active_slave = <0>;
1712 cpts_clock_mult = <0x80000000>;
1713 cpts_clock_shift = <29>;
1714 reg = <0x48484000 0x1000
1715 0x48485200 0x2E00>;
1716 #address-cells = <1>;
1717 #size-cells = <1>;
Mugunthan V N0f514e62016-03-07 01:41:22 -07001718
1719 /*
1720 * Do not allow gating of cpsw clock as workaround
1721 * for errata i877. Keeping internal clock disabled
1722 * causes the device switching characteristics
1723 * to degrade over time and eventually fail to meet
1724 * the data manual delay time/skew specs.
1725 */
1726 ti,no-idle;
1727
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301728 /*
1729 * rx_thresh_pend
1730 * rx_pend
1731 * tx_pend
1732 * misc_pend
1733 */
1734 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1735 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1736 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1737 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1738 ranges;
Mugunthan V Na084e132015-09-21 15:56:52 +05301739 syscon = <&scm_conf>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301740 status = "disabled";
1741
1742 davinci_mdio: mdio@48485000 {
1743 compatible = "ti,davinci_mdio";
1744 #address-cells = <1>;
1745 #size-cells = <0>;
1746 ti,hwmods = "davinci_mdio";
1747 bus_freq = <1000000>;
1748 reg = <0x48485000 0x100>;
1749 };
1750
1751 cpsw_emac0: slave@48480200 {
1752 /* Filled in by U-Boot */
1753 mac-address = [ 00 00 00 00 00 00 ];
1754 };
1755
1756 cpsw_emac1: slave@48480300 {
1757 /* Filled in by U-Boot */
1758 mac-address = [ 00 00 00 00 00 00 ];
1759 };
1760
1761 phy_sel: cpsw-phy-sel@4a002554 {
1762 compatible = "ti,dra7xx-cpsw-phy-sel";
1763 reg= <0x4a002554 0x4>;
1764 reg-names = "gmii-sel";
1765 };
1766 };
1767
Roger Quadros9ec49b92014-08-15 16:08:36 +03001768 dcan1: can@481cc000 {
1769 compatible = "ti,dra7-d_can";
1770 ti,hwmods = "dcan1";
1771 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001772 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001773 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1774 clocks = <&dcan1_sys_clk_mux>;
1775 status = "disabled";
1776 };
1777
1778 dcan2: can@481d0000 {
1779 compatible = "ti,dra7-d_can";
1780 ti,hwmods = "dcan2";
1781 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001782 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001783 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1784 clocks = <&sys_clkin1>;
1785 status = "disabled";
1786 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301787
1788 dss: dss@58000000 {
1789 compatible = "ti,dra7-dss";
1790 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1791 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1792 status = "disabled";
1793 ti,hwmods = "dss_core";
1794 /* CTRL_CORE_DSS_PLL_CONTROL */
1795 syscon-pll-ctrl = <&scm_conf 0x538>;
1796 #address-cells = <1>;
1797 #size-cells = <1>;
1798 ranges;
1799
1800 dispc@58001000 {
1801 compatible = "ti,dra7-dispc";
1802 reg = <0x58001000 0x1000>;
1803 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1804 ti,hwmods = "dss_dispc";
1805 clocks = <&dss_dss_clk>;
1806 clock-names = "fck";
1807 /* CTRL_CORE_SMA_SW_1 */
1808 syscon-pol = <&scm_conf 0x534>;
1809 };
1810
1811 hdmi: encoder@58060000 {
1812 compatible = "ti,dra7-hdmi";
1813 reg = <0x58040000 0x200>,
1814 <0x58040200 0x80>,
1815 <0x58040300 0x80>,
1816 <0x58060000 0x19000>;
1817 reg-names = "wp", "pll", "phy", "core";
1818 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1819 status = "disabled";
1820 ti,hwmods = "dss_hdmi";
1821 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1822 clock-names = "fck", "sys_clk";
1823 };
1824 };
Vignesh R34370142016-05-03 10:56:55 -05001825
1826 epwmss0: epwmss@4843e000 {
1827 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1828 reg = <0x4843e000 0x30>;
1829 ti,hwmods = "epwmss0";
1830 #address-cells = <1>;
1831 #size-cells = <1>;
1832 status = "disabled";
1833 ranges;
1834
1835 ehrpwm0: pwm@4843e200 {
1836 compatible = "ti,dra746-ehrpwm",
1837 "ti,am3352-ehrpwm";
1838 #pwm-cells = <3>;
1839 reg = <0x4843e200 0x80>;
1840 clocks = <&ehrpwm0_tbclk>, <&l4_root_clk_div>;
1841 clock-names = "tbclk", "fck";
1842 status = "disabled";
1843 };
1844
1845 ecap0: ecap@4843e100 {
1846 compatible = "ti,dra746-ecap",
1847 "ti,am3352-ecap";
1848 #pwm-cells = <3>;
1849 reg = <0x4843e100 0x80>;
1850 clocks = <&l4_root_clk_div>;
1851 clock-names = "fck";
1852 status = "disabled";
1853 };
1854 };
1855
1856 epwmss1: epwmss@48440000 {
1857 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1858 reg = <0x48440000 0x30>;
1859 ti,hwmods = "epwmss1";
1860 #address-cells = <1>;
1861 #size-cells = <1>;
1862 status = "disabled";
1863 ranges;
1864
1865 ehrpwm1: pwm@48440200 {
1866 compatible = "ti,dra746-ehrpwm",
1867 "ti,am3352-ehrpwm";
1868 #pwm-cells = <3>;
1869 reg = <0x48440200 0x80>;
1870 clocks = <&ehrpwm1_tbclk>, <&l4_root_clk_div>;
1871 clock-names = "tbclk", "fck";
1872 status = "disabled";
1873 };
1874
1875 ecap1: ecap@48440100 {
1876 compatible = "ti,dra746-ecap",
1877 "ti,am3352-ecap";
1878 #pwm-cells = <3>;
1879 reg = <0x48440100 0x80>;
1880 clocks = <&l4_root_clk_div>;
1881 clock-names = "fck";
1882 status = "disabled";
1883 };
1884 };
1885
1886 epwmss2: epwmss@48442000 {
1887 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1888 reg = <0x48442000 0x30>;
1889 ti,hwmods = "epwmss2";
1890 #address-cells = <1>;
1891 #size-cells = <1>;
1892 status = "disabled";
1893 ranges;
1894
1895 ehrpwm2: pwm@48442200 {
1896 compatible = "ti,dra746-ehrpwm",
1897 "ti,am3352-ehrpwm";
1898 #pwm-cells = <3>;
1899 reg = <0x48442200 0x80>;
1900 clocks = <&ehrpwm2_tbclk>, <&l4_root_clk_div>;
1901 clock-names = "tbclk", "fck";
1902 status = "disabled";
1903 };
1904
1905 ecap2: ecap@48442100 {
1906 compatible = "ti,dra746-ecap",
1907 "ti,am3352-ecap";
1908 #pwm-cells = <3>;
1909 reg = <0x48442100 0x80>;
1910 clocks = <&l4_root_clk_div>;
1911 clock-names = "fck";
1912 status = "disabled";
1913 };
1914 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301915 };
Keerthyf7397ed2015-03-23 14:39:38 -05001916
1917 thermal_zones: thermal-zones {
1918 #include "omap4-cpu-thermal.dtsi"
1919 #include "omap5-gpu-thermal.dtsi"
1920 #include "omap5-core-thermal.dtsi"
Keerthy667f2592016-02-08 14:46:30 +05301921 #include "dra7-dspeve-thermal.dtsi"
1922 #include "dra7-iva-thermal.dtsi"
Keerthyf7397ed2015-03-23 14:39:38 -05001923 };
1924
1925};
1926
1927&cpu_thermal {
1928 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301929};
Tero Kristoee6c7502013-07-18 17:18:33 +03001930
1931/include/ "dra7xx-clocks.dtsi"