blob: 064d84f87e45f76828dc571a6c4119fbe4cd6cd1 [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>;
285 #interrupt-cells = <1>;
286 num-lanes = <1>;
Kishon Vijay Abraham Ibed596d2016-08-10 18:03:18 +0530287 linux,pci-domain = <0>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530288 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";
Kishon Vijay Abraham I605b3d32016-06-09 20:43:55 +0530311 pcie@51800000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530312 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>;
Kishon Vijay Abraham Ibed596d2016-08-10 18:03:18 +0530323 linux,pci-domain = <1>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530324 ti,hwmods = "pcie2";
325 phys = <&pcie2_phy>;
326 phy-names = "pcie-phy0";
327 interrupt-map-mask = <0 0 0 7>;
328 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
329 <0 0 0 2 &pcie2_intc 2>,
330 <0 0 0 3 &pcie2_intc 3>,
331 <0 0 0 4 &pcie2_intc 4>;
332 pcie2_intc: interrupt-controller {
333 interrupt-controller;
334 #address-cells = <0>;
335 #interrupt-cells = <1>;
336 };
337 };
338 };
339
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500340 ocmcram1: ocmcram@40300000 {
341 compatible = "mmio-sram";
342 reg = <0x40300000 0x80000>;
343 ranges = <0x0 0x40300000 0x80000>;
344 #address-cells = <1>;
345 #size-cells = <1>;
Dave Gerlachfae3a9f2016-05-10 14:49:42 -0500346 /*
347 * This is a placeholder for an optional reserved
348 * region for use by secure software. The size
349 * of this region is not known until runtime so it
350 * is set as zero to either be updated to reserve
351 * space or left unchanged to leave all SRAM for use.
352 * On HS parts that that require the reserved region
353 * either the bootloader can update the size to
354 * the required amount or the node can be overridden
355 * from the board dts file for the secure platform.
356 */
357 sram-hs@0 {
358 compatible = "ti,secure-ram";
359 reg = <0x0 0x0>;
360 };
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500361 };
362
363 /*
364 * NOTE: ocmcram2 and ocmcram3 are not available on all
365 * DRA7xx and AM57xx variants. Confirm availability in
366 * the data manual for the exact part number in use
367 * before enabling these nodes in the board dts file.
368 */
369 ocmcram2: ocmcram@40400000 {
370 status = "disabled";
371 compatible = "mmio-sram";
372 reg = <0x40400000 0x100000>;
373 ranges = <0x0 0x40400000 0x100000>;
374 #address-cells = <1>;
375 #size-cells = <1>;
376 };
377
378 ocmcram3: ocmcram@40500000 {
379 status = "disabled";
380 compatible = "mmio-sram";
381 reg = <0x40500000 0x100000>;
382 ranges = <0x0 0x40500000 0x100000>;
383 #address-cells = <1>;
384 #size-cells = <1>;
385 };
386
Keerthyf7397ed2015-03-23 14:39:38 -0500387 bandgap: bandgap@4a0021e0 {
388 reg = <0x4a0021e0 0xc
389 0x4a00232c 0xc
390 0x4a002380 0x2c
391 0x4a0023C0 0x3c
392 0x4a002564 0x8
393 0x4a002574 0x50>;
394 compatible = "ti,dra752-bandgap";
395 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
396 #thermal-sensor-cells = <1>;
397 };
398
Suman Anna99639ac2015-10-02 18:23:22 -0500399 dsp1_system: dsp_system@40d00000 {
400 compatible = "syscon";
401 reg = <0x40d00000 0x100>;
402 };
403
R Sricharan6e58b8f2013-08-14 19:08:20 +0530404 sdma: dma-controller@4a056000 {
405 compatible = "ti,omap4430-sdma";
406 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530407 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
408 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
409 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
410 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530411 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200412 dma-channels = <32>;
413 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530414 };
415
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200416 edma: edma@43300000 {
417 compatible = "ti,edma3-tpcc";
418 ti,hwmods = "tpcc";
419 reg = <0x43300000 0x100000>;
420 reg-names = "edma3_cc";
421 interrupts = <GIC_SPI 361 IRQ_TYPE_LEVEL_HIGH>,
422 <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>,
423 <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>;
Robert P. J. Daya5206552016-05-24 17:20:28 -0400424 interrupt-names = "edma3_ccint", "edma3_mperr",
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200425 "edma3_ccerrint";
426 dma-requests = <64>;
427 #dma-cells = <2>;
428
429 ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 0>;
430
431 /*
432 * memcpy is disabled, can be enabled with:
433 * ti,edma-memcpy-channels = <20 21>;
434 * for example. Note that these channels need to be
435 * masked in the xbar as well.
436 */
437 };
438
439 edma_tptc0: tptc@43400000 {
440 compatible = "ti,edma3-tptc";
441 ti,hwmods = "tptc0";
442 reg = <0x43400000 0x100000>;
443 interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
444 interrupt-names = "edma3_tcerrint";
445 };
446
447 edma_tptc1: tptc@43500000 {
448 compatible = "ti,edma3-tptc";
449 ti,hwmods = "tptc1";
450 reg = <0x43500000 0x100000>;
451 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
452 interrupt-names = "edma3_tcerrint";
453 };
454
R Sricharan6e58b8f2013-08-14 19:08:20 +0530455 gpio1: gpio@4ae10000 {
456 compatible = "ti,omap4-gpio";
457 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530458 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530459 ti,hwmods = "gpio1";
460 gpio-controller;
461 #gpio-cells = <2>;
462 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700463 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530464 };
465
466 gpio2: gpio@48055000 {
467 compatible = "ti,omap4-gpio";
468 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530469 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530470 ti,hwmods = "gpio2";
471 gpio-controller;
472 #gpio-cells = <2>;
473 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700474 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530475 };
476
477 gpio3: gpio@48057000 {
478 compatible = "ti,omap4-gpio";
479 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530480 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530481 ti,hwmods = "gpio3";
482 gpio-controller;
483 #gpio-cells = <2>;
484 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700485 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530486 };
487
488 gpio4: gpio@48059000 {
489 compatible = "ti,omap4-gpio";
490 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530491 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530492 ti,hwmods = "gpio4";
493 gpio-controller;
494 #gpio-cells = <2>;
495 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700496 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530497 };
498
499 gpio5: gpio@4805b000 {
500 compatible = "ti,omap4-gpio";
501 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530502 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530503 ti,hwmods = "gpio5";
504 gpio-controller;
505 #gpio-cells = <2>;
506 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700507 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530508 };
509
510 gpio6: gpio@4805d000 {
511 compatible = "ti,omap4-gpio";
512 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530513 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530514 ti,hwmods = "gpio6";
515 gpio-controller;
516 #gpio-cells = <2>;
517 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700518 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530519 };
520
521 gpio7: gpio@48051000 {
522 compatible = "ti,omap4-gpio";
523 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530524 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530525 ti,hwmods = "gpio7";
526 gpio-controller;
527 #gpio-cells = <2>;
528 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700529 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530530 };
531
532 gpio8: gpio@48053000 {
533 compatible = "ti,omap4-gpio";
534 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530535 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530536 ti,hwmods = "gpio8";
537 gpio-controller;
538 #gpio-cells = <2>;
539 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700540 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530541 };
542
543 uart1: serial@4806a000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530544 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530545 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000546 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530547 ti,hwmods = "uart1";
548 clock-frequency = <48000000>;
549 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300550 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200551 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530552 };
553
554 uart2: serial@4806c000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530555 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530556 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000557 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530558 ti,hwmods = "uart2";
559 clock-frequency = <48000000>;
560 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300561 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200562 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530563 };
564
565 uart3: serial@48020000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530566 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530567 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000568 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530569 ti,hwmods = "uart3";
570 clock-frequency = <48000000>;
571 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300572 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200573 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530574 };
575
576 uart4: serial@4806e000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530577 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530578 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000579 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530580 ti,hwmods = "uart4";
581 clock-frequency = <48000000>;
582 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300583 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200584 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530585 };
586
587 uart5: serial@48066000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530588 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530589 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000590 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530591 ti,hwmods = "uart5";
592 clock-frequency = <48000000>;
593 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300594 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200595 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530596 };
597
598 uart6: serial@48068000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530599 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530600 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000601 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530602 ti,hwmods = "uart6";
603 clock-frequency = <48000000>;
604 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300605 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200606 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530607 };
608
609 uart7: serial@48420000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530610 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530611 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000612 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530613 ti,hwmods = "uart7";
614 clock-frequency = <48000000>;
615 status = "disabled";
616 };
617
618 uart8: serial@48422000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530619 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530620 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000621 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530622 ti,hwmods = "uart8";
623 clock-frequency = <48000000>;
624 status = "disabled";
625 };
626
627 uart9: serial@48424000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530628 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530629 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000630 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530631 ti,hwmods = "uart9";
632 clock-frequency = <48000000>;
633 status = "disabled";
634 };
635
636 uart10: serial@4ae2b000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530637 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530638 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000639 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530640 ti,hwmods = "uart10";
641 clock-frequency = <48000000>;
642 status = "disabled";
643 };
644
Suman Anna38baefb2014-07-11 16:44:38 -0500645 mailbox1: mailbox@4a0f4000 {
646 compatible = "ti,omap4-mailbox";
647 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600648 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
649 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
650 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500651 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600652 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500653 ti,mbox-num-users = <3>;
654 ti,mbox-num-fifos = <8>;
655 status = "disabled";
656 };
657
658 mailbox2: mailbox@4883a000 {
659 compatible = "ti,omap4-mailbox";
660 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600661 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
662 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
663 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
664 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500665 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600666 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500667 ti,mbox-num-users = <4>;
668 ti,mbox-num-fifos = <12>;
669 status = "disabled";
670 };
671
672 mailbox3: mailbox@4883c000 {
673 compatible = "ti,omap4-mailbox";
674 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600675 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
676 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
677 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
678 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500679 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600680 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500681 ti,mbox-num-users = <4>;
682 ti,mbox-num-fifos = <12>;
683 status = "disabled";
684 };
685
686 mailbox4: mailbox@4883e000 {
687 compatible = "ti,omap4-mailbox";
688 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600689 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
690 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
691 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
692 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500693 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600694 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500695 ti,mbox-num-users = <4>;
696 ti,mbox-num-fifos = <12>;
697 status = "disabled";
698 };
699
700 mailbox5: mailbox@48840000 {
701 compatible = "ti,omap4-mailbox";
702 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600703 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
704 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
705 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
706 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500707 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600708 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500709 ti,mbox-num-users = <4>;
710 ti,mbox-num-fifos = <12>;
711 status = "disabled";
712 };
713
714 mailbox6: mailbox@48842000 {
715 compatible = "ti,omap4-mailbox";
716 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600717 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
718 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
719 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
720 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500721 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600722 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500723 ti,mbox-num-users = <4>;
724 ti,mbox-num-fifos = <12>;
725 status = "disabled";
726 };
727
728 mailbox7: mailbox@48844000 {
729 compatible = "ti,omap4-mailbox";
730 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600731 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
732 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
733 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
734 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500735 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600736 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500737 ti,mbox-num-users = <4>;
738 ti,mbox-num-fifos = <12>;
739 status = "disabled";
740 };
741
742 mailbox8: mailbox@48846000 {
743 compatible = "ti,omap4-mailbox";
744 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600745 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
746 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
747 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
748 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500749 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600750 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500751 ti,mbox-num-users = <4>;
752 ti,mbox-num-fifos = <12>;
753 status = "disabled";
754 };
755
756 mailbox9: mailbox@4885e000 {
757 compatible = "ti,omap4-mailbox";
758 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600759 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
760 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
761 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
762 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500763 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600764 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500765 ti,mbox-num-users = <4>;
766 ti,mbox-num-fifos = <12>;
767 status = "disabled";
768 };
769
770 mailbox10: mailbox@48860000 {
771 compatible = "ti,omap4-mailbox";
772 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600773 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
774 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
775 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
776 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500777 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600778 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500779 ti,mbox-num-users = <4>;
780 ti,mbox-num-fifos = <12>;
781 status = "disabled";
782 };
783
784 mailbox11: mailbox@48862000 {
785 compatible = "ti,omap4-mailbox";
786 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600787 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
788 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
789 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
790 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500791 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600792 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500793 ti,mbox-num-users = <4>;
794 ti,mbox-num-fifos = <12>;
795 status = "disabled";
796 };
797
798 mailbox12: mailbox@48864000 {
799 compatible = "ti,omap4-mailbox";
800 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600801 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
802 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
803 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
804 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500805 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600806 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500807 ti,mbox-num-users = <4>;
808 ti,mbox-num-fifos = <12>;
809 status = "disabled";
810 };
811
812 mailbox13: mailbox@48802000 {
813 compatible = "ti,omap4-mailbox";
814 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600815 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
816 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
817 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
818 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500819 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600820 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500821 ti,mbox-num-users = <4>;
822 ti,mbox-num-fifos = <12>;
823 status = "disabled";
824 };
825
R Sricharan6e58b8f2013-08-14 19:08:20 +0530826 timer1: timer@4ae18000 {
827 compatible = "ti,omap5430-timer";
828 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530829 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530830 ti,hwmods = "timer1";
831 ti,timer-alwon;
832 };
833
834 timer2: timer@48032000 {
835 compatible = "ti,omap5430-timer";
836 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530837 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530838 ti,hwmods = "timer2";
839 };
840
841 timer3: timer@48034000 {
842 compatible = "ti,omap5430-timer";
843 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530844 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530845 ti,hwmods = "timer3";
846 };
847
848 timer4: timer@48036000 {
849 compatible = "ti,omap5430-timer";
850 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530851 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530852 ti,hwmods = "timer4";
853 };
854
855 timer5: timer@48820000 {
856 compatible = "ti,omap5430-timer";
857 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530858 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530859 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530860 };
861
862 timer6: timer@48822000 {
863 compatible = "ti,omap5430-timer";
864 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530865 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530866 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530867 };
868
869 timer7: timer@48824000 {
870 compatible = "ti,omap5430-timer";
871 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530872 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530873 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530874 };
875
876 timer8: timer@48826000 {
877 compatible = "ti,omap5430-timer";
878 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530879 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530880 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530881 };
882
883 timer9: timer@4803e000 {
884 compatible = "ti,omap5430-timer";
885 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530886 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530887 ti,hwmods = "timer9";
888 };
889
890 timer10: timer@48086000 {
891 compatible = "ti,omap5430-timer";
892 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530893 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530894 ti,hwmods = "timer10";
895 };
896
897 timer11: timer@48088000 {
898 compatible = "ti,omap5430-timer";
899 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530900 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530901 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530902 };
903
Suman Annad79852a2016-04-05 16:44:10 -0500904 timer12: timer@4ae20000 {
905 compatible = "ti,omap5430-timer";
906 reg = <0x4ae20000 0x80>;
907 interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
908 ti,hwmods = "timer12";
909 ti,timer-alwon;
910 ti,timer-secure;
911 };
912
R Sricharan6e58b8f2013-08-14 19:08:20 +0530913 timer13: timer@48828000 {
914 compatible = "ti,omap5430-timer";
915 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530916 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530917 ti,hwmods = "timer13";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530918 };
919
920 timer14: timer@4882a000 {
921 compatible = "ti,omap5430-timer";
922 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530923 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530924 ti,hwmods = "timer14";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530925 };
926
927 timer15: timer@4882c000 {
928 compatible = "ti,omap5430-timer";
929 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530930 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530931 ti,hwmods = "timer15";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530932 };
933
934 timer16: timer@4882e000 {
935 compatible = "ti,omap5430-timer";
936 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530937 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530938 ti,hwmods = "timer16";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530939 };
940
941 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530942 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530943 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530944 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530945 ti,hwmods = "wd_timer2";
946 };
947
Suman Annadbd7c192014-01-13 18:26:46 -0600948 hwspinlock: spinlock@4a0f6000 {
949 compatible = "ti,omap4-hwspinlock";
950 reg = <0x4a0f6000 0x1000>;
951 ti,hwmods = "spinlock";
952 #hwlock-cells = <1>;
953 };
954
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530955 dmm@4e000000 {
956 compatible = "ti,omap5-dmm";
957 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530958 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530959 ti,hwmods = "dmm";
960 };
961
R Sricharan6e58b8f2013-08-14 19:08:20 +0530962 i2c1: i2c@48070000 {
963 compatible = "ti,omap4-i2c";
964 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530965 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530966 #address-cells = <1>;
967 #size-cells = <0>;
968 ti,hwmods = "i2c1";
969 status = "disabled";
970 };
971
972 i2c2: i2c@48072000 {
973 compatible = "ti,omap4-i2c";
974 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530975 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530976 #address-cells = <1>;
977 #size-cells = <0>;
978 ti,hwmods = "i2c2";
979 status = "disabled";
980 };
981
982 i2c3: i2c@48060000 {
983 compatible = "ti,omap4-i2c";
984 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530985 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530986 #address-cells = <1>;
987 #size-cells = <0>;
988 ti,hwmods = "i2c3";
989 status = "disabled";
990 };
991
992 i2c4: i2c@4807a000 {
993 compatible = "ti,omap4-i2c";
994 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530995 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530996 #address-cells = <1>;
997 #size-cells = <0>;
998 ti,hwmods = "i2c4";
999 status = "disabled";
1000 };
1001
1002 i2c5: i2c@4807c000 {
1003 compatible = "ti,omap4-i2c";
1004 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301005 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301006 #address-cells = <1>;
1007 #size-cells = <0>;
1008 ti,hwmods = "i2c5";
1009 status = "disabled";
1010 };
1011
1012 mmc1: mmc@4809c000 {
1013 compatible = "ti,omap4-hsmmc";
1014 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301015 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301016 ti,hwmods = "mmc1";
1017 ti,dual-volt;
1018 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001019 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301020 dma-names = "tx", "rx";
1021 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +05301022 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301023 };
1024
1025 mmc2: mmc@480b4000 {
1026 compatible = "ti,omap4-hsmmc";
1027 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301028 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301029 ti,hwmods = "mmc2";
1030 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001031 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301032 dma-names = "tx", "rx";
1033 status = "disabled";
1034 };
1035
1036 mmc3: mmc@480ad000 {
1037 compatible = "ti,omap4-hsmmc";
1038 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301039 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301040 ti,hwmods = "mmc3";
1041 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001042 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301043 dma-names = "tx", "rx";
1044 status = "disabled";
1045 };
1046
1047 mmc4: mmc@480d1000 {
1048 compatible = "ti,omap4-hsmmc";
1049 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301050 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301051 ti,hwmods = "mmc4";
1052 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001053 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301054 dma-names = "tx", "rx";
1055 status = "disabled";
1056 };
1057
Suman Anna2c7e07c52015-10-02 18:23:24 -05001058 mmu0_dsp1: mmu@40d01000 {
1059 compatible = "ti,dra7-dsp-iommu";
1060 reg = <0x40d01000 0x100>;
1061 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
1062 ti,hwmods = "mmu0_dsp1";
1063 #iommu-cells = <0>;
1064 ti,syscon-mmuconfig = <&dsp1_system 0x0>;
1065 status = "disabled";
1066 };
1067
1068 mmu1_dsp1: mmu@40d02000 {
1069 compatible = "ti,dra7-dsp-iommu";
1070 reg = <0x40d02000 0x100>;
1071 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
1072 ti,hwmods = "mmu1_dsp1";
1073 #iommu-cells = <0>;
1074 ti,syscon-mmuconfig = <&dsp1_system 0x1>;
1075 status = "disabled";
1076 };
1077
1078 mmu_ipu1: mmu@58882000 {
1079 compatible = "ti,dra7-iommu";
1080 reg = <0x58882000 0x100>;
1081 interrupts = <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>;
1082 ti,hwmods = "mmu_ipu1";
1083 #iommu-cells = <0>;
1084 ti,iommu-bus-err-back;
1085 status = "disabled";
1086 };
1087
1088 mmu_ipu2: mmu@55082000 {
1089 compatible = "ti,dra7-iommu";
1090 reg = <0x55082000 0x100>;
1091 interrupts = <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>;
1092 ti,hwmods = "mmu_ipu2";
1093 #iommu-cells = <0>;
1094 ti,iommu-bus-err-back;
1095 status = "disabled";
1096 };
1097
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301098 abb_mpu: regulator-abb-mpu {
1099 compatible = "ti,abb-v3";
1100 regulator-name = "abb_mpu";
1101 #address-cells = <0>;
1102 #size-cells = <0>;
1103 clocks = <&sys_clkin1>;
1104 ti,settling-time = <50>;
1105 ti,clock-cycles = <16>;
1106
1107 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001108 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301109 <0x4ae0c158 0x4>;
1110 reg-names = "setup-address", "control-address",
1111 "int-address", "efuse-address",
1112 "ldo-address";
1113 ti,tranxdone-status-mask = <0x80>;
1114 /* LDOVBBMPU_FBB_MUX_CTRL */
1115 ti,ldovbb-override-mask = <0x400>;
1116 /* LDOVBBMPU_FBB_VSET_OUT */
1117 ti,ldovbb-vset-mask = <0x1F>;
1118
1119 /*
1120 * NOTE: only FBB mode used but actual vset will
1121 * determine final biasing
1122 */
1123 ti,abb_info = <
1124 /*uV ABB efuse rbb_m fbb_m vset_m*/
1125 1060000 0 0x0 0 0x02000000 0x01F00000
1126 1160000 0 0x4 0 0x02000000 0x01F00000
1127 1210000 0 0x8 0 0x02000000 0x01F00000
1128 >;
1129 };
1130
1131 abb_ivahd: regulator-abb-ivahd {
1132 compatible = "ti,abb-v3";
1133 regulator-name = "abb_ivahd";
1134 #address-cells = <0>;
1135 #size-cells = <0>;
1136 clocks = <&sys_clkin1>;
1137 ti,settling-time = <50>;
1138 ti,clock-cycles = <16>;
1139
1140 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001141 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301142 <0x4a002470 0x4>;
1143 reg-names = "setup-address", "control-address",
1144 "int-address", "efuse-address",
1145 "ldo-address";
1146 ti,tranxdone-status-mask = <0x40000000>;
1147 /* LDOVBBIVA_FBB_MUX_CTRL */
1148 ti,ldovbb-override-mask = <0x400>;
1149 /* LDOVBBIVA_FBB_VSET_OUT */
1150 ti,ldovbb-vset-mask = <0x1F>;
1151
1152 /*
1153 * NOTE: only FBB mode used but actual vset will
1154 * determine final biasing
1155 */
1156 ti,abb_info = <
1157 /*uV ABB efuse rbb_m fbb_m vset_m*/
1158 1055000 0 0x0 0 0x02000000 0x01F00000
1159 1150000 0 0x4 0 0x02000000 0x01F00000
1160 1250000 0 0x8 0 0x02000000 0x01F00000
1161 >;
1162 };
1163
1164 abb_dspeve: regulator-abb-dspeve {
1165 compatible = "ti,abb-v3";
1166 regulator-name = "abb_dspeve";
1167 #address-cells = <0>;
1168 #size-cells = <0>;
1169 clocks = <&sys_clkin1>;
1170 ti,settling-time = <50>;
1171 ti,clock-cycles = <16>;
1172
1173 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001174 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301175 <0x4a00246c 0x4>;
1176 reg-names = "setup-address", "control-address",
1177 "int-address", "efuse-address",
1178 "ldo-address";
1179 ti,tranxdone-status-mask = <0x20000000>;
1180 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
1181 ti,ldovbb-override-mask = <0x400>;
1182 /* LDOVBBDSPEVE_FBB_VSET_OUT */
1183 ti,ldovbb-vset-mask = <0x1F>;
1184
1185 /*
1186 * NOTE: only FBB mode used but actual vset will
1187 * determine final biasing
1188 */
1189 ti,abb_info = <
1190 /*uV ABB efuse rbb_m fbb_m vset_m*/
1191 1055000 0 0x0 0 0x02000000 0x01F00000
1192 1150000 0 0x4 0 0x02000000 0x01F00000
1193 1250000 0 0x8 0 0x02000000 0x01F00000
1194 >;
1195 };
1196
1197 abb_gpu: regulator-abb-gpu {
1198 compatible = "ti,abb-v3";
1199 regulator-name = "abb_gpu";
1200 #address-cells = <0>;
1201 #size-cells = <0>;
1202 clocks = <&sys_clkin1>;
1203 ti,settling-time = <50>;
1204 ti,clock-cycles = <16>;
1205
1206 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001207 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301208 <0x4ae0c154 0x4>;
1209 reg-names = "setup-address", "control-address",
1210 "int-address", "efuse-address",
1211 "ldo-address";
1212 ti,tranxdone-status-mask = <0x10000000>;
1213 /* LDOVBBGPU_FBB_MUX_CTRL */
1214 ti,ldovbb-override-mask = <0x400>;
1215 /* LDOVBBGPU_FBB_VSET_OUT */
1216 ti,ldovbb-vset-mask = <0x1F>;
1217
1218 /*
1219 * NOTE: only FBB mode used but actual vset will
1220 * determine final biasing
1221 */
1222 ti,abb_info = <
1223 /*uV ABB efuse rbb_m fbb_m vset_m*/
1224 1090000 0 0x0 0 0x02000000 0x01F00000
1225 1210000 0 0x4 0 0x02000000 0x01F00000
1226 1280000 0 0x8 0 0x02000000 0x01F00000
1227 >;
1228 };
1229
R Sricharan6e58b8f2013-08-14 19:08:20 +05301230 mcspi1: spi@48098000 {
1231 compatible = "ti,omap4-mcspi";
1232 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301233 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301234 #address-cells = <1>;
1235 #size-cells = <0>;
1236 ti,hwmods = "mcspi1";
1237 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001238 dmas = <&sdma_xbar 35>,
1239 <&sdma_xbar 36>,
1240 <&sdma_xbar 37>,
1241 <&sdma_xbar 38>,
1242 <&sdma_xbar 39>,
1243 <&sdma_xbar 40>,
1244 <&sdma_xbar 41>,
1245 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301246 dma-names = "tx0", "rx0", "tx1", "rx1",
1247 "tx2", "rx2", "tx3", "rx3";
1248 status = "disabled";
1249 };
1250
1251 mcspi2: spi@4809a000 {
1252 compatible = "ti,omap4-mcspi";
1253 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301254 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301255 #address-cells = <1>;
1256 #size-cells = <0>;
1257 ti,hwmods = "mcspi2";
1258 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001259 dmas = <&sdma_xbar 43>,
1260 <&sdma_xbar 44>,
1261 <&sdma_xbar 45>,
1262 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301263 dma-names = "tx0", "rx0", "tx1", "rx1";
1264 status = "disabled";
1265 };
1266
1267 mcspi3: spi@480b8000 {
1268 compatible = "ti,omap4-mcspi";
1269 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301270 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301271 #address-cells = <1>;
1272 #size-cells = <0>;
1273 ti,hwmods = "mcspi3";
1274 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001275 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301276 dma-names = "tx0", "rx0";
1277 status = "disabled";
1278 };
1279
1280 mcspi4: spi@480ba000 {
1281 compatible = "ti,omap4-mcspi";
1282 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301283 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301284 #address-cells = <1>;
1285 #size-cells = <0>;
1286 ti,hwmods = "mcspi4";
1287 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001288 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301289 dma-names = "tx0", "rx0";
1290 status = "disabled";
1291 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301292
1293 qspi: qspi@4b300000 {
1294 compatible = "ti,dra7xxx-qspi";
Vignesh R1929d0b2015-12-11 09:39:59 +05301295 reg = <0x4b300000 0x100>,
1296 <0x5c000000 0x4000000>;
1297 reg-names = "qspi_base", "qspi_mmap";
1298 syscon-chipselects = <&scm_conf 0x558>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301299 #address-cells = <1>;
1300 #size-cells = <0>;
1301 ti,hwmods = "qspi";
1302 clocks = <&qspi_gfclk_div>;
1303 clock-names = "fck";
1304 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301305 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301306 status = "disabled";
1307 };
Balaji T K7be80562014-05-07 14:58:58 +03001308
Balaji T K7be80562014-05-07 14:58:58 +03001309 /* OCP2SCP3 */
1310 ocp2scp@4a090000 {
1311 compatible = "ti,omap-ocp2scp";
1312 #address-cells = <1>;
1313 #size-cells = <1>;
1314 ranges;
1315 reg = <0x4a090000 0x20>;
1316 ti,hwmods = "ocp2scp3";
1317 sata_phy: phy@4A096000 {
1318 compatible = "ti,phy-pipe3-sata";
1319 reg = <0x4A096000 0x80>, /* phy_rx */
1320 <0x4A096400 0x64>, /* phy_tx */
1321 <0x4A096800 0x40>; /* pll_ctrl */
1322 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301323 syscon-phy-power = <&scm_conf 0x374>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001324 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1325 clock-names = "sysclk", "refclk";
Roger Quadros257d5d92015-07-17 16:47:23 +03001326 syscon-pllreset = <&scm_conf 0x3fc>;
Balaji T K7be80562014-05-07 14:58:58 +03001327 #phy-cells = <0>;
1328 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301329
1330 pcie1_phy: pciephy@4a094000 {
1331 compatible = "ti,phy-pipe3-pcie";
1332 reg = <0x4a094000 0x80>, /* phy_rx */
1333 <0x4a094400 0x64>; /* phy_tx */
1334 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301335 syscon-phy-power = <&scm_conf_pcie 0x1c>;
1336 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301337 clocks = <&dpll_pcie_ref_ck>,
1338 <&dpll_pcie_ref_m2ldo_ck>,
1339 <&optfclk_pciephy1_32khz>,
1340 <&optfclk_pciephy1_clk>,
1341 <&optfclk_pciephy1_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301342 <&optfclk_pciephy_div>,
1343 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301344 clock-names = "dpll_ref", "dpll_ref_m2",
1345 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301346 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301347 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301348 };
1349
1350 pcie2_phy: pciephy@4a095000 {
1351 compatible = "ti,phy-pipe3-pcie";
1352 reg = <0x4a095000 0x80>, /* phy_rx */
1353 <0x4a095400 0x64>; /* phy_tx */
1354 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301355 syscon-phy-power = <&scm_conf_pcie 0x20>;
1356 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301357 clocks = <&dpll_pcie_ref_ck>,
1358 <&dpll_pcie_ref_m2ldo_ck>,
1359 <&optfclk_pciephy2_32khz>,
1360 <&optfclk_pciephy2_clk>,
1361 <&optfclk_pciephy2_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301362 <&optfclk_pciephy_div>,
1363 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301364 clock-names = "dpll_ref", "dpll_ref_m2",
1365 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301366 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301367 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301368 status = "disabled";
1369 };
Balaji T K7be80562014-05-07 14:58:58 +03001370 };
1371
1372 sata: sata@4a141100 {
1373 compatible = "snps,dwc-ahci";
1374 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301375 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001376 phys = <&sata_phy>;
1377 phy-names = "sata-phy";
1378 clocks = <&sata_ref_clk>;
1379 ti,hwmods = "sata";
Jean-Jacques Hiblot5b661862017-01-09 13:22:15 +01001380 ports-implemented = <0x1>;
Balaji T K7be80562014-05-07 14:58:58 +03001381 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001382
Nishanth Menon00edd312015-04-08 18:56:27 -05001383 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301384 compatible = "ti,am3352-rtc";
1385 reg = <0x48838000 0x100>;
1386 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1387 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1388 ti,hwmods = "rtcss";
1389 clocks = <&sys_32k_ck>;
1390 };
1391
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001392 /* OCP2SCP1 */
1393 ocp2scp@4a080000 {
1394 compatible = "ti,omap-ocp2scp";
1395 #address-cells = <1>;
1396 #size-cells = <1>;
1397 ranges;
1398 reg = <0x4a080000 0x20>;
1399 ti,hwmods = "ocp2scp1";
1400
1401 usb2_phy1: phy@4a084000 {
Sekhar Nori291f1af2016-08-23 11:57:41 +03001402 compatible = "ti,dra7x-usb2", "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001403 reg = <0x4a084000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301404 syscon-phy-power = <&scm_conf 0x300>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001405 clocks = <&usb_phy1_always_on_clk32k>,
1406 <&usb_otg_ss1_refclk960m>;
1407 clock-names = "wkupclk",
1408 "refclk";
1409 #phy-cells = <0>;
1410 };
1411
1412 usb2_phy2: phy@4a085000 {
Kishon Vijay Abraham I4b4f52e2015-12-21 14:43:20 +05301413 compatible = "ti,dra7x-usb2-phy2",
1414 "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001415 reg = <0x4a085000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301416 syscon-phy-power = <&scm_conf 0xe74>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001417 clocks = <&usb_phy2_always_on_clk32k>,
1418 <&usb_otg_ss2_refclk960m>;
1419 clock-names = "wkupclk",
1420 "refclk";
1421 #phy-cells = <0>;
1422 };
1423
1424 usb3_phy1: phy@4a084400 {
1425 compatible = "ti,omap-usb3";
1426 reg = <0x4a084400 0x80>,
1427 <0x4a084800 0x64>,
1428 <0x4a084c00 0x40>;
1429 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301430 syscon-phy-power = <&scm_conf 0x370>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001431 clocks = <&usb_phy3_always_on_clk32k>,
1432 <&sys_clkin1>,
1433 <&usb_otg_ss1_refclk960m>;
1434 clock-names = "wkupclk",
1435 "sysclk",
1436 "refclk";
1437 #phy-cells = <0>;
1438 };
1439 };
1440
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001441 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001442 compatible = "ti,dwc3";
1443 ti,hwmods = "usb_otg_ss1";
1444 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301445 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001446 #address-cells = <1>;
1447 #size-cells = <1>;
1448 utmi-mode = <2>;
1449 ranges;
1450 usb1: usb@48890000 {
1451 compatible = "snps,dwc3";
1452 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001453 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1454 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1455 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1456 interrupt-names = "peripheral",
1457 "host",
1458 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001459 phys = <&usb2_phy1>, <&usb3_phy1>;
1460 phy-names = "usb2-phy", "usb3-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001461 maximum-speed = "super-speed";
1462 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001463 snps,dis_u3_susphy_quirk;
1464 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001465 };
1466 };
1467
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001468 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001469 compatible = "ti,dwc3";
1470 ti,hwmods = "usb_otg_ss2";
1471 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301472 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001473 #address-cells = <1>;
1474 #size-cells = <1>;
1475 utmi-mode = <2>;
1476 ranges;
1477 usb2: usb@488d0000 {
1478 compatible = "snps,dwc3";
1479 reg = <0x488d0000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001480 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1481 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1482 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1483 interrupt-names = "peripheral",
1484 "host",
1485 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001486 phys = <&usb2_phy2>;
1487 phy-names = "usb2-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001488 maximum-speed = "high-speed";
1489 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001490 snps,dis_u3_susphy_quirk;
1491 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001492 };
1493 };
1494
1495 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001496 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001497 compatible = "ti,dwc3";
1498 ti,hwmods = "usb_otg_ss3";
1499 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301500 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001501 #address-cells = <1>;
1502 #size-cells = <1>;
1503 utmi-mode = <2>;
1504 ranges;
1505 status = "disabled";
1506 usb3: usb@48910000 {
1507 compatible = "snps,dwc3";
1508 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001509 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1510 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1511 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1512 interrupt-names = "peripheral",
1513 "host",
1514 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001515 maximum-speed = "high-speed";
1516 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001517 snps,dis_u3_susphy_quirk;
1518 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001519 };
1520 };
1521
Minal Shahff66a3c2014-05-19 14:45:47 +05301522 elm: elm@48078000 {
1523 compatible = "ti,am3352-elm";
1524 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301525 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301526 ti,hwmods = "elm";
1527 status = "disabled";
1528 };
1529
1530 gpmc: gpmc@50000000 {
1531 compatible = "ti,am3352-gpmc";
1532 ti,hwmods = "gpmc";
1533 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301534 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Franklin S Cooper Jr10ce2402016-05-04 12:43:55 -05001535 dmas = <&edma_xbar 4 0>;
1536 dma-names = "rxtx";
Minal Shahff66a3c2014-05-19 14:45:47 +05301537 gpmc,num-cs = <8>;
1538 gpmc,num-waitpins = <2>;
1539 #address-cells = <2>;
1540 #size-cells = <1>;
Roger Quadros488f2702016-02-23 18:37:17 +02001541 interrupt-controller;
1542 #interrupt-cells = <2>;
Roger Quadros845b1a22016-04-07 13:25:31 +03001543 gpio-controller;
1544 #gpio-cells = <2>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301545 status = "disabled";
1546 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001547
1548 atl: atl@4843c000 {
1549 compatible = "ti,dra7-atl";
1550 reg = <0x4843c000 0x3ff>;
1551 ti,hwmods = "atl";
1552 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1553 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1554 clocks = <&atl_gfclk_mux>;
1555 clock-names = "fck";
1556 status = "disabled";
1557 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001558
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001559 mcasp1: mcasp@48460000 {
1560 compatible = "ti,dra7-mcasp-audio";
1561 ti,hwmods = "mcasp1";
1562 reg = <0x48460000 0x2000>,
1563 <0x45800000 0x1000>;
1564 reg-names = "mpu","dat";
1565 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
1566 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
1567 interrupt-names = "tx", "rx";
1568 dmas = <&edma_xbar 129 1>, <&edma_xbar 128 1>;
1569 dma-names = "tx", "rx";
1570 clocks = <&mcasp1_aux_gfclk_mux>, <&mcasp1_ahclkx_mux>,
1571 <&mcasp1_ahclkr_mux>;
1572 clock-names = "fck", "ahclkx", "ahclkr";
1573 status = "disabled";
1574 };
1575
1576 mcasp2: mcasp@48464000 {
1577 compatible = "ti,dra7-mcasp-audio";
1578 ti,hwmods = "mcasp2";
1579 reg = <0x48464000 0x2000>,
1580 <0x45c00000 0x1000>;
1581 reg-names = "mpu","dat";
1582 interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
1583 <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
1584 interrupt-names = "tx", "rx";
1585 dmas = <&edma_xbar 131 1>, <&edma_xbar 130 1>;
1586 dma-names = "tx", "rx";
1587 clocks = <&mcasp2_aux_gfclk_mux>, <&mcasp2_ahclkx_mux>,
1588 <&mcasp2_ahclkr_mux>;
1589 clock-names = "fck", "ahclkx", "ahclkr";
1590 status = "disabled";
1591 };
1592
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001593 mcasp3: mcasp@48468000 {
1594 compatible = "ti,dra7-mcasp-audio";
1595 ti,hwmods = "mcasp3";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001596 reg = <0x48468000 0x2000>,
1597 <0x46000000 0x1000>;
1598 reg-names = "mpu","dat";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001599 interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>,
1600 <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
1601 interrupt-names = "tx", "rx";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001602 dmas = <&edma_xbar 133 1>, <&edma_xbar 132 1>;
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001603 dma-names = "tx", "rx";
Peter Ujfalusibf05c2c2015-11-12 09:32:57 +02001604 clocks = <&mcasp3_aux_gfclk_mux>, <&mcasp3_ahclkx_mux>;
1605 clock-names = "fck", "ahclkx";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001606 status = "disabled";
1607 };
1608
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001609 mcasp4: mcasp@4846c000 {
1610 compatible = "ti,dra7-mcasp-audio";
1611 ti,hwmods = "mcasp4";
1612 reg = <0x4846c000 0x2000>,
1613 <0x48436000 0x1000>;
1614 reg-names = "mpu","dat";
1615 interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
1616 <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
1617 interrupt-names = "tx", "rx";
1618 dmas = <&edma_xbar 135 1>, <&edma_xbar 134 1>;
1619 dma-names = "tx", "rx";
1620 clocks = <&mcasp4_aux_gfclk_mux>, <&mcasp4_ahclkx_mux>;
1621 clock-names = "fck", "ahclkx";
1622 status = "disabled";
1623 };
1624
1625 mcasp5: mcasp@48470000 {
1626 compatible = "ti,dra7-mcasp-audio";
1627 ti,hwmods = "mcasp5";
1628 reg = <0x48470000 0x2000>,
1629 <0x4843a000 0x1000>;
1630 reg-names = "mpu","dat";
1631 interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>,
1632 <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
1633 interrupt-names = "tx", "rx";
1634 dmas = <&edma_xbar 137 1>, <&edma_xbar 136 1>;
1635 dma-names = "tx", "rx";
1636 clocks = <&mcasp5_aux_gfclk_mux>, <&mcasp5_ahclkx_mux>;
1637 clock-names = "fck", "ahclkx";
1638 status = "disabled";
1639 };
1640
1641 mcasp6: mcasp@48474000 {
1642 compatible = "ti,dra7-mcasp-audio";
1643 ti,hwmods = "mcasp6";
1644 reg = <0x48474000 0x2000>,
1645 <0x4844c000 0x1000>;
1646 reg-names = "mpu","dat";
1647 interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
1648 <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
1649 interrupt-names = "tx", "rx";
1650 dmas = <&edma_xbar 139 1>, <&edma_xbar 138 1>;
1651 dma-names = "tx", "rx";
1652 clocks = <&mcasp6_aux_gfclk_mux>, <&mcasp6_ahclkx_mux>;
1653 clock-names = "fck", "ahclkx";
1654 status = "disabled";
1655 };
1656
1657 mcasp7: mcasp@48478000 {
1658 compatible = "ti,dra7-mcasp-audio";
1659 ti,hwmods = "mcasp7";
1660 reg = <0x48478000 0x2000>,
1661 <0x48450000 0x1000>;
1662 reg-names = "mpu","dat";
1663 interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
1664 <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
1665 interrupt-names = "tx", "rx";
1666 dmas = <&edma_xbar 141 1>, <&edma_xbar 140 1>;
1667 dma-names = "tx", "rx";
1668 clocks = <&mcasp7_aux_gfclk_mux>, <&mcasp7_ahclkx_mux>;
1669 clock-names = "fck", "ahclkx";
1670 status = "disabled";
1671 };
1672
1673 mcasp8: mcasp@4847c000 {
1674 compatible = "ti,dra7-mcasp-audio";
1675 ti,hwmods = "mcasp8";
1676 reg = <0x4847c000 0x2000>,
1677 <0x48454000 0x1000>;
1678 reg-names = "mpu","dat";
1679 interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
1680 <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
1681 interrupt-names = "tx", "rx";
1682 dmas = <&edma_xbar 143 1>, <&edma_xbar 142 1>;
1683 dma-names = "tx", "rx";
1684 clocks = <&mcasp8_aux_gfclk_mux>, <&mcasp8_ahclkx_mux>;
1685 clock-names = "fck", "ahclkx";
1686 status = "disabled";
1687 };
1688
Marc Zyngier783d3182015-03-11 15:43:44 +00001689 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301690 compatible = "ti,irq-crossbar";
1691 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001692 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001693 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001694 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301695 ti,max-irqs = <160>;
1696 ti,max-crossbar-sources = <MAX_SOURCES>;
1697 ti,reg-size = <2>;
1698 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1699 ti,irqs-skip = <10 133 139 140>;
1700 ti,irqs-safe-map = <0>;
1701 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301702
Vishal Mahaveerc263a5b2015-08-25 13:57:49 -05001703 mac: ethernet@48484000 {
Mugunthan V Ne2095312015-08-12 15:22:54 +05301704 compatible = "ti,dra7-cpsw","ti,cpsw";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301705 ti,hwmods = "gmac";
Grygorii Strashkoc0973382016-08-30 17:58:01 +03001706 clocks = <&gmac_main_clk>, <&gmac_rft_clk_mux>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301707 clock-names = "fck", "cpts";
1708 cpdma_channels = <8>;
1709 ale_entries = <1024>;
1710 bd_ram_size = <0x2000>;
1711 no_bd_ram = <0>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301712 mac_control = <0x20>;
1713 slaves = <2>;
1714 active_slave = <0>;
Grygorii Strashkoc0973382016-08-30 17:58:01 +03001715 cpts_clock_mult = <0x784CFE14>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301716 cpts_clock_shift = <29>;
1717 reg = <0x48484000 0x1000
1718 0x48485200 0x2E00>;
1719 #address-cells = <1>;
1720 #size-cells = <1>;
Mugunthan V N0f514e62016-03-07 01:41:22 -07001721
1722 /*
1723 * Do not allow gating of cpsw clock as workaround
1724 * for errata i877. Keeping internal clock disabled
1725 * causes the device switching characteristics
1726 * to degrade over time and eventually fail to meet
1727 * the data manual delay time/skew specs.
1728 */
1729 ti,no-idle;
1730
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301731 /*
1732 * rx_thresh_pend
1733 * rx_pend
1734 * tx_pend
1735 * misc_pend
1736 */
1737 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1738 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1739 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1740 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1741 ranges;
Mugunthan V Na084e132015-09-21 15:56:52 +05301742 syscon = <&scm_conf>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301743 status = "disabled";
1744
1745 davinci_mdio: mdio@48485000 {
Grygorii Strashko9efd1a62016-06-24 21:23:55 +03001746 compatible = "ti,cpsw-mdio","ti,davinci_mdio";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301747 #address-cells = <1>;
1748 #size-cells = <0>;
1749 ti,hwmods = "davinci_mdio";
1750 bus_freq = <1000000>;
1751 reg = <0x48485000 0x100>;
1752 };
1753
1754 cpsw_emac0: slave@48480200 {
1755 /* Filled in by U-Boot */
1756 mac-address = [ 00 00 00 00 00 00 ];
1757 };
1758
1759 cpsw_emac1: slave@48480300 {
1760 /* Filled in by U-Boot */
1761 mac-address = [ 00 00 00 00 00 00 ];
1762 };
1763
1764 phy_sel: cpsw-phy-sel@4a002554 {
1765 compatible = "ti,dra7xx-cpsw-phy-sel";
1766 reg= <0x4a002554 0x4>;
1767 reg-names = "gmii-sel";
1768 };
1769 };
1770
Roger Quadros9ec49b92014-08-15 16:08:36 +03001771 dcan1: can@481cc000 {
1772 compatible = "ti,dra7-d_can";
1773 ti,hwmods = "dcan1";
1774 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001775 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001776 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1777 clocks = <&dcan1_sys_clk_mux>;
1778 status = "disabled";
1779 };
1780
1781 dcan2: can@481d0000 {
1782 compatible = "ti,dra7-d_can";
1783 ti,hwmods = "dcan2";
1784 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001785 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001786 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1787 clocks = <&sys_clkin1>;
1788 status = "disabled";
1789 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301790
1791 dss: dss@58000000 {
1792 compatible = "ti,dra7-dss";
1793 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1794 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1795 status = "disabled";
1796 ti,hwmods = "dss_core";
1797 /* CTRL_CORE_DSS_PLL_CONTROL */
1798 syscon-pll-ctrl = <&scm_conf 0x538>;
1799 #address-cells = <1>;
1800 #size-cells = <1>;
1801 ranges;
1802
1803 dispc@58001000 {
1804 compatible = "ti,dra7-dispc";
1805 reg = <0x58001000 0x1000>;
1806 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1807 ti,hwmods = "dss_dispc";
1808 clocks = <&dss_dss_clk>;
1809 clock-names = "fck";
1810 /* CTRL_CORE_SMA_SW_1 */
1811 syscon-pol = <&scm_conf 0x534>;
1812 };
1813
1814 hdmi: encoder@58060000 {
1815 compatible = "ti,dra7-hdmi";
1816 reg = <0x58040000 0x200>,
1817 <0x58040200 0x80>,
1818 <0x58040300 0x80>,
1819 <0x58060000 0x19000>;
1820 reg-names = "wp", "pll", "phy", "core";
1821 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1822 status = "disabled";
1823 ti,hwmods = "dss_hdmi";
1824 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1825 clock-names = "fck", "sys_clk";
1826 };
1827 };
Vignesh R34370142016-05-03 10:56:55 -05001828
1829 epwmss0: epwmss@4843e000 {
1830 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1831 reg = <0x4843e000 0x30>;
1832 ti,hwmods = "epwmss0";
1833 #address-cells = <1>;
1834 #size-cells = <1>;
1835 status = "disabled";
1836 ranges;
1837
1838 ehrpwm0: pwm@4843e200 {
1839 compatible = "ti,dra746-ehrpwm",
1840 "ti,am3352-ehrpwm";
1841 #pwm-cells = <3>;
1842 reg = <0x4843e200 0x80>;
1843 clocks = <&ehrpwm0_tbclk>, <&l4_root_clk_div>;
1844 clock-names = "tbclk", "fck";
1845 status = "disabled";
1846 };
1847
1848 ecap0: ecap@4843e100 {
1849 compatible = "ti,dra746-ecap",
1850 "ti,am3352-ecap";
1851 #pwm-cells = <3>;
1852 reg = <0x4843e100 0x80>;
1853 clocks = <&l4_root_clk_div>;
1854 clock-names = "fck";
1855 status = "disabled";
1856 };
1857 };
1858
1859 epwmss1: epwmss@48440000 {
1860 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1861 reg = <0x48440000 0x30>;
1862 ti,hwmods = "epwmss1";
1863 #address-cells = <1>;
1864 #size-cells = <1>;
1865 status = "disabled";
1866 ranges;
1867
1868 ehrpwm1: pwm@48440200 {
1869 compatible = "ti,dra746-ehrpwm",
1870 "ti,am3352-ehrpwm";
1871 #pwm-cells = <3>;
1872 reg = <0x48440200 0x80>;
1873 clocks = <&ehrpwm1_tbclk>, <&l4_root_clk_div>;
1874 clock-names = "tbclk", "fck";
1875 status = "disabled";
1876 };
1877
1878 ecap1: ecap@48440100 {
1879 compatible = "ti,dra746-ecap",
1880 "ti,am3352-ecap";
1881 #pwm-cells = <3>;
1882 reg = <0x48440100 0x80>;
1883 clocks = <&l4_root_clk_div>;
1884 clock-names = "fck";
1885 status = "disabled";
1886 };
1887 };
1888
1889 epwmss2: epwmss@48442000 {
1890 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1891 reg = <0x48442000 0x30>;
1892 ti,hwmods = "epwmss2";
1893 #address-cells = <1>;
1894 #size-cells = <1>;
1895 status = "disabled";
1896 ranges;
1897
1898 ehrpwm2: pwm@48442200 {
1899 compatible = "ti,dra746-ehrpwm",
1900 "ti,am3352-ehrpwm";
1901 #pwm-cells = <3>;
1902 reg = <0x48442200 0x80>;
1903 clocks = <&ehrpwm2_tbclk>, <&l4_root_clk_div>;
1904 clock-names = "tbclk", "fck";
1905 status = "disabled";
1906 };
1907
1908 ecap2: ecap@48442100 {
1909 compatible = "ti,dra746-ecap",
1910 "ti,am3352-ecap";
1911 #pwm-cells = <3>;
1912 reg = <0x48442100 0x80>;
1913 clocks = <&l4_root_clk_div>;
1914 clock-names = "fck";
1915 status = "disabled";
1916 };
1917 };
Joel Fernandesbac9d0b2016-06-01 12:06:41 +03001918
Joel Fernandese7fd15c2016-06-01 12:06:42 +03001919 aes1: aes@4b500000 {
1920 compatible = "ti,omap4-aes";
1921 ti,hwmods = "aes1";
1922 reg = <0x4b500000 0xa0>;
1923 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
1924 dmas = <&edma_xbar 111 0>, <&edma_xbar 110 0>;
1925 dma-names = "tx", "rx";
1926 clocks = <&l3_iclk_div>;
1927 clock-names = "fck";
1928 };
1929
1930 aes2: aes@4b700000 {
1931 compatible = "ti,omap4-aes";
1932 ti,hwmods = "aes2";
1933 reg = <0x4b700000 0xa0>;
1934 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
1935 dmas = <&edma_xbar 114 0>, <&edma_xbar 113 0>;
1936 dma-names = "tx", "rx";
1937 clocks = <&l3_iclk_div>;
1938 clock-names = "fck";
1939 };
1940
Joel Fernandesbac9d0b2016-06-01 12:06:41 +03001941 des: des@480a5000 {
1942 compatible = "ti,omap4-des";
1943 ti,hwmods = "des";
1944 reg = <0x480a5000 0xa0>;
1945 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
1946 dmas = <&sdma_xbar 117>, <&sdma_xbar 116>;
1947 dma-names = "tx", "rx";
1948 clocks = <&l3_iclk_div>;
1949 clock-names = "fck";
1950 };
Lokesh Vutlada346092016-06-01 12:06:43 +03001951
1952 sham: sham@53100000 {
1953 compatible = "ti,omap5-sham";
1954 ti,hwmods = "sham";
1955 reg = <0x4b101000 0x300>;
1956 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
1957 dmas = <&edma_xbar 119 0>;
1958 dma-names = "rx";
1959 clocks = <&l3_iclk_div>;
1960 clock-names = "fck";
1961 };
Lokesh Vutla610e9c42016-06-01 12:06:44 +03001962
1963 rng: rng@48090000 {
1964 compatible = "ti,omap4-rng";
1965 ti,hwmods = "rng";
1966 reg = <0x48090000 0x2000>;
1967 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
1968 clocks = <&l3_iclk_div>;
1969 clock-names = "fck";
1970 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301971 };
Keerthyf7397ed2015-03-23 14:39:38 -05001972
1973 thermal_zones: thermal-zones {
1974 #include "omap4-cpu-thermal.dtsi"
1975 #include "omap5-gpu-thermal.dtsi"
1976 #include "omap5-core-thermal.dtsi"
Keerthy667f2592016-02-08 14:46:30 +05301977 #include "dra7-dspeve-thermal.dtsi"
1978 #include "dra7-iva-thermal.dtsi"
Keerthyf7397ed2015-03-23 14:39:38 -05001979 };
1980
1981};
1982
1983&cpu_thermal {
1984 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301985};
Tero Kristoee6c7502013-07-18 17:18:33 +03001986
1987/include/ "dra7xx-clocks.dtsi"