blob: c6474dba44cf5916d801f0f7e6097163cffb3bad [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/ {
18 #address-cells = <1>;
19 #size-cells = <1>;
20
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;
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>;
59 reg = <0x48211000 0x1000>,
60 <0x48212000 0x1000>,
61 <0x48214000 0x2000>,
62 <0x48216000 0x2000>;
63 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>;
71 reg = <0x48281000 0x1000>;
72 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053073 };
74
75 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +010076 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +053077 * that are not memory mapped in the MPU view or for the MPU itself.
78 */
79 soc {
80 compatible = "ti,omap-infra";
81 mpu {
82 compatible = "ti,omap5-mpu";
83 ti,hwmods = "mpu";
84 };
85 };
86
87 /*
88 * XXX: Use a flat representation of the SOC interconnect.
89 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +010090 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +053091 * the moment, just use a fake OCP bus entry to represent the whole bus
92 * hierarchy.
93 */
94 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -050095 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +053096 #address-cells = <1>;
97 #size-cells = <1>;
98 ranges;
99 ti,hwmods = "l3_main_1", "l3_main_2";
Rajendra Nayakfba387a2014-04-10 11:34:32 -0500100 reg = <0x44000000 0x1000000>,
101 <0x45000000 0x1000>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000102 interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
Marc Zyngier7136d452015-03-11 15:43:49 +0000103 <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530104
Tero Kristod9195012015-02-12 11:37:13 +0200105 l4_cfg: l4@4a000000 {
106 compatible = "ti,dra7-l4-cfg", "simple-bus";
107 #address-cells = <1>;
108 #size-cells = <1>;
109 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300110
Tero Kristod9195012015-02-12 11:37:13 +0200111 scm: scm@2000 {
112 compatible = "ti,dra7-scm-core", "simple-bus";
113 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300114 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200115 #size-cells = <1>;
116 ranges = <0 0x2000 0x2000>;
117
118 scm_conf: scm_conf@0 {
119 compatible = "syscon";
120 reg = <0x0 0x1400>;
121 #address-cells = <1>;
122 #size-cells = <1>;
123
124 pbias_regulator: pbias_regulator {
125 compatible = "ti,pbias-omap";
126 reg = <0xe00 0x4>;
127 syscon = <&scm_conf>;
128 pbias_mmc_reg: pbias_mmc_omap5 {
129 regulator-name = "pbias_mmc_omap5";
130 regulator-min-microvolt = <1800000>;
131 regulator-max-microvolt = <3000000>;
132 };
133 };
Tomi Valkeinen2d5a3c82015-02-23 12:53:56 +0200134
135 scm_conf_clocks: clocks {
136 #address-cells = <1>;
137 #size-cells = <0>;
138 };
Tero Kristod9195012015-02-12 11:37:13 +0200139 };
140
141 dra7_pmx_core: pinmux@1400 {
142 compatible = "ti,dra7-padconf",
143 "pinctrl-single";
144 reg = <0x1400 0x0464>;
145 #address-cells = <1>;
146 #size-cells = <0>;
147 #interrupt-cells = <1>;
148 interrupt-controller;
149 pinctrl-single,register-width = <32>;
150 pinctrl-single,function-mask = <0x3fffffff>;
151 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300152 };
153
Tero Kristod9195012015-02-12 11:37:13 +0200154 cm_core_aon: cm_core_aon@5000 {
155 compatible = "ti,dra7-cm-core-aon";
156 reg = <0x5000 0x2000>;
157
158 cm_core_aon_clocks: clocks {
159 #address-cells = <1>;
160 #size-cells = <0>;
161 };
162
163 cm_core_aon_clockdomains: clockdomains {
164 };
165 };
166
167 cm_core: cm_core@8000 {
168 compatible = "ti,dra7-cm-core";
169 reg = <0x8000 0x3000>;
170
171 cm_core_clocks: clocks {
172 #address-cells = <1>;
173 #size-cells = <0>;
174 };
175
176 cm_core_clockdomains: clockdomains {
177 };
178 };
179 };
180
181 l4_wkup: l4@4ae00000 {
182 compatible = "ti,dra7-l4-wkup", "simple-bus";
183 #address-cells = <1>;
184 #size-cells = <1>;
185 ranges = <0 0x4ae00000 0x3f000>;
186
187 counter32k: counter@4000 {
188 compatible = "ti,omap-counter32k";
189 reg = <0x4000 0x40>;
190 ti,hwmods = "counter_32k";
191 };
192
193 prm: prm@6000 {
194 compatible = "ti,dra7-prm";
195 reg = <0x6000 0x3000>;
196 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
197
198 prm_clocks: clocks {
199 #address-cells = <1>;
200 #size-cells = <0>;
201 };
202
203 prm_clockdomains: clockdomains {
204 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300205 };
206 };
207
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530208 axi@0 {
209 compatible = "simple-bus";
210 #size-cells = <1>;
211 #address-cells = <1>;
212 ranges = <0x51000000 0x51000000 0x3000
213 0x0 0x20000000 0x10000000>;
214 pcie@51000000 {
215 compatible = "ti,dra7-pcie";
216 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
217 reg-names = "rc_dbics", "ti_conf", "config";
218 interrupts = <0 232 0x4>, <0 233 0x4>;
219 #address-cells = <3>;
220 #size-cells = <2>;
221 device_type = "pci";
222 ranges = <0x81000000 0 0 0x03000 0 0x00010000
223 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
224 #interrupt-cells = <1>;
225 num-lanes = <1>;
226 ti,hwmods = "pcie1";
227 phys = <&pcie1_phy>;
228 phy-names = "pcie-phy0";
229 interrupt-map-mask = <0 0 0 7>;
230 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
231 <0 0 0 2 &pcie1_intc 2>,
232 <0 0 0 3 &pcie1_intc 3>,
233 <0 0 0 4 &pcie1_intc 4>;
234 pcie1_intc: interrupt-controller {
235 interrupt-controller;
236 #address-cells = <0>;
237 #interrupt-cells = <1>;
238 };
239 };
240 };
241
242 axi@1 {
243 compatible = "simple-bus";
244 #size-cells = <1>;
245 #address-cells = <1>;
246 ranges = <0x51800000 0x51800000 0x3000
247 0x0 0x30000000 0x10000000>;
248 status = "disabled";
249 pcie@51000000 {
250 compatible = "ti,dra7-pcie";
251 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
252 reg-names = "rc_dbics", "ti_conf", "config";
253 interrupts = <0 355 0x4>, <0 356 0x4>;
254 #address-cells = <3>;
255 #size-cells = <2>;
256 device_type = "pci";
257 ranges = <0x81000000 0 0 0x03000 0 0x00010000
258 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
259 #interrupt-cells = <1>;
260 num-lanes = <1>;
261 ti,hwmods = "pcie2";
262 phys = <&pcie2_phy>;
263 phy-names = "pcie-phy0";
264 interrupt-map-mask = <0 0 0 7>;
265 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
266 <0 0 0 2 &pcie2_intc 2>,
267 <0 0 0 3 &pcie2_intc 3>,
268 <0 0 0 4 &pcie2_intc 4>;
269 pcie2_intc: interrupt-controller {
270 interrupt-controller;
271 #address-cells = <0>;
272 #interrupt-cells = <1>;
273 };
274 };
275 };
276
Keerthyf7397ed2015-03-23 14:39:38 -0500277 bandgap: bandgap@4a0021e0 {
278 reg = <0x4a0021e0 0xc
279 0x4a00232c 0xc
280 0x4a002380 0x2c
281 0x4a0023C0 0x3c
282 0x4a002564 0x8
283 0x4a002574 0x50>;
284 compatible = "ti,dra752-bandgap";
285 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
286 #thermal-sensor-cells = <1>;
287 };
288
Roger Quadrosae3c0f72014-09-03 17:21:45 +0300289 dra7_ctrl_core: ctrl_core@4a002000 {
290 compatible = "syscon";
291 reg = <0x4a002000 0x6d0>;
292 };
293
Balaji T Kcd042fe2014-02-19 20:26:40 +0530294 dra7_ctrl_general: tisyscon@4a002e00 {
295 compatible = "syscon";
296 reg = <0x4a002e00 0x7c>;
297 };
298
R Sricharan6e58b8f2013-08-14 19:08:20 +0530299 sdma: dma-controller@4a056000 {
300 compatible = "ti,omap4430-sdma";
301 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530302 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
303 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
304 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
305 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530306 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200307 dma-channels = <32>;
308 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530309 };
310
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300311 sdma_xbar: dma-router@4a002b78 {
312 compatible = "ti,dra7-dma-crossbar";
313 reg = <0x4a002b78 0xfc>;
314 #dma-cells = <1>;
315 dma-requests = <205>;
316 ti,dma-safe-map = <0>;
317 dma-masters = <&sdma>;
318 };
319
R Sricharan6e58b8f2013-08-14 19:08:20 +0530320 gpio1: gpio@4ae10000 {
321 compatible = "ti,omap4-gpio";
322 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530323 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530324 ti,hwmods = "gpio1";
325 gpio-controller;
326 #gpio-cells = <2>;
327 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700328 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530329 };
330
331 gpio2: gpio@48055000 {
332 compatible = "ti,omap4-gpio";
333 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530334 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530335 ti,hwmods = "gpio2";
336 gpio-controller;
337 #gpio-cells = <2>;
338 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700339 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530340 };
341
342 gpio3: gpio@48057000 {
343 compatible = "ti,omap4-gpio";
344 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530345 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530346 ti,hwmods = "gpio3";
347 gpio-controller;
348 #gpio-cells = <2>;
349 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700350 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530351 };
352
353 gpio4: gpio@48059000 {
354 compatible = "ti,omap4-gpio";
355 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530356 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530357 ti,hwmods = "gpio4";
358 gpio-controller;
359 #gpio-cells = <2>;
360 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700361 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530362 };
363
364 gpio5: gpio@4805b000 {
365 compatible = "ti,omap4-gpio";
366 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530367 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530368 ti,hwmods = "gpio5";
369 gpio-controller;
370 #gpio-cells = <2>;
371 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700372 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530373 };
374
375 gpio6: gpio@4805d000 {
376 compatible = "ti,omap4-gpio";
377 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530378 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530379 ti,hwmods = "gpio6";
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 gpio7: gpio@48051000 {
387 compatible = "ti,omap4-gpio";
388 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530389 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530390 ti,hwmods = "gpio7";
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 gpio8: gpio@48053000 {
398 compatible = "ti,omap4-gpio";
399 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530400 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530401 ti,hwmods = "gpio8";
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 uart1: serial@4806a000 {
409 compatible = "ti,omap4-uart";
410 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000411 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530412 ti,hwmods = "uart1";
413 clock-frequency = <48000000>;
414 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300415 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200416 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530417 };
418
419 uart2: serial@4806c000 {
420 compatible = "ti,omap4-uart";
421 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000422 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530423 ti,hwmods = "uart2";
424 clock-frequency = <48000000>;
425 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300426 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200427 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530428 };
429
430 uart3: serial@48020000 {
431 compatible = "ti,omap4-uart";
432 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000433 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530434 ti,hwmods = "uart3";
435 clock-frequency = <48000000>;
436 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300437 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200438 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530439 };
440
441 uart4: serial@4806e000 {
442 compatible = "ti,omap4-uart";
443 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000444 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530445 ti,hwmods = "uart4";
446 clock-frequency = <48000000>;
447 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300448 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200449 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530450 };
451
452 uart5: serial@48066000 {
453 compatible = "ti,omap4-uart";
454 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000455 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530456 ti,hwmods = "uart5";
457 clock-frequency = <48000000>;
458 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300459 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200460 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530461 };
462
463 uart6: serial@48068000 {
464 compatible = "ti,omap4-uart";
465 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000466 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530467 ti,hwmods = "uart6";
468 clock-frequency = <48000000>;
469 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300470 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200471 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530472 };
473
474 uart7: serial@48420000 {
475 compatible = "ti,omap4-uart";
476 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000477 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530478 ti,hwmods = "uart7";
479 clock-frequency = <48000000>;
480 status = "disabled";
481 };
482
483 uart8: serial@48422000 {
484 compatible = "ti,omap4-uart";
485 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000486 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530487 ti,hwmods = "uart8";
488 clock-frequency = <48000000>;
489 status = "disabled";
490 };
491
492 uart9: serial@48424000 {
493 compatible = "ti,omap4-uart";
494 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000495 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530496 ti,hwmods = "uart9";
497 clock-frequency = <48000000>;
498 status = "disabled";
499 };
500
501 uart10: serial@4ae2b000 {
502 compatible = "ti,omap4-uart";
503 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000504 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530505 ti,hwmods = "uart10";
506 clock-frequency = <48000000>;
507 status = "disabled";
508 };
509
Suman Anna38baefb2014-07-11 16:44:38 -0500510 mailbox1: mailbox@4a0f4000 {
511 compatible = "ti,omap4-mailbox";
512 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600513 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
514 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
515 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500516 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600517 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500518 ti,mbox-num-users = <3>;
519 ti,mbox-num-fifos = <8>;
520 status = "disabled";
521 };
522
523 mailbox2: mailbox@4883a000 {
524 compatible = "ti,omap4-mailbox";
525 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600526 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
527 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
528 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
529 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500530 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600531 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500532 ti,mbox-num-users = <4>;
533 ti,mbox-num-fifos = <12>;
534 status = "disabled";
535 };
536
537 mailbox3: mailbox@4883c000 {
538 compatible = "ti,omap4-mailbox";
539 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600540 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
541 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
542 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
543 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500544 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600545 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500546 ti,mbox-num-users = <4>;
547 ti,mbox-num-fifos = <12>;
548 status = "disabled";
549 };
550
551 mailbox4: mailbox@4883e000 {
552 compatible = "ti,omap4-mailbox";
553 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600554 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
555 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
556 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
557 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500558 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600559 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500560 ti,mbox-num-users = <4>;
561 ti,mbox-num-fifos = <12>;
562 status = "disabled";
563 };
564
565 mailbox5: mailbox@48840000 {
566 compatible = "ti,omap4-mailbox";
567 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600568 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
569 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
570 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
571 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500572 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600573 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500574 ti,mbox-num-users = <4>;
575 ti,mbox-num-fifos = <12>;
576 status = "disabled";
577 };
578
579 mailbox6: mailbox@48842000 {
580 compatible = "ti,omap4-mailbox";
581 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600582 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
583 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
584 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
585 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500586 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600587 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500588 ti,mbox-num-users = <4>;
589 ti,mbox-num-fifos = <12>;
590 status = "disabled";
591 };
592
593 mailbox7: mailbox@48844000 {
594 compatible = "ti,omap4-mailbox";
595 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600596 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
597 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
598 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
599 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500600 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600601 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500602 ti,mbox-num-users = <4>;
603 ti,mbox-num-fifos = <12>;
604 status = "disabled";
605 };
606
607 mailbox8: mailbox@48846000 {
608 compatible = "ti,omap4-mailbox";
609 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600610 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
611 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
612 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
613 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500614 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600615 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500616 ti,mbox-num-users = <4>;
617 ti,mbox-num-fifos = <12>;
618 status = "disabled";
619 };
620
621 mailbox9: mailbox@4885e000 {
622 compatible = "ti,omap4-mailbox";
623 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600624 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
625 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
626 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
627 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500628 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600629 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500630 ti,mbox-num-users = <4>;
631 ti,mbox-num-fifos = <12>;
632 status = "disabled";
633 };
634
635 mailbox10: mailbox@48860000 {
636 compatible = "ti,omap4-mailbox";
637 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600638 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
639 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
640 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
641 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500642 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600643 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500644 ti,mbox-num-users = <4>;
645 ti,mbox-num-fifos = <12>;
646 status = "disabled";
647 };
648
649 mailbox11: mailbox@48862000 {
650 compatible = "ti,omap4-mailbox";
651 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600652 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
653 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
654 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
655 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500656 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600657 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500658 ti,mbox-num-users = <4>;
659 ti,mbox-num-fifos = <12>;
660 status = "disabled";
661 };
662
663 mailbox12: mailbox@48864000 {
664 compatible = "ti,omap4-mailbox";
665 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600666 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
667 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
668 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
669 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500670 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600671 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500672 ti,mbox-num-users = <4>;
673 ti,mbox-num-fifos = <12>;
674 status = "disabled";
675 };
676
677 mailbox13: mailbox@48802000 {
678 compatible = "ti,omap4-mailbox";
679 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600680 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
681 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
682 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
683 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500684 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600685 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500686 ti,mbox-num-users = <4>;
687 ti,mbox-num-fifos = <12>;
688 status = "disabled";
689 };
690
R Sricharan6e58b8f2013-08-14 19:08:20 +0530691 timer1: timer@4ae18000 {
692 compatible = "ti,omap5430-timer";
693 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530694 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530695 ti,hwmods = "timer1";
696 ti,timer-alwon;
697 };
698
699 timer2: timer@48032000 {
700 compatible = "ti,omap5430-timer";
701 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530702 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530703 ti,hwmods = "timer2";
704 };
705
706 timer3: timer@48034000 {
707 compatible = "ti,omap5430-timer";
708 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530709 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530710 ti,hwmods = "timer3";
711 };
712
713 timer4: timer@48036000 {
714 compatible = "ti,omap5430-timer";
715 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530716 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530717 ti,hwmods = "timer4";
718 };
719
720 timer5: timer@48820000 {
721 compatible = "ti,omap5430-timer";
722 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530723 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530724 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530725 };
726
727 timer6: timer@48822000 {
728 compatible = "ti,omap5430-timer";
729 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530730 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530731 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530732 };
733
734 timer7: timer@48824000 {
735 compatible = "ti,omap5430-timer";
736 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530737 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530738 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530739 };
740
741 timer8: timer@48826000 {
742 compatible = "ti,omap5430-timer";
743 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530744 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530745 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530746 };
747
748 timer9: timer@4803e000 {
749 compatible = "ti,omap5430-timer";
750 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530751 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530752 ti,hwmods = "timer9";
753 };
754
755 timer10: timer@48086000 {
756 compatible = "ti,omap5430-timer";
757 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530758 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530759 ti,hwmods = "timer10";
760 };
761
762 timer11: timer@48088000 {
763 compatible = "ti,omap5430-timer";
764 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530765 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530766 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530767 };
768
769 timer13: timer@48828000 {
770 compatible = "ti,omap5430-timer";
771 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530772 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530773 ti,hwmods = "timer13";
774 status = "disabled";
775 };
776
777 timer14: timer@4882a000 {
778 compatible = "ti,omap5430-timer";
779 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530780 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530781 ti,hwmods = "timer14";
782 status = "disabled";
783 };
784
785 timer15: timer@4882c000 {
786 compatible = "ti,omap5430-timer";
787 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530788 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530789 ti,hwmods = "timer15";
790 status = "disabled";
791 };
792
793 timer16: timer@4882e000 {
794 compatible = "ti,omap5430-timer";
795 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530796 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530797 ti,hwmods = "timer16";
798 status = "disabled";
799 };
800
801 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530802 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530803 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530804 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530805 ti,hwmods = "wd_timer2";
806 };
807
Suman Annadbd7c192014-01-13 18:26:46 -0600808 hwspinlock: spinlock@4a0f6000 {
809 compatible = "ti,omap4-hwspinlock";
810 reg = <0x4a0f6000 0x1000>;
811 ti,hwmods = "spinlock";
812 #hwlock-cells = <1>;
813 };
814
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530815 dmm@4e000000 {
816 compatible = "ti,omap5-dmm";
817 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530818 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530819 ti,hwmods = "dmm";
820 };
821
R Sricharan6e58b8f2013-08-14 19:08:20 +0530822 i2c1: i2c@48070000 {
823 compatible = "ti,omap4-i2c";
824 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530825 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530826 #address-cells = <1>;
827 #size-cells = <0>;
828 ti,hwmods = "i2c1";
829 status = "disabled";
830 };
831
832 i2c2: i2c@48072000 {
833 compatible = "ti,omap4-i2c";
834 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530835 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530836 #address-cells = <1>;
837 #size-cells = <0>;
838 ti,hwmods = "i2c2";
839 status = "disabled";
840 };
841
842 i2c3: i2c@48060000 {
843 compatible = "ti,omap4-i2c";
844 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530845 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530846 #address-cells = <1>;
847 #size-cells = <0>;
848 ti,hwmods = "i2c3";
849 status = "disabled";
850 };
851
852 i2c4: i2c@4807a000 {
853 compatible = "ti,omap4-i2c";
854 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530855 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530856 #address-cells = <1>;
857 #size-cells = <0>;
858 ti,hwmods = "i2c4";
859 status = "disabled";
860 };
861
862 i2c5: i2c@4807c000 {
863 compatible = "ti,omap4-i2c";
864 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530865 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530866 #address-cells = <1>;
867 #size-cells = <0>;
868 ti,hwmods = "i2c5";
869 status = "disabled";
870 };
871
872 mmc1: mmc@4809c000 {
873 compatible = "ti,omap4-hsmmc";
874 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530875 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530876 ti,hwmods = "mmc1";
877 ti,dual-volt;
878 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300879 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530880 dma-names = "tx", "rx";
881 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530882 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530883 };
884
885 mmc2: mmc@480b4000 {
886 compatible = "ti,omap4-hsmmc";
887 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530888 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530889 ti,hwmods = "mmc2";
890 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300891 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530892 dma-names = "tx", "rx";
893 status = "disabled";
894 };
895
896 mmc3: mmc@480ad000 {
897 compatible = "ti,omap4-hsmmc";
898 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530899 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530900 ti,hwmods = "mmc3";
901 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300902 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530903 dma-names = "tx", "rx";
904 status = "disabled";
905 };
906
907 mmc4: mmc@480d1000 {
908 compatible = "ti,omap4-hsmmc";
909 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530910 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530911 ti,hwmods = "mmc4";
912 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300913 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530914 dma-names = "tx", "rx";
915 status = "disabled";
916 };
917
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530918 abb_mpu: regulator-abb-mpu {
919 compatible = "ti,abb-v3";
920 regulator-name = "abb_mpu";
921 #address-cells = <0>;
922 #size-cells = <0>;
923 clocks = <&sys_clkin1>;
924 ti,settling-time = <50>;
925 ti,clock-cycles = <16>;
926
927 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500928 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530929 <0x4ae0c158 0x4>;
930 reg-names = "setup-address", "control-address",
931 "int-address", "efuse-address",
932 "ldo-address";
933 ti,tranxdone-status-mask = <0x80>;
934 /* LDOVBBMPU_FBB_MUX_CTRL */
935 ti,ldovbb-override-mask = <0x400>;
936 /* LDOVBBMPU_FBB_VSET_OUT */
937 ti,ldovbb-vset-mask = <0x1F>;
938
939 /*
940 * NOTE: only FBB mode used but actual vset will
941 * determine final biasing
942 */
943 ti,abb_info = <
944 /*uV ABB efuse rbb_m fbb_m vset_m*/
945 1060000 0 0x0 0 0x02000000 0x01F00000
946 1160000 0 0x4 0 0x02000000 0x01F00000
947 1210000 0 0x8 0 0x02000000 0x01F00000
948 >;
949 };
950
951 abb_ivahd: regulator-abb-ivahd {
952 compatible = "ti,abb-v3";
953 regulator-name = "abb_ivahd";
954 #address-cells = <0>;
955 #size-cells = <0>;
956 clocks = <&sys_clkin1>;
957 ti,settling-time = <50>;
958 ti,clock-cycles = <16>;
959
960 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500961 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530962 <0x4a002470 0x4>;
963 reg-names = "setup-address", "control-address",
964 "int-address", "efuse-address",
965 "ldo-address";
966 ti,tranxdone-status-mask = <0x40000000>;
967 /* LDOVBBIVA_FBB_MUX_CTRL */
968 ti,ldovbb-override-mask = <0x400>;
969 /* LDOVBBIVA_FBB_VSET_OUT */
970 ti,ldovbb-vset-mask = <0x1F>;
971
972 /*
973 * NOTE: only FBB mode used but actual vset will
974 * determine final biasing
975 */
976 ti,abb_info = <
977 /*uV ABB efuse rbb_m fbb_m vset_m*/
978 1055000 0 0x0 0 0x02000000 0x01F00000
979 1150000 0 0x4 0 0x02000000 0x01F00000
980 1250000 0 0x8 0 0x02000000 0x01F00000
981 >;
982 };
983
984 abb_dspeve: regulator-abb-dspeve {
985 compatible = "ti,abb-v3";
986 regulator-name = "abb_dspeve";
987 #address-cells = <0>;
988 #size-cells = <0>;
989 clocks = <&sys_clkin1>;
990 ti,settling-time = <50>;
991 ti,clock-cycles = <16>;
992
993 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500994 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530995 <0x4a00246c 0x4>;
996 reg-names = "setup-address", "control-address",
997 "int-address", "efuse-address",
998 "ldo-address";
999 ti,tranxdone-status-mask = <0x20000000>;
1000 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
1001 ti,ldovbb-override-mask = <0x400>;
1002 /* LDOVBBDSPEVE_FBB_VSET_OUT */
1003 ti,ldovbb-vset-mask = <0x1F>;
1004
1005 /*
1006 * NOTE: only FBB mode used but actual vset will
1007 * determine final biasing
1008 */
1009 ti,abb_info = <
1010 /*uV ABB efuse rbb_m fbb_m vset_m*/
1011 1055000 0 0x0 0 0x02000000 0x01F00000
1012 1150000 0 0x4 0 0x02000000 0x01F00000
1013 1250000 0 0x8 0 0x02000000 0x01F00000
1014 >;
1015 };
1016
1017 abb_gpu: regulator-abb-gpu {
1018 compatible = "ti,abb-v3";
1019 regulator-name = "abb_gpu";
1020 #address-cells = <0>;
1021 #size-cells = <0>;
1022 clocks = <&sys_clkin1>;
1023 ti,settling-time = <50>;
1024 ti,clock-cycles = <16>;
1025
1026 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001027 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301028 <0x4ae0c154 0x4>;
1029 reg-names = "setup-address", "control-address",
1030 "int-address", "efuse-address",
1031 "ldo-address";
1032 ti,tranxdone-status-mask = <0x10000000>;
1033 /* LDOVBBGPU_FBB_MUX_CTRL */
1034 ti,ldovbb-override-mask = <0x400>;
1035 /* LDOVBBGPU_FBB_VSET_OUT */
1036 ti,ldovbb-vset-mask = <0x1F>;
1037
1038 /*
1039 * NOTE: only FBB mode used but actual vset will
1040 * determine final biasing
1041 */
1042 ti,abb_info = <
1043 /*uV ABB efuse rbb_m fbb_m vset_m*/
1044 1090000 0 0x0 0 0x02000000 0x01F00000
1045 1210000 0 0x4 0 0x02000000 0x01F00000
1046 1280000 0 0x8 0 0x02000000 0x01F00000
1047 >;
1048 };
1049
R Sricharan6e58b8f2013-08-14 19:08:20 +05301050 mcspi1: spi@48098000 {
1051 compatible = "ti,omap4-mcspi";
1052 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301053 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301054 #address-cells = <1>;
1055 #size-cells = <0>;
1056 ti,hwmods = "mcspi1";
1057 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001058 dmas = <&sdma_xbar 35>,
1059 <&sdma_xbar 36>,
1060 <&sdma_xbar 37>,
1061 <&sdma_xbar 38>,
1062 <&sdma_xbar 39>,
1063 <&sdma_xbar 40>,
1064 <&sdma_xbar 41>,
1065 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301066 dma-names = "tx0", "rx0", "tx1", "rx1",
1067 "tx2", "rx2", "tx3", "rx3";
1068 status = "disabled";
1069 };
1070
1071 mcspi2: spi@4809a000 {
1072 compatible = "ti,omap4-mcspi";
1073 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301074 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301075 #address-cells = <1>;
1076 #size-cells = <0>;
1077 ti,hwmods = "mcspi2";
1078 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001079 dmas = <&sdma_xbar 43>,
1080 <&sdma_xbar 44>,
1081 <&sdma_xbar 45>,
1082 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301083 dma-names = "tx0", "rx0", "tx1", "rx1";
1084 status = "disabled";
1085 };
1086
1087 mcspi3: spi@480b8000 {
1088 compatible = "ti,omap4-mcspi";
1089 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301090 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301091 #address-cells = <1>;
1092 #size-cells = <0>;
1093 ti,hwmods = "mcspi3";
1094 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001095 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301096 dma-names = "tx0", "rx0";
1097 status = "disabled";
1098 };
1099
1100 mcspi4: spi@480ba000 {
1101 compatible = "ti,omap4-mcspi";
1102 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301103 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301104 #address-cells = <1>;
1105 #size-cells = <0>;
1106 ti,hwmods = "mcspi4";
1107 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001108 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301109 dma-names = "tx0", "rx0";
1110 status = "disabled";
1111 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301112
1113 qspi: qspi@4b300000 {
1114 compatible = "ti,dra7xxx-qspi";
1115 reg = <0x4b300000 0x100>;
1116 reg-names = "qspi_base";
1117 #address-cells = <1>;
1118 #size-cells = <0>;
1119 ti,hwmods = "qspi";
1120 clocks = <&qspi_gfclk_div>;
1121 clock-names = "fck";
1122 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301123 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301124 status = "disabled";
1125 };
Balaji T K7be80562014-05-07 14:58:58 +03001126
1127 omap_control_sata: control-phy@4a002374 {
1128 compatible = "ti,control-phy-pipe3";
1129 reg = <0x4a002374 0x4>;
1130 reg-names = "power";
1131 clocks = <&sys_clkin1>;
1132 clock-names = "sysclk";
1133 };
1134
1135 /* OCP2SCP3 */
1136 ocp2scp@4a090000 {
1137 compatible = "ti,omap-ocp2scp";
1138 #address-cells = <1>;
1139 #size-cells = <1>;
1140 ranges;
1141 reg = <0x4a090000 0x20>;
1142 ti,hwmods = "ocp2scp3";
1143 sata_phy: phy@4A096000 {
1144 compatible = "ti,phy-pipe3-sata";
1145 reg = <0x4A096000 0x80>, /* phy_rx */
1146 <0x4A096400 0x64>, /* phy_tx */
1147 <0x4A096800 0x40>; /* pll_ctrl */
1148 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1149 ctrl-module = <&omap_control_sata>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001150 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1151 clock-names = "sysclk", "refclk";
Balaji T K7be80562014-05-07 14:58:58 +03001152 #phy-cells = <0>;
1153 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301154
1155 pcie1_phy: pciephy@4a094000 {
1156 compatible = "ti,phy-pipe3-pcie";
1157 reg = <0x4a094000 0x80>, /* phy_rx */
1158 <0x4a094400 0x64>; /* phy_tx */
1159 reg-names = "phy_rx", "phy_tx";
1160 ctrl-module = <&omap_control_pcie1phy>;
1161 clocks = <&dpll_pcie_ref_ck>,
1162 <&dpll_pcie_ref_m2ldo_ck>,
1163 <&optfclk_pciephy1_32khz>,
1164 <&optfclk_pciephy1_clk>,
1165 <&optfclk_pciephy1_div_clk>,
1166 <&optfclk_pciephy_div>;
1167 clock-names = "dpll_ref", "dpll_ref_m2",
1168 "wkupclk", "refclk",
1169 "div-clk", "phy-div";
1170 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301171 };
1172
1173 pcie2_phy: pciephy@4a095000 {
1174 compatible = "ti,phy-pipe3-pcie";
1175 reg = <0x4a095000 0x80>, /* phy_rx */
1176 <0x4a095400 0x64>; /* phy_tx */
1177 reg-names = "phy_rx", "phy_tx";
1178 ctrl-module = <&omap_control_pcie2phy>;
1179 clocks = <&dpll_pcie_ref_ck>,
1180 <&dpll_pcie_ref_m2ldo_ck>,
1181 <&optfclk_pciephy2_32khz>,
1182 <&optfclk_pciephy2_clk>,
1183 <&optfclk_pciephy2_div_clk>,
1184 <&optfclk_pciephy_div>;
1185 clock-names = "dpll_ref", "dpll_ref_m2",
1186 "wkupclk", "refclk",
1187 "div-clk", "phy-div";
1188 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301189 status = "disabled";
1190 };
Balaji T K7be80562014-05-07 14:58:58 +03001191 };
1192
1193 sata: sata@4a141100 {
1194 compatible = "snps,dwc-ahci";
1195 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301196 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001197 phys = <&sata_phy>;
1198 phy-names = "sata-phy";
1199 clocks = <&sata_ref_clk>;
1200 ti,hwmods = "sata";
1201 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001202
Kishon Vijay Abraham Id1ff66b2014-07-14 16:12:21 +05301203 omap_control_pcie1phy: control-phy@0x4a003c40 {
1204 compatible = "ti,control-phy-pcie";
1205 reg = <0x4a003c40 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1206 reg-names = "power", "control_sma", "pcie_pcs";
1207 clocks = <&sys_clkin1>;
1208 clock-names = "sysclk";
1209 };
1210
1211 omap_control_pcie2phy: control-pcie@0x4a003c44 {
1212 compatible = "ti,control-phy-pcie";
1213 reg = <0x4a003c44 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1214 reg-names = "power", "control_sma", "pcie_pcs";
1215 clocks = <&sys_clkin1>;
1216 clock-names = "sysclk";
1217 status = "disabled";
1218 };
1219
Nishanth Menon00edd312015-04-08 18:56:27 -05001220 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301221 compatible = "ti,am3352-rtc";
1222 reg = <0x48838000 0x100>;
1223 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1224 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1225 ti,hwmods = "rtcss";
1226 clocks = <&sys_32k_ck>;
1227 };
1228
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001229 omap_control_usb2phy1: control-phy@4a002300 {
1230 compatible = "ti,control-phy-usb2";
1231 reg = <0x4a002300 0x4>;
1232 reg-names = "power";
1233 };
1234
1235 omap_control_usb3phy1: control-phy@4a002370 {
1236 compatible = "ti,control-phy-pipe3";
1237 reg = <0x4a002370 0x4>;
1238 reg-names = "power";
1239 };
1240
1241 omap_control_usb2phy2: control-phy@0x4a002e74 {
1242 compatible = "ti,control-phy-usb2-dra7";
1243 reg = <0x4a002e74 0x4>;
1244 reg-names = "power";
1245 };
1246
1247 /* OCP2SCP1 */
1248 ocp2scp@4a080000 {
1249 compatible = "ti,omap-ocp2scp";
1250 #address-cells = <1>;
1251 #size-cells = <1>;
1252 ranges;
1253 reg = <0x4a080000 0x20>;
1254 ti,hwmods = "ocp2scp1";
1255
1256 usb2_phy1: phy@4a084000 {
1257 compatible = "ti,omap-usb2";
1258 reg = <0x4a084000 0x400>;
1259 ctrl-module = <&omap_control_usb2phy1>;
1260 clocks = <&usb_phy1_always_on_clk32k>,
1261 <&usb_otg_ss1_refclk960m>;
1262 clock-names = "wkupclk",
1263 "refclk";
1264 #phy-cells = <0>;
1265 };
1266
1267 usb2_phy2: phy@4a085000 {
1268 compatible = "ti,omap-usb2";
1269 reg = <0x4a085000 0x400>;
1270 ctrl-module = <&omap_control_usb2phy2>;
1271 clocks = <&usb_phy2_always_on_clk32k>,
1272 <&usb_otg_ss2_refclk960m>;
1273 clock-names = "wkupclk",
1274 "refclk";
1275 #phy-cells = <0>;
1276 };
1277
1278 usb3_phy1: phy@4a084400 {
1279 compatible = "ti,omap-usb3";
1280 reg = <0x4a084400 0x80>,
1281 <0x4a084800 0x64>,
1282 <0x4a084c00 0x40>;
1283 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1284 ctrl-module = <&omap_control_usb3phy1>;
1285 clocks = <&usb_phy3_always_on_clk32k>,
1286 <&sys_clkin1>,
1287 <&usb_otg_ss1_refclk960m>;
1288 clock-names = "wkupclk",
1289 "sysclk",
1290 "refclk";
1291 #phy-cells = <0>;
1292 };
1293 };
1294
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001295 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001296 compatible = "ti,dwc3";
1297 ti,hwmods = "usb_otg_ss1";
1298 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301299 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001300 #address-cells = <1>;
1301 #size-cells = <1>;
1302 utmi-mode = <2>;
1303 ranges;
1304 usb1: usb@48890000 {
1305 compatible = "snps,dwc3";
1306 reg = <0x48890000 0x17000>;
R Sricharana46631c2014-06-26 12:55:31 +05301307 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001308 phys = <&usb2_phy1>, <&usb3_phy1>;
1309 phy-names = "usb2-phy", "usb3-phy";
1310 tx-fifo-resize;
1311 maximum-speed = "super-speed";
1312 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001313 snps,dis_u3_susphy_quirk;
1314 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001315 };
1316 };
1317
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001318 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001319 compatible = "ti,dwc3";
1320 ti,hwmods = "usb_otg_ss2";
1321 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301322 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001323 #address-cells = <1>;
1324 #size-cells = <1>;
1325 utmi-mode = <2>;
1326 ranges;
1327 usb2: usb@488d0000 {
1328 compatible = "snps,dwc3";
1329 reg = <0x488d0000 0x17000>;
R Sricharana46631c2014-06-26 12:55:31 +05301330 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001331 phys = <&usb2_phy2>;
1332 phy-names = "usb2-phy";
1333 tx-fifo-resize;
1334 maximum-speed = "high-speed";
1335 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001336 snps,dis_u3_susphy_quirk;
1337 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001338 };
1339 };
1340
1341 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001342 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001343 compatible = "ti,dwc3";
1344 ti,hwmods = "usb_otg_ss3";
1345 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301346 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001347 #address-cells = <1>;
1348 #size-cells = <1>;
1349 utmi-mode = <2>;
1350 ranges;
1351 status = "disabled";
1352 usb3: usb@48910000 {
1353 compatible = "snps,dwc3";
1354 reg = <0x48910000 0x17000>;
R Sricharana46631c2014-06-26 12:55:31 +05301355 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001356 tx-fifo-resize;
1357 maximum-speed = "high-speed";
1358 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001359 snps,dis_u3_susphy_quirk;
1360 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001361 };
1362 };
1363
Minal Shahff66a3c2014-05-19 14:45:47 +05301364 elm: elm@48078000 {
1365 compatible = "ti,am3352-elm";
1366 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301367 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301368 ti,hwmods = "elm";
1369 status = "disabled";
1370 };
1371
1372 gpmc: gpmc@50000000 {
1373 compatible = "ti,am3352-gpmc";
1374 ti,hwmods = "gpmc";
1375 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301376 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301377 gpmc,num-cs = <8>;
1378 gpmc,num-waitpins = <2>;
1379 #address-cells = <2>;
1380 #size-cells = <1>;
1381 status = "disabled";
1382 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001383
1384 atl: atl@4843c000 {
1385 compatible = "ti,dra7-atl";
1386 reg = <0x4843c000 0x3ff>;
1387 ti,hwmods = "atl";
1388 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1389 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1390 clocks = <&atl_gfclk_mux>;
1391 clock-names = "fck";
1392 status = "disabled";
1393 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001394
Marc Zyngier783d3182015-03-11 15:43:44 +00001395 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301396 compatible = "ti,irq-crossbar";
1397 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001398 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001399 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001400 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301401 ti,max-irqs = <160>;
1402 ti,max-crossbar-sources = <MAX_SOURCES>;
1403 ti,reg-size = <2>;
1404 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1405 ti,irqs-skip = <10 133 139 140>;
1406 ti,irqs-safe-map = <0>;
1407 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301408
1409 mac: ethernet@4a100000 {
1410 compatible = "ti,cpsw";
1411 ti,hwmods = "gmac";
1412 clocks = <&dpll_gmac_ck>, <&gmac_gmii_ref_clk_div>;
1413 clock-names = "fck", "cpts";
1414 cpdma_channels = <8>;
1415 ale_entries = <1024>;
1416 bd_ram_size = <0x2000>;
1417 no_bd_ram = <0>;
1418 rx_descs = <64>;
1419 mac_control = <0x20>;
1420 slaves = <2>;
1421 active_slave = <0>;
1422 cpts_clock_mult = <0x80000000>;
1423 cpts_clock_shift = <29>;
1424 reg = <0x48484000 0x1000
1425 0x48485200 0x2E00>;
1426 #address-cells = <1>;
1427 #size-cells = <1>;
1428 /*
1429 * rx_thresh_pend
1430 * rx_pend
1431 * tx_pend
1432 * misc_pend
1433 */
1434 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1435 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1436 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1437 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1438 ranges;
1439 status = "disabled";
1440
1441 davinci_mdio: mdio@48485000 {
1442 compatible = "ti,davinci_mdio";
1443 #address-cells = <1>;
1444 #size-cells = <0>;
1445 ti,hwmods = "davinci_mdio";
1446 bus_freq = <1000000>;
1447 reg = <0x48485000 0x100>;
1448 };
1449
1450 cpsw_emac0: slave@48480200 {
1451 /* Filled in by U-Boot */
1452 mac-address = [ 00 00 00 00 00 00 ];
1453 };
1454
1455 cpsw_emac1: slave@48480300 {
1456 /* Filled in by U-Boot */
1457 mac-address = [ 00 00 00 00 00 00 ];
1458 };
1459
1460 phy_sel: cpsw-phy-sel@4a002554 {
1461 compatible = "ti,dra7xx-cpsw-phy-sel";
1462 reg= <0x4a002554 0x4>;
1463 reg-names = "gmii-sel";
1464 };
1465 };
1466
Roger Quadros9ec49b92014-08-15 16:08:36 +03001467 dcan1: can@481cc000 {
1468 compatible = "ti,dra7-d_can";
1469 ti,hwmods = "dcan1";
1470 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001471 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001472 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1473 clocks = <&dcan1_sys_clk_mux>;
1474 status = "disabled";
1475 };
1476
1477 dcan2: can@481d0000 {
1478 compatible = "ti,dra7-d_can";
1479 ti,hwmods = "dcan2";
1480 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001481 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001482 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1483 clocks = <&sys_clkin1>;
1484 status = "disabled";
1485 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301486
1487 dss: dss@58000000 {
1488 compatible = "ti,dra7-dss";
1489 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1490 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1491 status = "disabled";
1492 ti,hwmods = "dss_core";
1493 /* CTRL_CORE_DSS_PLL_CONTROL */
1494 syscon-pll-ctrl = <&scm_conf 0x538>;
1495 #address-cells = <1>;
1496 #size-cells = <1>;
1497 ranges;
1498
1499 dispc@58001000 {
1500 compatible = "ti,dra7-dispc";
1501 reg = <0x58001000 0x1000>;
1502 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1503 ti,hwmods = "dss_dispc";
1504 clocks = <&dss_dss_clk>;
1505 clock-names = "fck";
1506 /* CTRL_CORE_SMA_SW_1 */
1507 syscon-pol = <&scm_conf 0x534>;
1508 };
1509
1510 hdmi: encoder@58060000 {
1511 compatible = "ti,dra7-hdmi";
1512 reg = <0x58040000 0x200>,
1513 <0x58040200 0x80>,
1514 <0x58040300 0x80>,
1515 <0x58060000 0x19000>;
1516 reg-names = "wp", "pll", "phy", "core";
1517 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1518 status = "disabled";
1519 ti,hwmods = "dss_hdmi";
1520 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1521 clock-names = "fck", "sys_clk";
1522 };
1523 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301524 };
Keerthyf7397ed2015-03-23 14:39:38 -05001525
1526 thermal_zones: thermal-zones {
1527 #include "omap4-cpu-thermal.dtsi"
1528 #include "omap5-gpu-thermal.dtsi"
1529 #include "omap5-core-thermal.dtsi"
1530 };
1531
1532};
1533
1534&cpu_thermal {
1535 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301536};
Tero Kristoee6c7502013-07-18 17:18:33 +03001537
1538/include/ "dra7xx-clocks.dtsi"