blob: f8b39a5a487a6be7d6d3cfaa37a5e447bcc212c2 [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
76 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +010077 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +053078 * that are not memory mapped in the MPU view or for the MPU itself.
79 */
80 soc {
81 compatible = "ti,omap-infra";
82 mpu {
83 compatible = "ti,omap5-mpu";
84 ti,hwmods = "mpu";
85 };
86 };
87
88 /*
89 * XXX: Use a flat representation of the SOC interconnect.
90 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +010091 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +053092 * the moment, just use a fake OCP bus entry to represent the whole bus
93 * hierarchy.
94 */
95 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -050096 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +053097 #address-cells = <1>;
98 #size-cells = <1>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053099 ranges = <0x0 0x0 0x0 0xc0000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530100 ti,hwmods = "l3_main_1", "l3_main_2";
Lokesh Vutladae320e2016-02-24 15:41:04 +0530101 reg = <0x0 0x44000000 0x0 0x1000000>,
102 <0x0 0x45000000 0x0 0x1000>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000103 interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
Marc Zyngier7136d452015-03-11 15:43:49 +0000104 <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530105
Tero Kristod9195012015-02-12 11:37:13 +0200106 l4_cfg: l4@4a000000 {
107 compatible = "ti,dra7-l4-cfg", "simple-bus";
108 #address-cells = <1>;
109 #size-cells = <1>;
110 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300111
Tero Kristod9195012015-02-12 11:37:13 +0200112 scm: scm@2000 {
113 compatible = "ti,dra7-scm-core", "simple-bus";
114 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300115 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200116 #size-cells = <1>;
117 ranges = <0 0x2000 0x2000>;
118
119 scm_conf: scm_conf@0 {
Kishon Vijay Abraham Icd455672015-07-27 17:46:41 +0530120 compatible = "syscon", "simple-bus";
Tero Kristod9195012015-02-12 11:37:13 +0200121 reg = <0x0 0x1400>;
122 #address-cells = <1>;
123 #size-cells = <1>;
Kishon Vijay Abraham I9a5e3f22015-09-04 17:38:24 +0530124 ranges = <0 0x0 0x1400>;
Tero Kristod9195012015-02-12 11:37:13 +0200125
Javier Martinez Canillas308cfda2016-04-01 16:20:18 -0400126 pbias_regulator: pbias_regulator@e00 {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530127 compatible = "ti,pbias-dra7", "ti,pbias-omap";
Tero Kristod9195012015-02-12 11:37:13 +0200128 reg = <0xe00 0x4>;
129 syscon = <&scm_conf>;
130 pbias_mmc_reg: pbias_mmc_omap5 {
131 regulator-name = "pbias_mmc_omap5";
132 regulator-min-microvolt = <1800000>;
133 regulator-max-microvolt = <3000000>;
134 };
135 };
Tomi Valkeinen2d5a3c82015-02-23 12:53:56 +0200136
137 scm_conf_clocks: clocks {
138 #address-cells = <1>;
139 #size-cells = <0>;
140 };
Tero Kristod9195012015-02-12 11:37:13 +0200141 };
142
143 dra7_pmx_core: pinmux@1400 {
144 compatible = "ti,dra7-padconf",
145 "pinctrl-single";
Roger Quadros1c5cb6f2015-07-27 13:27:29 +0300146 reg = <0x1400 0x0468>;
Tero Kristod9195012015-02-12 11:37:13 +0200147 #address-cells = <1>;
148 #size-cells = <0>;
149 #interrupt-cells = <1>;
150 interrupt-controller;
151 pinctrl-single,register-width = <32>;
152 pinctrl-single,function-mask = <0x3fffffff>;
153 };
Roger Quadros33cb3a12015-08-04 12:10:14 +0300154
155 scm_conf1: scm_conf@1c04 {
156 compatible = "syscon";
157 reg = <0x1c04 0x0020>;
158 };
Kishon Vijay Abraham I43acf162015-12-21 14:43:18 +0530159
160 scm_conf_pcie: scm_conf@1c24 {
161 compatible = "syscon";
162 reg = <0x1c24 0x0024>;
163 };
Peter Ujfalusi3d2a58b2016-03-07 17:17:28 +0200164
165 sdma_xbar: dma-router@b78 {
166 compatible = "ti,dra7-dma-crossbar";
167 reg = <0xb78 0xfc>;
168 #dma-cells = <1>;
169 dma-requests = <205>;
170 ti,dma-safe-map = <0>;
171 dma-masters = <&sdma>;
172 };
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200173
174 edma_xbar: dma-router@c78 {
175 compatible = "ti,dra7-dma-crossbar";
176 reg = <0xc78 0x7c>;
177 #dma-cells = <2>;
178 dma-requests = <204>;
179 ti,dma-safe-map = <0>;
180 dma-masters = <&edma>;
181 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300182 };
183
Tero Kristod9195012015-02-12 11:37:13 +0200184 cm_core_aon: cm_core_aon@5000 {
185 compatible = "ti,dra7-cm-core-aon";
186 reg = <0x5000 0x2000>;
187
188 cm_core_aon_clocks: clocks {
189 #address-cells = <1>;
190 #size-cells = <0>;
191 };
192
193 cm_core_aon_clockdomains: clockdomains {
194 };
195 };
196
197 cm_core: cm_core@8000 {
198 compatible = "ti,dra7-cm-core";
199 reg = <0x8000 0x3000>;
200
201 cm_core_clocks: clocks {
202 #address-cells = <1>;
203 #size-cells = <0>;
204 };
205
206 cm_core_clockdomains: clockdomains {
207 };
208 };
209 };
210
211 l4_wkup: l4@4ae00000 {
212 compatible = "ti,dra7-l4-wkup", "simple-bus";
213 #address-cells = <1>;
214 #size-cells = <1>;
215 ranges = <0 0x4ae00000 0x3f000>;
216
217 counter32k: counter@4000 {
218 compatible = "ti,omap-counter32k";
219 reg = <0x4000 0x40>;
220 ti,hwmods = "counter_32k";
221 };
222
223 prm: prm@6000 {
224 compatible = "ti,dra7-prm";
225 reg = <0x6000 0x3000>;
226 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
227
228 prm_clocks: clocks {
229 #address-cells = <1>;
230 #size-cells = <0>;
231 };
232
233 prm_clockdomains: clockdomains {
234 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300235 };
236 };
237
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530238 axi@0 {
239 compatible = "simple-bus";
240 #size-cells = <1>;
241 #address-cells = <1>;
242 ranges = <0x51000000 0x51000000 0x3000
243 0x0 0x20000000 0x10000000>;
Kishon Vijay Abraham I73c8f0c2015-07-28 19:09:10 +0530244 pcie1: pcie@51000000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530245 compatible = "ti,dra7-pcie";
246 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
247 reg-names = "rc_dbics", "ti_conf", "config";
248 interrupts = <0 232 0x4>, <0 233 0x4>;
249 #address-cells = <3>;
250 #size-cells = <2>;
251 device_type = "pci";
252 ranges = <0x81000000 0 0 0x03000 0 0x00010000
253 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
254 #interrupt-cells = <1>;
255 num-lanes = <1>;
256 ti,hwmods = "pcie1";
257 phys = <&pcie1_phy>;
258 phy-names = "pcie-phy0";
259 interrupt-map-mask = <0 0 0 7>;
260 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
261 <0 0 0 2 &pcie1_intc 2>,
262 <0 0 0 3 &pcie1_intc 3>,
263 <0 0 0 4 &pcie1_intc 4>;
264 pcie1_intc: interrupt-controller {
265 interrupt-controller;
266 #address-cells = <0>;
267 #interrupt-cells = <1>;
268 };
269 };
270 };
271
272 axi@1 {
273 compatible = "simple-bus";
274 #size-cells = <1>;
275 #address-cells = <1>;
276 ranges = <0x51800000 0x51800000 0x3000
277 0x0 0x30000000 0x10000000>;
278 status = "disabled";
279 pcie@51000000 {
280 compatible = "ti,dra7-pcie";
281 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
282 reg-names = "rc_dbics", "ti_conf", "config";
283 interrupts = <0 355 0x4>, <0 356 0x4>;
284 #address-cells = <3>;
285 #size-cells = <2>;
286 device_type = "pci";
287 ranges = <0x81000000 0 0 0x03000 0 0x00010000
288 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
289 #interrupt-cells = <1>;
290 num-lanes = <1>;
291 ti,hwmods = "pcie2";
292 phys = <&pcie2_phy>;
293 phy-names = "pcie-phy0";
294 interrupt-map-mask = <0 0 0 7>;
295 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
296 <0 0 0 2 &pcie2_intc 2>,
297 <0 0 0 3 &pcie2_intc 3>,
298 <0 0 0 4 &pcie2_intc 4>;
299 pcie2_intc: interrupt-controller {
300 interrupt-controller;
301 #address-cells = <0>;
302 #interrupt-cells = <1>;
303 };
304 };
305 };
306
Keerthyf7397ed2015-03-23 14:39:38 -0500307 bandgap: bandgap@4a0021e0 {
308 reg = <0x4a0021e0 0xc
309 0x4a00232c 0xc
310 0x4a002380 0x2c
311 0x4a0023C0 0x3c
312 0x4a002564 0x8
313 0x4a002574 0x50>;
314 compatible = "ti,dra752-bandgap";
315 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
316 #thermal-sensor-cells = <1>;
317 };
318
Suman Anna99639ac2015-10-02 18:23:22 -0500319 dsp1_system: dsp_system@40d00000 {
320 compatible = "syscon";
321 reg = <0x40d00000 0x100>;
322 };
323
R Sricharan6e58b8f2013-08-14 19:08:20 +0530324 sdma: dma-controller@4a056000 {
325 compatible = "ti,omap4430-sdma";
326 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530327 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
328 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
329 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
330 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530331 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200332 dma-channels = <32>;
333 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530334 };
335
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200336 edma: edma@43300000 {
337 compatible = "ti,edma3-tpcc";
338 ti,hwmods = "tpcc";
339 reg = <0x43300000 0x100000>;
340 reg-names = "edma3_cc";
341 interrupts = <GIC_SPI 361 IRQ_TYPE_LEVEL_HIGH>,
342 <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>,
343 <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>;
344 interrupt-names = "edma3_ccint", "emda3_mperr",
345 "edma3_ccerrint";
346 dma-requests = <64>;
347 #dma-cells = <2>;
348
349 ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 0>;
350
351 /*
352 * memcpy is disabled, can be enabled with:
353 * ti,edma-memcpy-channels = <20 21>;
354 * for example. Note that these channels need to be
355 * masked in the xbar as well.
356 */
357 };
358
359 edma_tptc0: tptc@43400000 {
360 compatible = "ti,edma3-tptc";
361 ti,hwmods = "tptc0";
362 reg = <0x43400000 0x100000>;
363 interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
364 interrupt-names = "edma3_tcerrint";
365 };
366
367 edma_tptc1: tptc@43500000 {
368 compatible = "ti,edma3-tptc";
369 ti,hwmods = "tptc1";
370 reg = <0x43500000 0x100000>;
371 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
372 interrupt-names = "edma3_tcerrint";
373 };
374
R Sricharan6e58b8f2013-08-14 19:08:20 +0530375 gpio1: gpio@4ae10000 {
376 compatible = "ti,omap4-gpio";
377 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530378 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530379 ti,hwmods = "gpio1";
380 gpio-controller;
381 #gpio-cells = <2>;
382 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700383 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530384 };
385
386 gpio2: gpio@48055000 {
387 compatible = "ti,omap4-gpio";
388 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530389 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530390 ti,hwmods = "gpio2";
391 gpio-controller;
392 #gpio-cells = <2>;
393 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700394 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530395 };
396
397 gpio3: gpio@48057000 {
398 compatible = "ti,omap4-gpio";
399 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530400 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530401 ti,hwmods = "gpio3";
402 gpio-controller;
403 #gpio-cells = <2>;
404 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700405 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530406 };
407
408 gpio4: gpio@48059000 {
409 compatible = "ti,omap4-gpio";
410 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530411 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530412 ti,hwmods = "gpio4";
413 gpio-controller;
414 #gpio-cells = <2>;
415 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700416 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530417 };
418
419 gpio5: gpio@4805b000 {
420 compatible = "ti,omap4-gpio";
421 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530422 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530423 ti,hwmods = "gpio5";
424 gpio-controller;
425 #gpio-cells = <2>;
426 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700427 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530428 };
429
430 gpio6: gpio@4805d000 {
431 compatible = "ti,omap4-gpio";
432 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530433 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530434 ti,hwmods = "gpio6";
435 gpio-controller;
436 #gpio-cells = <2>;
437 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700438 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530439 };
440
441 gpio7: gpio@48051000 {
442 compatible = "ti,omap4-gpio";
443 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530444 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530445 ti,hwmods = "gpio7";
446 gpio-controller;
447 #gpio-cells = <2>;
448 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700449 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530450 };
451
452 gpio8: gpio@48053000 {
453 compatible = "ti,omap4-gpio";
454 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530455 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530456 ti,hwmods = "gpio8";
457 gpio-controller;
458 #gpio-cells = <2>;
459 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700460 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530461 };
462
463 uart1: serial@4806a000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530464 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530465 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000466 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530467 ti,hwmods = "uart1";
468 clock-frequency = <48000000>;
469 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300470 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200471 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530472 };
473
474 uart2: serial@4806c000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530475 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530476 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000477 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530478 ti,hwmods = "uart2";
479 clock-frequency = <48000000>;
480 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300481 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200482 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530483 };
484
485 uart3: serial@48020000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530486 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530487 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000488 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530489 ti,hwmods = "uart3";
490 clock-frequency = <48000000>;
491 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300492 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200493 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530494 };
495
496 uart4: serial@4806e000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530497 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530498 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000499 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530500 ti,hwmods = "uart4";
501 clock-frequency = <48000000>;
502 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300503 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200504 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530505 };
506
507 uart5: serial@48066000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530508 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530509 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000510 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530511 ti,hwmods = "uart5";
512 clock-frequency = <48000000>;
513 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300514 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200515 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530516 };
517
518 uart6: serial@48068000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530519 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530520 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000521 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530522 ti,hwmods = "uart6";
523 clock-frequency = <48000000>;
524 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300525 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200526 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530527 };
528
529 uart7: serial@48420000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530530 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530531 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000532 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530533 ti,hwmods = "uart7";
534 clock-frequency = <48000000>;
535 status = "disabled";
536 };
537
538 uart8: serial@48422000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530539 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530540 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000541 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530542 ti,hwmods = "uart8";
543 clock-frequency = <48000000>;
544 status = "disabled";
545 };
546
547 uart9: serial@48424000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530548 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530549 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000550 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530551 ti,hwmods = "uart9";
552 clock-frequency = <48000000>;
553 status = "disabled";
554 };
555
556 uart10: serial@4ae2b000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530557 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530558 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000559 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530560 ti,hwmods = "uart10";
561 clock-frequency = <48000000>;
562 status = "disabled";
563 };
564
Suman Anna38baefb2014-07-11 16:44:38 -0500565 mailbox1: mailbox@4a0f4000 {
566 compatible = "ti,omap4-mailbox";
567 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600568 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
569 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
570 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500571 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600572 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500573 ti,mbox-num-users = <3>;
574 ti,mbox-num-fifos = <8>;
575 status = "disabled";
576 };
577
578 mailbox2: mailbox@4883a000 {
579 compatible = "ti,omap4-mailbox";
580 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600581 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
582 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
583 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
584 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500585 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600586 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500587 ti,mbox-num-users = <4>;
588 ti,mbox-num-fifos = <12>;
589 status = "disabled";
590 };
591
592 mailbox3: mailbox@4883c000 {
593 compatible = "ti,omap4-mailbox";
594 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600595 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
596 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
597 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
598 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500599 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600600 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500601 ti,mbox-num-users = <4>;
602 ti,mbox-num-fifos = <12>;
603 status = "disabled";
604 };
605
606 mailbox4: mailbox@4883e000 {
607 compatible = "ti,omap4-mailbox";
608 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600609 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
610 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
611 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
612 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500613 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600614 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500615 ti,mbox-num-users = <4>;
616 ti,mbox-num-fifos = <12>;
617 status = "disabled";
618 };
619
620 mailbox5: mailbox@48840000 {
621 compatible = "ti,omap4-mailbox";
622 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600623 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
624 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
625 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
626 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500627 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600628 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500629 ti,mbox-num-users = <4>;
630 ti,mbox-num-fifos = <12>;
631 status = "disabled";
632 };
633
634 mailbox6: mailbox@48842000 {
635 compatible = "ti,omap4-mailbox";
636 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600637 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
638 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
639 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
640 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500641 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600642 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500643 ti,mbox-num-users = <4>;
644 ti,mbox-num-fifos = <12>;
645 status = "disabled";
646 };
647
648 mailbox7: mailbox@48844000 {
649 compatible = "ti,omap4-mailbox";
650 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600651 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
652 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
653 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
654 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500655 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600656 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500657 ti,mbox-num-users = <4>;
658 ti,mbox-num-fifos = <12>;
659 status = "disabled";
660 };
661
662 mailbox8: mailbox@48846000 {
663 compatible = "ti,omap4-mailbox";
664 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600665 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
666 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
667 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
668 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500669 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600670 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500671 ti,mbox-num-users = <4>;
672 ti,mbox-num-fifos = <12>;
673 status = "disabled";
674 };
675
676 mailbox9: mailbox@4885e000 {
677 compatible = "ti,omap4-mailbox";
678 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600679 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
680 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
681 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
682 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500683 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600684 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500685 ti,mbox-num-users = <4>;
686 ti,mbox-num-fifos = <12>;
687 status = "disabled";
688 };
689
690 mailbox10: mailbox@48860000 {
691 compatible = "ti,omap4-mailbox";
692 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600693 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
694 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
695 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
696 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500697 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600698 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500699 ti,mbox-num-users = <4>;
700 ti,mbox-num-fifos = <12>;
701 status = "disabled";
702 };
703
704 mailbox11: mailbox@48862000 {
705 compatible = "ti,omap4-mailbox";
706 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600707 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
708 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
709 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
710 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500711 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600712 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500713 ti,mbox-num-users = <4>;
714 ti,mbox-num-fifos = <12>;
715 status = "disabled";
716 };
717
718 mailbox12: mailbox@48864000 {
719 compatible = "ti,omap4-mailbox";
720 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600721 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
722 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
723 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
724 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500725 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600726 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500727 ti,mbox-num-users = <4>;
728 ti,mbox-num-fifos = <12>;
729 status = "disabled";
730 };
731
732 mailbox13: mailbox@48802000 {
733 compatible = "ti,omap4-mailbox";
734 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600735 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
736 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
737 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
738 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500739 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600740 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500741 ti,mbox-num-users = <4>;
742 ti,mbox-num-fifos = <12>;
743 status = "disabled";
744 };
745
R Sricharan6e58b8f2013-08-14 19:08:20 +0530746 timer1: timer@4ae18000 {
747 compatible = "ti,omap5430-timer";
748 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530749 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530750 ti,hwmods = "timer1";
751 ti,timer-alwon;
752 };
753
754 timer2: timer@48032000 {
755 compatible = "ti,omap5430-timer";
756 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530757 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530758 ti,hwmods = "timer2";
759 };
760
761 timer3: timer@48034000 {
762 compatible = "ti,omap5430-timer";
763 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530764 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530765 ti,hwmods = "timer3";
766 };
767
768 timer4: timer@48036000 {
769 compatible = "ti,omap5430-timer";
770 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530771 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530772 ti,hwmods = "timer4";
773 };
774
775 timer5: timer@48820000 {
776 compatible = "ti,omap5430-timer";
777 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530778 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530779 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530780 };
781
782 timer6: timer@48822000 {
783 compatible = "ti,omap5430-timer";
784 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530785 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530786 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530787 };
788
789 timer7: timer@48824000 {
790 compatible = "ti,omap5430-timer";
791 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530792 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530793 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530794 };
795
796 timer8: timer@48826000 {
797 compatible = "ti,omap5430-timer";
798 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530799 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530800 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530801 };
802
803 timer9: timer@4803e000 {
804 compatible = "ti,omap5430-timer";
805 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530806 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530807 ti,hwmods = "timer9";
808 };
809
810 timer10: timer@48086000 {
811 compatible = "ti,omap5430-timer";
812 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530813 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530814 ti,hwmods = "timer10";
815 };
816
817 timer11: timer@48088000 {
818 compatible = "ti,omap5430-timer";
819 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530820 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530821 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530822 };
823
Suman Annad79852a2016-04-05 16:44:10 -0500824 timer12: timer@4ae20000 {
825 compatible = "ti,omap5430-timer";
826 reg = <0x4ae20000 0x80>;
827 interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
828 ti,hwmods = "timer12";
829 ti,timer-alwon;
830 ti,timer-secure;
831 };
832
R Sricharan6e58b8f2013-08-14 19:08:20 +0530833 timer13: timer@48828000 {
834 compatible = "ti,omap5430-timer";
835 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530836 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530837 ti,hwmods = "timer13";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530838 };
839
840 timer14: timer@4882a000 {
841 compatible = "ti,omap5430-timer";
842 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530843 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530844 ti,hwmods = "timer14";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530845 };
846
847 timer15: timer@4882c000 {
848 compatible = "ti,omap5430-timer";
849 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530850 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530851 ti,hwmods = "timer15";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530852 };
853
854 timer16: timer@4882e000 {
855 compatible = "ti,omap5430-timer";
856 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530857 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530858 ti,hwmods = "timer16";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530859 };
860
861 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530862 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530863 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530864 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530865 ti,hwmods = "wd_timer2";
866 };
867
Suman Annadbd7c192014-01-13 18:26:46 -0600868 hwspinlock: spinlock@4a0f6000 {
869 compatible = "ti,omap4-hwspinlock";
870 reg = <0x4a0f6000 0x1000>;
871 ti,hwmods = "spinlock";
872 #hwlock-cells = <1>;
873 };
874
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530875 dmm@4e000000 {
876 compatible = "ti,omap5-dmm";
877 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530878 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530879 ti,hwmods = "dmm";
880 };
881
R Sricharan6e58b8f2013-08-14 19:08:20 +0530882 i2c1: i2c@48070000 {
883 compatible = "ti,omap4-i2c";
884 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530885 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530886 #address-cells = <1>;
887 #size-cells = <0>;
888 ti,hwmods = "i2c1";
889 status = "disabled";
890 };
891
892 i2c2: i2c@48072000 {
893 compatible = "ti,omap4-i2c";
894 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530895 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530896 #address-cells = <1>;
897 #size-cells = <0>;
898 ti,hwmods = "i2c2";
899 status = "disabled";
900 };
901
902 i2c3: i2c@48060000 {
903 compatible = "ti,omap4-i2c";
904 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530905 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530906 #address-cells = <1>;
907 #size-cells = <0>;
908 ti,hwmods = "i2c3";
909 status = "disabled";
910 };
911
912 i2c4: i2c@4807a000 {
913 compatible = "ti,omap4-i2c";
914 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530915 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530916 #address-cells = <1>;
917 #size-cells = <0>;
918 ti,hwmods = "i2c4";
919 status = "disabled";
920 };
921
922 i2c5: i2c@4807c000 {
923 compatible = "ti,omap4-i2c";
924 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530925 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530926 #address-cells = <1>;
927 #size-cells = <0>;
928 ti,hwmods = "i2c5";
929 status = "disabled";
930 };
931
932 mmc1: mmc@4809c000 {
933 compatible = "ti,omap4-hsmmc";
934 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530935 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530936 ti,hwmods = "mmc1";
937 ti,dual-volt;
938 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300939 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530940 dma-names = "tx", "rx";
941 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530942 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530943 };
944
945 mmc2: mmc@480b4000 {
946 compatible = "ti,omap4-hsmmc";
947 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530948 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530949 ti,hwmods = "mmc2";
950 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300951 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530952 dma-names = "tx", "rx";
953 status = "disabled";
954 };
955
956 mmc3: mmc@480ad000 {
957 compatible = "ti,omap4-hsmmc";
958 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530959 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530960 ti,hwmods = "mmc3";
961 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300962 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530963 dma-names = "tx", "rx";
964 status = "disabled";
965 };
966
967 mmc4: mmc@480d1000 {
968 compatible = "ti,omap4-hsmmc";
969 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530970 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530971 ti,hwmods = "mmc4";
972 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300973 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530974 dma-names = "tx", "rx";
975 status = "disabled";
976 };
977
Suman Anna2c7e07c52015-10-02 18:23:24 -0500978 mmu0_dsp1: mmu@40d01000 {
979 compatible = "ti,dra7-dsp-iommu";
980 reg = <0x40d01000 0x100>;
981 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
982 ti,hwmods = "mmu0_dsp1";
983 #iommu-cells = <0>;
984 ti,syscon-mmuconfig = <&dsp1_system 0x0>;
985 status = "disabled";
986 };
987
988 mmu1_dsp1: mmu@40d02000 {
989 compatible = "ti,dra7-dsp-iommu";
990 reg = <0x40d02000 0x100>;
991 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
992 ti,hwmods = "mmu1_dsp1";
993 #iommu-cells = <0>;
994 ti,syscon-mmuconfig = <&dsp1_system 0x1>;
995 status = "disabled";
996 };
997
998 mmu_ipu1: mmu@58882000 {
999 compatible = "ti,dra7-iommu";
1000 reg = <0x58882000 0x100>;
1001 interrupts = <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>;
1002 ti,hwmods = "mmu_ipu1";
1003 #iommu-cells = <0>;
1004 ti,iommu-bus-err-back;
1005 status = "disabled";
1006 };
1007
1008 mmu_ipu2: mmu@55082000 {
1009 compatible = "ti,dra7-iommu";
1010 reg = <0x55082000 0x100>;
1011 interrupts = <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>;
1012 ti,hwmods = "mmu_ipu2";
1013 #iommu-cells = <0>;
1014 ti,iommu-bus-err-back;
1015 status = "disabled";
1016 };
1017
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301018 abb_mpu: regulator-abb-mpu {
1019 compatible = "ti,abb-v3";
1020 regulator-name = "abb_mpu";
1021 #address-cells = <0>;
1022 #size-cells = <0>;
1023 clocks = <&sys_clkin1>;
1024 ti,settling-time = <50>;
1025 ti,clock-cycles = <16>;
1026
1027 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001028 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301029 <0x4ae0c158 0x4>;
1030 reg-names = "setup-address", "control-address",
1031 "int-address", "efuse-address",
1032 "ldo-address";
1033 ti,tranxdone-status-mask = <0x80>;
1034 /* LDOVBBMPU_FBB_MUX_CTRL */
1035 ti,ldovbb-override-mask = <0x400>;
1036 /* LDOVBBMPU_FBB_VSET_OUT */
1037 ti,ldovbb-vset-mask = <0x1F>;
1038
1039 /*
1040 * NOTE: only FBB mode used but actual vset will
1041 * determine final biasing
1042 */
1043 ti,abb_info = <
1044 /*uV ABB efuse rbb_m fbb_m vset_m*/
1045 1060000 0 0x0 0 0x02000000 0x01F00000
1046 1160000 0 0x4 0 0x02000000 0x01F00000
1047 1210000 0 0x8 0 0x02000000 0x01F00000
1048 >;
1049 };
1050
1051 abb_ivahd: regulator-abb-ivahd {
1052 compatible = "ti,abb-v3";
1053 regulator-name = "abb_ivahd";
1054 #address-cells = <0>;
1055 #size-cells = <0>;
1056 clocks = <&sys_clkin1>;
1057 ti,settling-time = <50>;
1058 ti,clock-cycles = <16>;
1059
1060 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001061 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301062 <0x4a002470 0x4>;
1063 reg-names = "setup-address", "control-address",
1064 "int-address", "efuse-address",
1065 "ldo-address";
1066 ti,tranxdone-status-mask = <0x40000000>;
1067 /* LDOVBBIVA_FBB_MUX_CTRL */
1068 ti,ldovbb-override-mask = <0x400>;
1069 /* LDOVBBIVA_FBB_VSET_OUT */
1070 ti,ldovbb-vset-mask = <0x1F>;
1071
1072 /*
1073 * NOTE: only FBB mode used but actual vset will
1074 * determine final biasing
1075 */
1076 ti,abb_info = <
1077 /*uV ABB efuse rbb_m fbb_m vset_m*/
1078 1055000 0 0x0 0 0x02000000 0x01F00000
1079 1150000 0 0x4 0 0x02000000 0x01F00000
1080 1250000 0 0x8 0 0x02000000 0x01F00000
1081 >;
1082 };
1083
1084 abb_dspeve: regulator-abb-dspeve {
1085 compatible = "ti,abb-v3";
1086 regulator-name = "abb_dspeve";
1087 #address-cells = <0>;
1088 #size-cells = <0>;
1089 clocks = <&sys_clkin1>;
1090 ti,settling-time = <50>;
1091 ti,clock-cycles = <16>;
1092
1093 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001094 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301095 <0x4a00246c 0x4>;
1096 reg-names = "setup-address", "control-address",
1097 "int-address", "efuse-address",
1098 "ldo-address";
1099 ti,tranxdone-status-mask = <0x20000000>;
1100 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
1101 ti,ldovbb-override-mask = <0x400>;
1102 /* LDOVBBDSPEVE_FBB_VSET_OUT */
1103 ti,ldovbb-vset-mask = <0x1F>;
1104
1105 /*
1106 * NOTE: only FBB mode used but actual vset will
1107 * determine final biasing
1108 */
1109 ti,abb_info = <
1110 /*uV ABB efuse rbb_m fbb_m vset_m*/
1111 1055000 0 0x0 0 0x02000000 0x01F00000
1112 1150000 0 0x4 0 0x02000000 0x01F00000
1113 1250000 0 0x8 0 0x02000000 0x01F00000
1114 >;
1115 };
1116
1117 abb_gpu: regulator-abb-gpu {
1118 compatible = "ti,abb-v3";
1119 regulator-name = "abb_gpu";
1120 #address-cells = <0>;
1121 #size-cells = <0>;
1122 clocks = <&sys_clkin1>;
1123 ti,settling-time = <50>;
1124 ti,clock-cycles = <16>;
1125
1126 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001127 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301128 <0x4ae0c154 0x4>;
1129 reg-names = "setup-address", "control-address",
1130 "int-address", "efuse-address",
1131 "ldo-address";
1132 ti,tranxdone-status-mask = <0x10000000>;
1133 /* LDOVBBGPU_FBB_MUX_CTRL */
1134 ti,ldovbb-override-mask = <0x400>;
1135 /* LDOVBBGPU_FBB_VSET_OUT */
1136 ti,ldovbb-vset-mask = <0x1F>;
1137
1138 /*
1139 * NOTE: only FBB mode used but actual vset will
1140 * determine final biasing
1141 */
1142 ti,abb_info = <
1143 /*uV ABB efuse rbb_m fbb_m vset_m*/
1144 1090000 0 0x0 0 0x02000000 0x01F00000
1145 1210000 0 0x4 0 0x02000000 0x01F00000
1146 1280000 0 0x8 0 0x02000000 0x01F00000
1147 >;
1148 };
1149
R Sricharan6e58b8f2013-08-14 19:08:20 +05301150 mcspi1: spi@48098000 {
1151 compatible = "ti,omap4-mcspi";
1152 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301153 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301154 #address-cells = <1>;
1155 #size-cells = <0>;
1156 ti,hwmods = "mcspi1";
1157 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001158 dmas = <&sdma_xbar 35>,
1159 <&sdma_xbar 36>,
1160 <&sdma_xbar 37>,
1161 <&sdma_xbar 38>,
1162 <&sdma_xbar 39>,
1163 <&sdma_xbar 40>,
1164 <&sdma_xbar 41>,
1165 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301166 dma-names = "tx0", "rx0", "tx1", "rx1",
1167 "tx2", "rx2", "tx3", "rx3";
1168 status = "disabled";
1169 };
1170
1171 mcspi2: spi@4809a000 {
1172 compatible = "ti,omap4-mcspi";
1173 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301174 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301175 #address-cells = <1>;
1176 #size-cells = <0>;
1177 ti,hwmods = "mcspi2";
1178 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001179 dmas = <&sdma_xbar 43>,
1180 <&sdma_xbar 44>,
1181 <&sdma_xbar 45>,
1182 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301183 dma-names = "tx0", "rx0", "tx1", "rx1";
1184 status = "disabled";
1185 };
1186
1187 mcspi3: spi@480b8000 {
1188 compatible = "ti,omap4-mcspi";
1189 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301190 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301191 #address-cells = <1>;
1192 #size-cells = <0>;
1193 ti,hwmods = "mcspi3";
1194 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001195 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301196 dma-names = "tx0", "rx0";
1197 status = "disabled";
1198 };
1199
1200 mcspi4: spi@480ba000 {
1201 compatible = "ti,omap4-mcspi";
1202 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301203 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301204 #address-cells = <1>;
1205 #size-cells = <0>;
1206 ti,hwmods = "mcspi4";
1207 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001208 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301209 dma-names = "tx0", "rx0";
1210 status = "disabled";
1211 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301212
1213 qspi: qspi@4b300000 {
1214 compatible = "ti,dra7xxx-qspi";
Vignesh R1929d0b2015-12-11 09:39:59 +05301215 reg = <0x4b300000 0x100>,
1216 <0x5c000000 0x4000000>;
1217 reg-names = "qspi_base", "qspi_mmap";
1218 syscon-chipselects = <&scm_conf 0x558>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301219 #address-cells = <1>;
1220 #size-cells = <0>;
1221 ti,hwmods = "qspi";
1222 clocks = <&qspi_gfclk_div>;
1223 clock-names = "fck";
1224 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301225 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301226 status = "disabled";
1227 };
Balaji T K7be80562014-05-07 14:58:58 +03001228
Balaji T K7be80562014-05-07 14:58:58 +03001229 /* OCP2SCP3 */
1230 ocp2scp@4a090000 {
1231 compatible = "ti,omap-ocp2scp";
1232 #address-cells = <1>;
1233 #size-cells = <1>;
1234 ranges;
1235 reg = <0x4a090000 0x20>;
1236 ti,hwmods = "ocp2scp3";
1237 sata_phy: phy@4A096000 {
1238 compatible = "ti,phy-pipe3-sata";
1239 reg = <0x4A096000 0x80>, /* phy_rx */
1240 <0x4A096400 0x64>, /* phy_tx */
1241 <0x4A096800 0x40>; /* pll_ctrl */
1242 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301243 syscon-phy-power = <&scm_conf 0x374>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001244 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1245 clock-names = "sysclk", "refclk";
Roger Quadros257d5d92015-07-17 16:47:23 +03001246 syscon-pllreset = <&scm_conf 0x3fc>;
Balaji T K7be80562014-05-07 14:58:58 +03001247 #phy-cells = <0>;
1248 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301249
1250 pcie1_phy: pciephy@4a094000 {
1251 compatible = "ti,phy-pipe3-pcie";
1252 reg = <0x4a094000 0x80>, /* phy_rx */
1253 <0x4a094400 0x64>; /* phy_tx */
1254 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301255 syscon-phy-power = <&scm_conf_pcie 0x1c>;
1256 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301257 clocks = <&dpll_pcie_ref_ck>,
1258 <&dpll_pcie_ref_m2ldo_ck>,
1259 <&optfclk_pciephy1_32khz>,
1260 <&optfclk_pciephy1_clk>,
1261 <&optfclk_pciephy1_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301262 <&optfclk_pciephy_div>,
1263 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301264 clock-names = "dpll_ref", "dpll_ref_m2",
1265 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301266 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301267 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301268 };
1269
1270 pcie2_phy: pciephy@4a095000 {
1271 compatible = "ti,phy-pipe3-pcie";
1272 reg = <0x4a095000 0x80>, /* phy_rx */
1273 <0x4a095400 0x64>; /* phy_tx */
1274 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301275 syscon-phy-power = <&scm_conf_pcie 0x20>;
1276 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301277 clocks = <&dpll_pcie_ref_ck>,
1278 <&dpll_pcie_ref_m2ldo_ck>,
1279 <&optfclk_pciephy2_32khz>,
1280 <&optfclk_pciephy2_clk>,
1281 <&optfclk_pciephy2_div_clk>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301282 <&optfclk_pciephy_div>,
1283 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301284 clock-names = "dpll_ref", "dpll_ref_m2",
1285 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301286 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301287 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301288 status = "disabled";
1289 };
Balaji T K7be80562014-05-07 14:58:58 +03001290 };
1291
1292 sata: sata@4a141100 {
1293 compatible = "snps,dwc-ahci";
1294 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301295 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001296 phys = <&sata_phy>;
1297 phy-names = "sata-phy";
1298 clocks = <&sata_ref_clk>;
1299 ti,hwmods = "sata";
1300 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001301
Nishanth Menon00edd312015-04-08 18:56:27 -05001302 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301303 compatible = "ti,am3352-rtc";
1304 reg = <0x48838000 0x100>;
1305 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1306 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1307 ti,hwmods = "rtcss";
1308 clocks = <&sys_32k_ck>;
1309 };
1310
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001311 /* OCP2SCP1 */
1312 ocp2scp@4a080000 {
1313 compatible = "ti,omap-ocp2scp";
1314 #address-cells = <1>;
1315 #size-cells = <1>;
1316 ranges;
1317 reg = <0x4a080000 0x20>;
1318 ti,hwmods = "ocp2scp1";
1319
1320 usb2_phy1: phy@4a084000 {
1321 compatible = "ti,omap-usb2";
1322 reg = <0x4a084000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301323 syscon-phy-power = <&scm_conf 0x300>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001324 clocks = <&usb_phy1_always_on_clk32k>,
1325 <&usb_otg_ss1_refclk960m>;
1326 clock-names = "wkupclk",
1327 "refclk";
1328 #phy-cells = <0>;
1329 };
1330
1331 usb2_phy2: phy@4a085000 {
Kishon Vijay Abraham I4b4f52e2015-12-21 14:43:20 +05301332 compatible = "ti,dra7x-usb2-phy2",
1333 "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001334 reg = <0x4a085000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301335 syscon-phy-power = <&scm_conf 0xe74>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001336 clocks = <&usb_phy2_always_on_clk32k>,
1337 <&usb_otg_ss2_refclk960m>;
1338 clock-names = "wkupclk",
1339 "refclk";
1340 #phy-cells = <0>;
1341 };
1342
1343 usb3_phy1: phy@4a084400 {
1344 compatible = "ti,omap-usb3";
1345 reg = <0x4a084400 0x80>,
1346 <0x4a084800 0x64>,
1347 <0x4a084c00 0x40>;
1348 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301349 syscon-phy-power = <&scm_conf 0x370>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001350 clocks = <&usb_phy3_always_on_clk32k>,
1351 <&sys_clkin1>,
1352 <&usb_otg_ss1_refclk960m>;
1353 clock-names = "wkupclk",
1354 "sysclk",
1355 "refclk";
1356 #phy-cells = <0>;
1357 };
1358 };
1359
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001360 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001361 compatible = "ti,dwc3";
1362 ti,hwmods = "usb_otg_ss1";
1363 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301364 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001365 #address-cells = <1>;
1366 #size-cells = <1>;
1367 utmi-mode = <2>;
1368 ranges;
1369 usb1: usb@48890000 {
1370 compatible = "snps,dwc3";
1371 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001372 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1373 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1374 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1375 interrupt-names = "peripheral",
1376 "host",
1377 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001378 phys = <&usb2_phy1>, <&usb3_phy1>;
1379 phy-names = "usb2-phy", "usb3-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001380 maximum-speed = "super-speed";
1381 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001382 snps,dis_u3_susphy_quirk;
1383 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001384 };
1385 };
1386
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001387 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001388 compatible = "ti,dwc3";
1389 ti,hwmods = "usb_otg_ss2";
1390 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301391 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001392 #address-cells = <1>;
1393 #size-cells = <1>;
1394 utmi-mode = <2>;
1395 ranges;
1396 usb2: usb@488d0000 {
1397 compatible = "snps,dwc3";
1398 reg = <0x488d0000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001399 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1400 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1401 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1402 interrupt-names = "peripheral",
1403 "host",
1404 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001405 phys = <&usb2_phy2>;
1406 phy-names = "usb2-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001407 maximum-speed = "high-speed";
1408 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001409 snps,dis_u3_susphy_quirk;
1410 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001411 };
1412 };
1413
1414 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001415 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001416 compatible = "ti,dwc3";
1417 ti,hwmods = "usb_otg_ss3";
1418 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301419 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001420 #address-cells = <1>;
1421 #size-cells = <1>;
1422 utmi-mode = <2>;
1423 ranges;
1424 status = "disabled";
1425 usb3: usb@48910000 {
1426 compatible = "snps,dwc3";
1427 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001428 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1429 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1430 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1431 interrupt-names = "peripheral",
1432 "host",
1433 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001434 maximum-speed = "high-speed";
1435 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001436 snps,dis_u3_susphy_quirk;
1437 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001438 };
1439 };
1440
Minal Shahff66a3c2014-05-19 14:45:47 +05301441 elm: elm@48078000 {
1442 compatible = "ti,am3352-elm";
1443 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301444 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301445 ti,hwmods = "elm";
1446 status = "disabled";
1447 };
1448
1449 gpmc: gpmc@50000000 {
1450 compatible = "ti,am3352-gpmc";
1451 ti,hwmods = "gpmc";
1452 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301453 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301454 gpmc,num-cs = <8>;
1455 gpmc,num-waitpins = <2>;
1456 #address-cells = <2>;
1457 #size-cells = <1>;
Roger Quadros488f2702016-02-23 18:37:17 +02001458 interrupt-controller;
1459 #interrupt-cells = <2>;
Roger Quadros845b1a22016-04-07 13:25:31 +03001460 gpio-controller;
1461 #gpio-cells = <2>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301462 status = "disabled";
1463 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001464
1465 atl: atl@4843c000 {
1466 compatible = "ti,dra7-atl";
1467 reg = <0x4843c000 0x3ff>;
1468 ti,hwmods = "atl";
1469 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1470 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1471 clocks = <&atl_gfclk_mux>;
1472 clock-names = "fck";
1473 status = "disabled";
1474 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001475
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001476 mcasp1: mcasp@48460000 {
1477 compatible = "ti,dra7-mcasp-audio";
1478 ti,hwmods = "mcasp1";
1479 reg = <0x48460000 0x2000>,
1480 <0x45800000 0x1000>;
1481 reg-names = "mpu","dat";
1482 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
1483 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
1484 interrupt-names = "tx", "rx";
1485 dmas = <&edma_xbar 129 1>, <&edma_xbar 128 1>;
1486 dma-names = "tx", "rx";
1487 clocks = <&mcasp1_aux_gfclk_mux>, <&mcasp1_ahclkx_mux>,
1488 <&mcasp1_ahclkr_mux>;
1489 clock-names = "fck", "ahclkx", "ahclkr";
1490 status = "disabled";
1491 };
1492
1493 mcasp2: mcasp@48464000 {
1494 compatible = "ti,dra7-mcasp-audio";
1495 ti,hwmods = "mcasp2";
1496 reg = <0x48464000 0x2000>,
1497 <0x45c00000 0x1000>;
1498 reg-names = "mpu","dat";
1499 interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
1500 <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
1501 interrupt-names = "tx", "rx";
1502 dmas = <&edma_xbar 131 1>, <&edma_xbar 130 1>;
1503 dma-names = "tx", "rx";
1504 clocks = <&mcasp2_aux_gfclk_mux>, <&mcasp2_ahclkx_mux>,
1505 <&mcasp2_ahclkr_mux>;
1506 clock-names = "fck", "ahclkx", "ahclkr";
1507 status = "disabled";
1508 };
1509
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001510 mcasp3: mcasp@48468000 {
1511 compatible = "ti,dra7-mcasp-audio";
1512 ti,hwmods = "mcasp3";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001513 reg = <0x48468000 0x2000>,
1514 <0x46000000 0x1000>;
1515 reg-names = "mpu","dat";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001516 interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>,
1517 <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
1518 interrupt-names = "tx", "rx";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001519 dmas = <&edma_xbar 133 1>, <&edma_xbar 132 1>;
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001520 dma-names = "tx", "rx";
Peter Ujfalusibf05c2c2015-11-12 09:32:57 +02001521 clocks = <&mcasp3_aux_gfclk_mux>, <&mcasp3_ahclkx_mux>;
1522 clock-names = "fck", "ahclkx";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001523 status = "disabled";
1524 };
1525
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001526 mcasp4: mcasp@4846c000 {
1527 compatible = "ti,dra7-mcasp-audio";
1528 ti,hwmods = "mcasp4";
1529 reg = <0x4846c000 0x2000>,
1530 <0x48436000 0x1000>;
1531 reg-names = "mpu","dat";
1532 interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
1533 <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
1534 interrupt-names = "tx", "rx";
1535 dmas = <&edma_xbar 135 1>, <&edma_xbar 134 1>;
1536 dma-names = "tx", "rx";
1537 clocks = <&mcasp4_aux_gfclk_mux>, <&mcasp4_ahclkx_mux>;
1538 clock-names = "fck", "ahclkx";
1539 status = "disabled";
1540 };
1541
1542 mcasp5: mcasp@48470000 {
1543 compatible = "ti,dra7-mcasp-audio";
1544 ti,hwmods = "mcasp5";
1545 reg = <0x48470000 0x2000>,
1546 <0x4843a000 0x1000>;
1547 reg-names = "mpu","dat";
1548 interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>,
1549 <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
1550 interrupt-names = "tx", "rx";
1551 dmas = <&edma_xbar 137 1>, <&edma_xbar 136 1>;
1552 dma-names = "tx", "rx";
1553 clocks = <&mcasp5_aux_gfclk_mux>, <&mcasp5_ahclkx_mux>;
1554 clock-names = "fck", "ahclkx";
1555 status = "disabled";
1556 };
1557
1558 mcasp6: mcasp@48474000 {
1559 compatible = "ti,dra7-mcasp-audio";
1560 ti,hwmods = "mcasp6";
1561 reg = <0x48474000 0x2000>,
1562 <0x4844c000 0x1000>;
1563 reg-names = "mpu","dat";
1564 interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
1565 <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
1566 interrupt-names = "tx", "rx";
1567 dmas = <&edma_xbar 139 1>, <&edma_xbar 138 1>;
1568 dma-names = "tx", "rx";
1569 clocks = <&mcasp6_aux_gfclk_mux>, <&mcasp6_ahclkx_mux>;
1570 clock-names = "fck", "ahclkx";
1571 status = "disabled";
1572 };
1573
1574 mcasp7: mcasp@48478000 {
1575 compatible = "ti,dra7-mcasp-audio";
1576 ti,hwmods = "mcasp7";
1577 reg = <0x48478000 0x2000>,
1578 <0x48450000 0x1000>;
1579 reg-names = "mpu","dat";
1580 interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
1581 <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
1582 interrupt-names = "tx", "rx";
1583 dmas = <&edma_xbar 141 1>, <&edma_xbar 140 1>;
1584 dma-names = "tx", "rx";
1585 clocks = <&mcasp7_aux_gfclk_mux>, <&mcasp7_ahclkx_mux>;
1586 clock-names = "fck", "ahclkx";
1587 status = "disabled";
1588 };
1589
1590 mcasp8: mcasp@4847c000 {
1591 compatible = "ti,dra7-mcasp-audio";
1592 ti,hwmods = "mcasp8";
1593 reg = <0x4847c000 0x2000>,
1594 <0x48454000 0x1000>;
1595 reg-names = "mpu","dat";
1596 interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
1597 <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
1598 interrupt-names = "tx", "rx";
1599 dmas = <&edma_xbar 143 1>, <&edma_xbar 142 1>;
1600 dma-names = "tx", "rx";
1601 clocks = <&mcasp8_aux_gfclk_mux>, <&mcasp8_ahclkx_mux>;
1602 clock-names = "fck", "ahclkx";
1603 status = "disabled";
1604 };
1605
Marc Zyngier783d3182015-03-11 15:43:44 +00001606 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301607 compatible = "ti,irq-crossbar";
1608 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001609 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001610 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001611 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301612 ti,max-irqs = <160>;
1613 ti,max-crossbar-sources = <MAX_SOURCES>;
1614 ti,reg-size = <2>;
1615 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1616 ti,irqs-skip = <10 133 139 140>;
1617 ti,irqs-safe-map = <0>;
1618 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301619
Vishal Mahaveerc263a5b2015-08-25 13:57:49 -05001620 mac: ethernet@48484000 {
Mugunthan V Ne2095312015-08-12 15:22:54 +05301621 compatible = "ti,dra7-cpsw","ti,cpsw";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301622 ti,hwmods = "gmac";
1623 clocks = <&dpll_gmac_ck>, <&gmac_gmii_ref_clk_div>;
1624 clock-names = "fck", "cpts";
1625 cpdma_channels = <8>;
1626 ale_entries = <1024>;
1627 bd_ram_size = <0x2000>;
1628 no_bd_ram = <0>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301629 mac_control = <0x20>;
1630 slaves = <2>;
1631 active_slave = <0>;
1632 cpts_clock_mult = <0x80000000>;
1633 cpts_clock_shift = <29>;
1634 reg = <0x48484000 0x1000
1635 0x48485200 0x2E00>;
1636 #address-cells = <1>;
1637 #size-cells = <1>;
Mugunthan V N0f514e62016-03-07 01:41:22 -07001638
1639 /*
1640 * Do not allow gating of cpsw clock as workaround
1641 * for errata i877. Keeping internal clock disabled
1642 * causes the device switching characteristics
1643 * to degrade over time and eventually fail to meet
1644 * the data manual delay time/skew specs.
1645 */
1646 ti,no-idle;
1647
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301648 /*
1649 * rx_thresh_pend
1650 * rx_pend
1651 * tx_pend
1652 * misc_pend
1653 */
1654 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1655 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1656 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1657 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1658 ranges;
Mugunthan V Na084e132015-09-21 15:56:52 +05301659 syscon = <&scm_conf>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301660 status = "disabled";
1661
1662 davinci_mdio: mdio@48485000 {
Grygorii Strashko9efd1a62016-06-24 21:23:55 +03001663 compatible = "ti,cpsw-mdio","ti,davinci_mdio";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301664 #address-cells = <1>;
1665 #size-cells = <0>;
1666 ti,hwmods = "davinci_mdio";
1667 bus_freq = <1000000>;
1668 reg = <0x48485000 0x100>;
1669 };
1670
1671 cpsw_emac0: slave@48480200 {
1672 /* Filled in by U-Boot */
1673 mac-address = [ 00 00 00 00 00 00 ];
1674 };
1675
1676 cpsw_emac1: slave@48480300 {
1677 /* Filled in by U-Boot */
1678 mac-address = [ 00 00 00 00 00 00 ];
1679 };
1680
1681 phy_sel: cpsw-phy-sel@4a002554 {
1682 compatible = "ti,dra7xx-cpsw-phy-sel";
1683 reg= <0x4a002554 0x4>;
1684 reg-names = "gmii-sel";
1685 };
1686 };
1687
Roger Quadros9ec49b92014-08-15 16:08:36 +03001688 dcan1: can@481cc000 {
1689 compatible = "ti,dra7-d_can";
1690 ti,hwmods = "dcan1";
1691 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001692 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001693 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1694 clocks = <&dcan1_sys_clk_mux>;
1695 status = "disabled";
1696 };
1697
1698 dcan2: can@481d0000 {
1699 compatible = "ti,dra7-d_can";
1700 ti,hwmods = "dcan2";
1701 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001702 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001703 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1704 clocks = <&sys_clkin1>;
1705 status = "disabled";
1706 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301707
1708 dss: dss@58000000 {
1709 compatible = "ti,dra7-dss";
1710 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1711 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1712 status = "disabled";
1713 ti,hwmods = "dss_core";
1714 /* CTRL_CORE_DSS_PLL_CONTROL */
1715 syscon-pll-ctrl = <&scm_conf 0x538>;
1716 #address-cells = <1>;
1717 #size-cells = <1>;
1718 ranges;
1719
1720 dispc@58001000 {
1721 compatible = "ti,dra7-dispc";
1722 reg = <0x58001000 0x1000>;
1723 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1724 ti,hwmods = "dss_dispc";
1725 clocks = <&dss_dss_clk>;
1726 clock-names = "fck";
1727 /* CTRL_CORE_SMA_SW_1 */
1728 syscon-pol = <&scm_conf 0x534>;
1729 };
1730
1731 hdmi: encoder@58060000 {
1732 compatible = "ti,dra7-hdmi";
1733 reg = <0x58040000 0x200>,
1734 <0x58040200 0x80>,
1735 <0x58040300 0x80>,
1736 <0x58060000 0x19000>;
1737 reg-names = "wp", "pll", "phy", "core";
1738 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1739 status = "disabled";
1740 ti,hwmods = "dss_hdmi";
1741 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1742 clock-names = "fck", "sys_clk";
1743 };
1744 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301745 };
Keerthyf7397ed2015-03-23 14:39:38 -05001746
1747 thermal_zones: thermal-zones {
1748 #include "omap4-cpu-thermal.dtsi"
1749 #include "omap5-gpu-thermal.dtsi"
1750 #include "omap5-core-thermal.dtsi"
Keerthy667f2592016-02-08 14:46:30 +05301751 #include "dra7-dspeve-thermal.dtsi"
1752 #include "dra7-iva-thermal.dtsi"
Keerthyf7397ed2015-03-23 14:39:38 -05001753 };
1754
1755};
1756
1757&cpu_thermal {
1758 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301759};
Tero Kristoee6c7502013-07-18 17:18:33 +03001760
1761/include/ "dra7xx-clocks.dtsi"