blob: 4752337d8236c9527eee1a2ae82f31e101058185 [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";
Roger Quadros1c5cb6f2015-07-27 13:27:29 +0300144 reg = <0x1400 0x0468>;
Tero Kristod9195012015-02-12 11:37:13 +0200145 #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 };
Roger Quadros33cb3a12015-08-04 12:10:14 +0300152
153 scm_conf1: scm_conf@1c04 {
154 compatible = "syscon";
155 reg = <0x1c04 0x0020>;
156 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300157 };
158
Tero Kristod9195012015-02-12 11:37:13 +0200159 cm_core_aon: cm_core_aon@5000 {
160 compatible = "ti,dra7-cm-core-aon";
161 reg = <0x5000 0x2000>;
162
163 cm_core_aon_clocks: clocks {
164 #address-cells = <1>;
165 #size-cells = <0>;
166 };
167
168 cm_core_aon_clockdomains: clockdomains {
169 };
170 };
171
172 cm_core: cm_core@8000 {
173 compatible = "ti,dra7-cm-core";
174 reg = <0x8000 0x3000>;
175
176 cm_core_clocks: clocks {
177 #address-cells = <1>;
178 #size-cells = <0>;
179 };
180
181 cm_core_clockdomains: clockdomains {
182 };
183 };
184 };
185
186 l4_wkup: l4@4ae00000 {
187 compatible = "ti,dra7-l4-wkup", "simple-bus";
188 #address-cells = <1>;
189 #size-cells = <1>;
190 ranges = <0 0x4ae00000 0x3f000>;
191
192 counter32k: counter@4000 {
193 compatible = "ti,omap-counter32k";
194 reg = <0x4000 0x40>;
195 ti,hwmods = "counter_32k";
196 };
197
198 prm: prm@6000 {
199 compatible = "ti,dra7-prm";
200 reg = <0x6000 0x3000>;
201 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
202
203 prm_clocks: clocks {
204 #address-cells = <1>;
205 #size-cells = <0>;
206 };
207
208 prm_clockdomains: clockdomains {
209 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300210 };
211 };
212
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530213 axi@0 {
214 compatible = "simple-bus";
215 #size-cells = <1>;
216 #address-cells = <1>;
217 ranges = <0x51000000 0x51000000 0x3000
218 0x0 0x20000000 0x10000000>;
219 pcie@51000000 {
220 compatible = "ti,dra7-pcie";
221 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
222 reg-names = "rc_dbics", "ti_conf", "config";
223 interrupts = <0 232 0x4>, <0 233 0x4>;
224 #address-cells = <3>;
225 #size-cells = <2>;
226 device_type = "pci";
227 ranges = <0x81000000 0 0 0x03000 0 0x00010000
228 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
229 #interrupt-cells = <1>;
230 num-lanes = <1>;
231 ti,hwmods = "pcie1";
232 phys = <&pcie1_phy>;
233 phy-names = "pcie-phy0";
234 interrupt-map-mask = <0 0 0 7>;
235 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
236 <0 0 0 2 &pcie1_intc 2>,
237 <0 0 0 3 &pcie1_intc 3>,
238 <0 0 0 4 &pcie1_intc 4>;
239 pcie1_intc: interrupt-controller {
240 interrupt-controller;
241 #address-cells = <0>;
242 #interrupt-cells = <1>;
243 };
244 };
245 };
246
247 axi@1 {
248 compatible = "simple-bus";
249 #size-cells = <1>;
250 #address-cells = <1>;
251 ranges = <0x51800000 0x51800000 0x3000
252 0x0 0x30000000 0x10000000>;
253 status = "disabled";
254 pcie@51000000 {
255 compatible = "ti,dra7-pcie";
256 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
257 reg-names = "rc_dbics", "ti_conf", "config";
258 interrupts = <0 355 0x4>, <0 356 0x4>;
259 #address-cells = <3>;
260 #size-cells = <2>;
261 device_type = "pci";
262 ranges = <0x81000000 0 0 0x03000 0 0x00010000
263 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
264 #interrupt-cells = <1>;
265 num-lanes = <1>;
266 ti,hwmods = "pcie2";
267 phys = <&pcie2_phy>;
268 phy-names = "pcie-phy0";
269 interrupt-map-mask = <0 0 0 7>;
270 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
271 <0 0 0 2 &pcie2_intc 2>,
272 <0 0 0 3 &pcie2_intc 3>,
273 <0 0 0 4 &pcie2_intc 4>;
274 pcie2_intc: interrupt-controller {
275 interrupt-controller;
276 #address-cells = <0>;
277 #interrupt-cells = <1>;
278 };
279 };
280 };
281
Keerthyf7397ed2015-03-23 14:39:38 -0500282 bandgap: bandgap@4a0021e0 {
283 reg = <0x4a0021e0 0xc
284 0x4a00232c 0xc
285 0x4a002380 0x2c
286 0x4a0023C0 0x3c
287 0x4a002564 0x8
288 0x4a002574 0x50>;
289 compatible = "ti,dra752-bandgap";
290 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
291 #thermal-sensor-cells = <1>;
292 };
293
R Sricharan6e58b8f2013-08-14 19:08:20 +0530294 sdma: dma-controller@4a056000 {
295 compatible = "ti,omap4430-sdma";
296 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530297 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
298 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
299 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
300 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530301 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200302 dma-channels = <32>;
303 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530304 };
305
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300306 sdma_xbar: dma-router@4a002b78 {
307 compatible = "ti,dra7-dma-crossbar";
308 reg = <0x4a002b78 0xfc>;
309 #dma-cells = <1>;
310 dma-requests = <205>;
311 ti,dma-safe-map = <0>;
312 dma-masters = <&sdma>;
313 };
314
R Sricharan6e58b8f2013-08-14 19:08:20 +0530315 gpio1: gpio@4ae10000 {
316 compatible = "ti,omap4-gpio";
317 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530318 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530319 ti,hwmods = "gpio1";
320 gpio-controller;
321 #gpio-cells = <2>;
322 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700323 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530324 };
325
326 gpio2: gpio@48055000 {
327 compatible = "ti,omap4-gpio";
328 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530329 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530330 ti,hwmods = "gpio2";
331 gpio-controller;
332 #gpio-cells = <2>;
333 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700334 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530335 };
336
337 gpio3: gpio@48057000 {
338 compatible = "ti,omap4-gpio";
339 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530340 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530341 ti,hwmods = "gpio3";
342 gpio-controller;
343 #gpio-cells = <2>;
344 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700345 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530346 };
347
348 gpio4: gpio@48059000 {
349 compatible = "ti,omap4-gpio";
350 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530351 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530352 ti,hwmods = "gpio4";
353 gpio-controller;
354 #gpio-cells = <2>;
355 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700356 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530357 };
358
359 gpio5: gpio@4805b000 {
360 compatible = "ti,omap4-gpio";
361 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530362 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530363 ti,hwmods = "gpio5";
364 gpio-controller;
365 #gpio-cells = <2>;
366 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700367 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530368 };
369
370 gpio6: gpio@4805d000 {
371 compatible = "ti,omap4-gpio";
372 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530373 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530374 ti,hwmods = "gpio6";
375 gpio-controller;
376 #gpio-cells = <2>;
377 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700378 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530379 };
380
381 gpio7: gpio@48051000 {
382 compatible = "ti,omap4-gpio";
383 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530384 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530385 ti,hwmods = "gpio7";
386 gpio-controller;
387 #gpio-cells = <2>;
388 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700389 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530390 };
391
392 gpio8: gpio@48053000 {
393 compatible = "ti,omap4-gpio";
394 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530395 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530396 ti,hwmods = "gpio8";
397 gpio-controller;
398 #gpio-cells = <2>;
399 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700400 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530401 };
402
403 uart1: serial@4806a000 {
404 compatible = "ti,omap4-uart";
405 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000406 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530407 ti,hwmods = "uart1";
408 clock-frequency = <48000000>;
409 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300410 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200411 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530412 };
413
414 uart2: serial@4806c000 {
415 compatible = "ti,omap4-uart";
416 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000417 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530418 ti,hwmods = "uart2";
419 clock-frequency = <48000000>;
420 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300421 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200422 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530423 };
424
425 uart3: serial@48020000 {
426 compatible = "ti,omap4-uart";
427 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000428 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530429 ti,hwmods = "uart3";
430 clock-frequency = <48000000>;
431 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300432 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200433 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530434 };
435
436 uart4: serial@4806e000 {
437 compatible = "ti,omap4-uart";
438 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000439 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530440 ti,hwmods = "uart4";
441 clock-frequency = <48000000>;
442 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300443 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200444 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530445 };
446
447 uart5: serial@48066000 {
448 compatible = "ti,omap4-uart";
449 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000450 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530451 ti,hwmods = "uart5";
452 clock-frequency = <48000000>;
453 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300454 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200455 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530456 };
457
458 uart6: serial@48068000 {
459 compatible = "ti,omap4-uart";
460 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000461 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530462 ti,hwmods = "uart6";
463 clock-frequency = <48000000>;
464 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300465 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200466 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530467 };
468
469 uart7: serial@48420000 {
470 compatible = "ti,omap4-uart";
471 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000472 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530473 ti,hwmods = "uart7";
474 clock-frequency = <48000000>;
475 status = "disabled";
476 };
477
478 uart8: serial@48422000 {
479 compatible = "ti,omap4-uart";
480 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000481 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530482 ti,hwmods = "uart8";
483 clock-frequency = <48000000>;
484 status = "disabled";
485 };
486
487 uart9: serial@48424000 {
488 compatible = "ti,omap4-uart";
489 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000490 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530491 ti,hwmods = "uart9";
492 clock-frequency = <48000000>;
493 status = "disabled";
494 };
495
496 uart10: serial@4ae2b000 {
497 compatible = "ti,omap4-uart";
498 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000499 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530500 ti,hwmods = "uart10";
501 clock-frequency = <48000000>;
502 status = "disabled";
503 };
504
Suman Anna38baefb2014-07-11 16:44:38 -0500505 mailbox1: mailbox@4a0f4000 {
506 compatible = "ti,omap4-mailbox";
507 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600508 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
509 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
510 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500511 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600512 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500513 ti,mbox-num-users = <3>;
514 ti,mbox-num-fifos = <8>;
515 status = "disabled";
516 };
517
518 mailbox2: mailbox@4883a000 {
519 compatible = "ti,omap4-mailbox";
520 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600521 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
522 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
523 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
524 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500525 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600526 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500527 ti,mbox-num-users = <4>;
528 ti,mbox-num-fifos = <12>;
529 status = "disabled";
530 };
531
532 mailbox3: mailbox@4883c000 {
533 compatible = "ti,omap4-mailbox";
534 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600535 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
536 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
537 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
538 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500539 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600540 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500541 ti,mbox-num-users = <4>;
542 ti,mbox-num-fifos = <12>;
543 status = "disabled";
544 };
545
546 mailbox4: mailbox@4883e000 {
547 compatible = "ti,omap4-mailbox";
548 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600549 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
550 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
551 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
552 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500553 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600554 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500555 ti,mbox-num-users = <4>;
556 ti,mbox-num-fifos = <12>;
557 status = "disabled";
558 };
559
560 mailbox5: mailbox@48840000 {
561 compatible = "ti,omap4-mailbox";
562 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600563 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
564 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
565 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
566 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500567 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600568 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500569 ti,mbox-num-users = <4>;
570 ti,mbox-num-fifos = <12>;
571 status = "disabled";
572 };
573
574 mailbox6: mailbox@48842000 {
575 compatible = "ti,omap4-mailbox";
576 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600577 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
578 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
579 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
580 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500581 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600582 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500583 ti,mbox-num-users = <4>;
584 ti,mbox-num-fifos = <12>;
585 status = "disabled";
586 };
587
588 mailbox7: mailbox@48844000 {
589 compatible = "ti,omap4-mailbox";
590 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600591 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
592 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
593 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
594 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500595 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600596 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500597 ti,mbox-num-users = <4>;
598 ti,mbox-num-fifos = <12>;
599 status = "disabled";
600 };
601
602 mailbox8: mailbox@48846000 {
603 compatible = "ti,omap4-mailbox";
604 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600605 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
606 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
607 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
608 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500609 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600610 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500611 ti,mbox-num-users = <4>;
612 ti,mbox-num-fifos = <12>;
613 status = "disabled";
614 };
615
616 mailbox9: mailbox@4885e000 {
617 compatible = "ti,omap4-mailbox";
618 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600619 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
620 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
621 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
622 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500623 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600624 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500625 ti,mbox-num-users = <4>;
626 ti,mbox-num-fifos = <12>;
627 status = "disabled";
628 };
629
630 mailbox10: mailbox@48860000 {
631 compatible = "ti,omap4-mailbox";
632 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600633 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
634 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
635 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
636 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500637 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600638 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500639 ti,mbox-num-users = <4>;
640 ti,mbox-num-fifos = <12>;
641 status = "disabled";
642 };
643
644 mailbox11: mailbox@48862000 {
645 compatible = "ti,omap4-mailbox";
646 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600647 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
648 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
649 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
650 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500651 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600652 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500653 ti,mbox-num-users = <4>;
654 ti,mbox-num-fifos = <12>;
655 status = "disabled";
656 };
657
658 mailbox12: mailbox@48864000 {
659 compatible = "ti,omap4-mailbox";
660 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600661 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
662 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
663 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
664 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500665 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600666 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500667 ti,mbox-num-users = <4>;
668 ti,mbox-num-fifos = <12>;
669 status = "disabled";
670 };
671
672 mailbox13: mailbox@48802000 {
673 compatible = "ti,omap4-mailbox";
674 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600675 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
676 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
677 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
678 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500679 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600680 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500681 ti,mbox-num-users = <4>;
682 ti,mbox-num-fifos = <12>;
683 status = "disabled";
684 };
685
R Sricharan6e58b8f2013-08-14 19:08:20 +0530686 timer1: timer@4ae18000 {
687 compatible = "ti,omap5430-timer";
688 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530689 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530690 ti,hwmods = "timer1";
691 ti,timer-alwon;
692 };
693
694 timer2: timer@48032000 {
695 compatible = "ti,omap5430-timer";
696 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530697 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530698 ti,hwmods = "timer2";
699 };
700
701 timer3: timer@48034000 {
702 compatible = "ti,omap5430-timer";
703 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530704 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530705 ti,hwmods = "timer3";
706 };
707
708 timer4: timer@48036000 {
709 compatible = "ti,omap5430-timer";
710 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530711 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530712 ti,hwmods = "timer4";
713 };
714
715 timer5: timer@48820000 {
716 compatible = "ti,omap5430-timer";
717 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530718 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530719 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530720 };
721
722 timer6: timer@48822000 {
723 compatible = "ti,omap5430-timer";
724 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530725 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530726 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530727 };
728
729 timer7: timer@48824000 {
730 compatible = "ti,omap5430-timer";
731 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530732 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530733 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530734 };
735
736 timer8: timer@48826000 {
737 compatible = "ti,omap5430-timer";
738 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530739 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530740 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530741 };
742
743 timer9: timer@4803e000 {
744 compatible = "ti,omap5430-timer";
745 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530746 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530747 ti,hwmods = "timer9";
748 };
749
750 timer10: timer@48086000 {
751 compatible = "ti,omap5430-timer";
752 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530753 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530754 ti,hwmods = "timer10";
755 };
756
757 timer11: timer@48088000 {
758 compatible = "ti,omap5430-timer";
759 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530760 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530761 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530762 };
763
764 timer13: timer@48828000 {
765 compatible = "ti,omap5430-timer";
766 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530767 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530768 ti,hwmods = "timer13";
769 status = "disabled";
770 };
771
772 timer14: timer@4882a000 {
773 compatible = "ti,omap5430-timer";
774 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530775 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530776 ti,hwmods = "timer14";
777 status = "disabled";
778 };
779
780 timer15: timer@4882c000 {
781 compatible = "ti,omap5430-timer";
782 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530783 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530784 ti,hwmods = "timer15";
785 status = "disabled";
786 };
787
788 timer16: timer@4882e000 {
789 compatible = "ti,omap5430-timer";
790 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530791 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530792 ti,hwmods = "timer16";
793 status = "disabled";
794 };
795
796 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530797 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530798 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530799 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530800 ti,hwmods = "wd_timer2";
801 };
802
Suman Annadbd7c192014-01-13 18:26:46 -0600803 hwspinlock: spinlock@4a0f6000 {
804 compatible = "ti,omap4-hwspinlock";
805 reg = <0x4a0f6000 0x1000>;
806 ti,hwmods = "spinlock";
807 #hwlock-cells = <1>;
808 };
809
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530810 dmm@4e000000 {
811 compatible = "ti,omap5-dmm";
812 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530813 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530814 ti,hwmods = "dmm";
815 };
816
R Sricharan6e58b8f2013-08-14 19:08:20 +0530817 i2c1: i2c@48070000 {
818 compatible = "ti,omap4-i2c";
819 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530820 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530821 #address-cells = <1>;
822 #size-cells = <0>;
823 ti,hwmods = "i2c1";
824 status = "disabled";
825 };
826
827 i2c2: i2c@48072000 {
828 compatible = "ti,omap4-i2c";
829 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530830 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530831 #address-cells = <1>;
832 #size-cells = <0>;
833 ti,hwmods = "i2c2";
834 status = "disabled";
835 };
836
837 i2c3: i2c@48060000 {
838 compatible = "ti,omap4-i2c";
839 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530840 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530841 #address-cells = <1>;
842 #size-cells = <0>;
843 ti,hwmods = "i2c3";
844 status = "disabled";
845 };
846
847 i2c4: i2c@4807a000 {
848 compatible = "ti,omap4-i2c";
849 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530850 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530851 #address-cells = <1>;
852 #size-cells = <0>;
853 ti,hwmods = "i2c4";
854 status = "disabled";
855 };
856
857 i2c5: i2c@4807c000 {
858 compatible = "ti,omap4-i2c";
859 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530860 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530861 #address-cells = <1>;
862 #size-cells = <0>;
863 ti,hwmods = "i2c5";
864 status = "disabled";
865 };
866
867 mmc1: mmc@4809c000 {
868 compatible = "ti,omap4-hsmmc";
869 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530870 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530871 ti,hwmods = "mmc1";
872 ti,dual-volt;
873 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300874 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530875 dma-names = "tx", "rx";
876 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530877 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530878 };
879
880 mmc2: mmc@480b4000 {
881 compatible = "ti,omap4-hsmmc";
882 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530883 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530884 ti,hwmods = "mmc2";
885 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300886 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530887 dma-names = "tx", "rx";
888 status = "disabled";
889 };
890
891 mmc3: mmc@480ad000 {
892 compatible = "ti,omap4-hsmmc";
893 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530894 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530895 ti,hwmods = "mmc3";
896 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300897 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530898 dma-names = "tx", "rx";
899 status = "disabled";
900 };
901
902 mmc4: mmc@480d1000 {
903 compatible = "ti,omap4-hsmmc";
904 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530905 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530906 ti,hwmods = "mmc4";
907 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300908 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530909 dma-names = "tx", "rx";
910 status = "disabled";
911 };
912
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530913 abb_mpu: regulator-abb-mpu {
914 compatible = "ti,abb-v3";
915 regulator-name = "abb_mpu";
916 #address-cells = <0>;
917 #size-cells = <0>;
918 clocks = <&sys_clkin1>;
919 ti,settling-time = <50>;
920 ti,clock-cycles = <16>;
921
922 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500923 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530924 <0x4ae0c158 0x4>;
925 reg-names = "setup-address", "control-address",
926 "int-address", "efuse-address",
927 "ldo-address";
928 ti,tranxdone-status-mask = <0x80>;
929 /* LDOVBBMPU_FBB_MUX_CTRL */
930 ti,ldovbb-override-mask = <0x400>;
931 /* LDOVBBMPU_FBB_VSET_OUT */
932 ti,ldovbb-vset-mask = <0x1F>;
933
934 /*
935 * NOTE: only FBB mode used but actual vset will
936 * determine final biasing
937 */
938 ti,abb_info = <
939 /*uV ABB efuse rbb_m fbb_m vset_m*/
940 1060000 0 0x0 0 0x02000000 0x01F00000
941 1160000 0 0x4 0 0x02000000 0x01F00000
942 1210000 0 0x8 0 0x02000000 0x01F00000
943 >;
944 };
945
946 abb_ivahd: regulator-abb-ivahd {
947 compatible = "ti,abb-v3";
948 regulator-name = "abb_ivahd";
949 #address-cells = <0>;
950 #size-cells = <0>;
951 clocks = <&sys_clkin1>;
952 ti,settling-time = <50>;
953 ti,clock-cycles = <16>;
954
955 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500956 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530957 <0x4a002470 0x4>;
958 reg-names = "setup-address", "control-address",
959 "int-address", "efuse-address",
960 "ldo-address";
961 ti,tranxdone-status-mask = <0x40000000>;
962 /* LDOVBBIVA_FBB_MUX_CTRL */
963 ti,ldovbb-override-mask = <0x400>;
964 /* LDOVBBIVA_FBB_VSET_OUT */
965 ti,ldovbb-vset-mask = <0x1F>;
966
967 /*
968 * NOTE: only FBB mode used but actual vset will
969 * determine final biasing
970 */
971 ti,abb_info = <
972 /*uV ABB efuse rbb_m fbb_m vset_m*/
973 1055000 0 0x0 0 0x02000000 0x01F00000
974 1150000 0 0x4 0 0x02000000 0x01F00000
975 1250000 0 0x8 0 0x02000000 0x01F00000
976 >;
977 };
978
979 abb_dspeve: regulator-abb-dspeve {
980 compatible = "ti,abb-v3";
981 regulator-name = "abb_dspeve";
982 #address-cells = <0>;
983 #size-cells = <0>;
984 clocks = <&sys_clkin1>;
985 ti,settling-time = <50>;
986 ti,clock-cycles = <16>;
987
988 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500989 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530990 <0x4a00246c 0x4>;
991 reg-names = "setup-address", "control-address",
992 "int-address", "efuse-address",
993 "ldo-address";
994 ti,tranxdone-status-mask = <0x20000000>;
995 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
996 ti,ldovbb-override-mask = <0x400>;
997 /* LDOVBBDSPEVE_FBB_VSET_OUT */
998 ti,ldovbb-vset-mask = <0x1F>;
999
1000 /*
1001 * NOTE: only FBB mode used but actual vset will
1002 * determine final biasing
1003 */
1004 ti,abb_info = <
1005 /*uV ABB efuse rbb_m fbb_m vset_m*/
1006 1055000 0 0x0 0 0x02000000 0x01F00000
1007 1150000 0 0x4 0 0x02000000 0x01F00000
1008 1250000 0 0x8 0 0x02000000 0x01F00000
1009 >;
1010 };
1011
1012 abb_gpu: regulator-abb-gpu {
1013 compatible = "ti,abb-v3";
1014 regulator-name = "abb_gpu";
1015 #address-cells = <0>;
1016 #size-cells = <0>;
1017 clocks = <&sys_clkin1>;
1018 ti,settling-time = <50>;
1019 ti,clock-cycles = <16>;
1020
1021 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001022 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301023 <0x4ae0c154 0x4>;
1024 reg-names = "setup-address", "control-address",
1025 "int-address", "efuse-address",
1026 "ldo-address";
1027 ti,tranxdone-status-mask = <0x10000000>;
1028 /* LDOVBBGPU_FBB_MUX_CTRL */
1029 ti,ldovbb-override-mask = <0x400>;
1030 /* LDOVBBGPU_FBB_VSET_OUT */
1031 ti,ldovbb-vset-mask = <0x1F>;
1032
1033 /*
1034 * NOTE: only FBB mode used but actual vset will
1035 * determine final biasing
1036 */
1037 ti,abb_info = <
1038 /*uV ABB efuse rbb_m fbb_m vset_m*/
1039 1090000 0 0x0 0 0x02000000 0x01F00000
1040 1210000 0 0x4 0 0x02000000 0x01F00000
1041 1280000 0 0x8 0 0x02000000 0x01F00000
1042 >;
1043 };
1044
R Sricharan6e58b8f2013-08-14 19:08:20 +05301045 mcspi1: spi@48098000 {
1046 compatible = "ti,omap4-mcspi";
1047 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301048 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301049 #address-cells = <1>;
1050 #size-cells = <0>;
1051 ti,hwmods = "mcspi1";
1052 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001053 dmas = <&sdma_xbar 35>,
1054 <&sdma_xbar 36>,
1055 <&sdma_xbar 37>,
1056 <&sdma_xbar 38>,
1057 <&sdma_xbar 39>,
1058 <&sdma_xbar 40>,
1059 <&sdma_xbar 41>,
1060 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301061 dma-names = "tx0", "rx0", "tx1", "rx1",
1062 "tx2", "rx2", "tx3", "rx3";
1063 status = "disabled";
1064 };
1065
1066 mcspi2: spi@4809a000 {
1067 compatible = "ti,omap4-mcspi";
1068 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301069 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301070 #address-cells = <1>;
1071 #size-cells = <0>;
1072 ti,hwmods = "mcspi2";
1073 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001074 dmas = <&sdma_xbar 43>,
1075 <&sdma_xbar 44>,
1076 <&sdma_xbar 45>,
1077 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301078 dma-names = "tx0", "rx0", "tx1", "rx1";
1079 status = "disabled";
1080 };
1081
1082 mcspi3: spi@480b8000 {
1083 compatible = "ti,omap4-mcspi";
1084 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301085 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301086 #address-cells = <1>;
1087 #size-cells = <0>;
1088 ti,hwmods = "mcspi3";
1089 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001090 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301091 dma-names = "tx0", "rx0";
1092 status = "disabled";
1093 };
1094
1095 mcspi4: spi@480ba000 {
1096 compatible = "ti,omap4-mcspi";
1097 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301098 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301099 #address-cells = <1>;
1100 #size-cells = <0>;
1101 ti,hwmods = "mcspi4";
1102 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001103 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301104 dma-names = "tx0", "rx0";
1105 status = "disabled";
1106 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301107
1108 qspi: qspi@4b300000 {
1109 compatible = "ti,dra7xxx-qspi";
1110 reg = <0x4b300000 0x100>;
1111 reg-names = "qspi_base";
1112 #address-cells = <1>;
1113 #size-cells = <0>;
1114 ti,hwmods = "qspi";
1115 clocks = <&qspi_gfclk_div>;
1116 clock-names = "fck";
1117 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301118 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301119 status = "disabled";
1120 };
Balaji T K7be80562014-05-07 14:58:58 +03001121
1122 omap_control_sata: control-phy@4a002374 {
1123 compatible = "ti,control-phy-pipe3";
1124 reg = <0x4a002374 0x4>;
1125 reg-names = "power";
1126 clocks = <&sys_clkin1>;
1127 clock-names = "sysclk";
1128 };
1129
1130 /* OCP2SCP3 */
1131 ocp2scp@4a090000 {
1132 compatible = "ti,omap-ocp2scp";
1133 #address-cells = <1>;
1134 #size-cells = <1>;
1135 ranges;
1136 reg = <0x4a090000 0x20>;
1137 ti,hwmods = "ocp2scp3";
1138 sata_phy: phy@4A096000 {
1139 compatible = "ti,phy-pipe3-sata";
1140 reg = <0x4A096000 0x80>, /* phy_rx */
1141 <0x4A096400 0x64>, /* phy_tx */
1142 <0x4A096800 0x40>; /* pll_ctrl */
1143 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1144 ctrl-module = <&omap_control_sata>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001145 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1146 clock-names = "sysclk", "refclk";
Balaji T K7be80562014-05-07 14:58:58 +03001147 #phy-cells = <0>;
1148 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301149
1150 pcie1_phy: pciephy@4a094000 {
1151 compatible = "ti,phy-pipe3-pcie";
1152 reg = <0x4a094000 0x80>, /* phy_rx */
1153 <0x4a094400 0x64>; /* phy_tx */
1154 reg-names = "phy_rx", "phy_tx";
1155 ctrl-module = <&omap_control_pcie1phy>;
1156 clocks = <&dpll_pcie_ref_ck>,
1157 <&dpll_pcie_ref_m2ldo_ck>,
1158 <&optfclk_pciephy1_32khz>,
1159 <&optfclk_pciephy1_clk>,
1160 <&optfclk_pciephy1_div_clk>,
1161 <&optfclk_pciephy_div>;
1162 clock-names = "dpll_ref", "dpll_ref_m2",
1163 "wkupclk", "refclk",
1164 "div-clk", "phy-div";
1165 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301166 };
1167
1168 pcie2_phy: pciephy@4a095000 {
1169 compatible = "ti,phy-pipe3-pcie";
1170 reg = <0x4a095000 0x80>, /* phy_rx */
1171 <0x4a095400 0x64>; /* phy_tx */
1172 reg-names = "phy_rx", "phy_tx";
1173 ctrl-module = <&omap_control_pcie2phy>;
1174 clocks = <&dpll_pcie_ref_ck>,
1175 <&dpll_pcie_ref_m2ldo_ck>,
1176 <&optfclk_pciephy2_32khz>,
1177 <&optfclk_pciephy2_clk>,
1178 <&optfclk_pciephy2_div_clk>,
1179 <&optfclk_pciephy_div>;
1180 clock-names = "dpll_ref", "dpll_ref_m2",
1181 "wkupclk", "refclk",
1182 "div-clk", "phy-div";
1183 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301184 status = "disabled";
1185 };
Balaji T K7be80562014-05-07 14:58:58 +03001186 };
1187
1188 sata: sata@4a141100 {
1189 compatible = "snps,dwc-ahci";
1190 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301191 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001192 phys = <&sata_phy>;
1193 phy-names = "sata-phy";
1194 clocks = <&sata_ref_clk>;
1195 ti,hwmods = "sata";
1196 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001197
Kishon Vijay Abraham Id1ff66b2014-07-14 16:12:21 +05301198 omap_control_pcie1phy: control-phy@0x4a003c40 {
1199 compatible = "ti,control-phy-pcie";
1200 reg = <0x4a003c40 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1201 reg-names = "power", "control_sma", "pcie_pcs";
1202 clocks = <&sys_clkin1>;
1203 clock-names = "sysclk";
1204 };
1205
1206 omap_control_pcie2phy: control-pcie@0x4a003c44 {
1207 compatible = "ti,control-phy-pcie";
1208 reg = <0x4a003c44 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1209 reg-names = "power", "control_sma", "pcie_pcs";
1210 clocks = <&sys_clkin1>;
1211 clock-names = "sysclk";
1212 status = "disabled";
1213 };
1214
Nishanth Menon00edd312015-04-08 18:56:27 -05001215 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301216 compatible = "ti,am3352-rtc";
1217 reg = <0x48838000 0x100>;
1218 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1219 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1220 ti,hwmods = "rtcss";
1221 clocks = <&sys_32k_ck>;
1222 };
1223
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001224 omap_control_usb2phy1: control-phy@4a002300 {
1225 compatible = "ti,control-phy-usb2";
1226 reg = <0x4a002300 0x4>;
1227 reg-names = "power";
1228 };
1229
1230 omap_control_usb3phy1: control-phy@4a002370 {
1231 compatible = "ti,control-phy-pipe3";
1232 reg = <0x4a002370 0x4>;
1233 reg-names = "power";
1234 };
1235
1236 omap_control_usb2phy2: control-phy@0x4a002e74 {
1237 compatible = "ti,control-phy-usb2-dra7";
1238 reg = <0x4a002e74 0x4>;
1239 reg-names = "power";
1240 };
1241
1242 /* OCP2SCP1 */
1243 ocp2scp@4a080000 {
1244 compatible = "ti,omap-ocp2scp";
1245 #address-cells = <1>;
1246 #size-cells = <1>;
1247 ranges;
1248 reg = <0x4a080000 0x20>;
1249 ti,hwmods = "ocp2scp1";
1250
1251 usb2_phy1: phy@4a084000 {
1252 compatible = "ti,omap-usb2";
1253 reg = <0x4a084000 0x400>;
1254 ctrl-module = <&omap_control_usb2phy1>;
1255 clocks = <&usb_phy1_always_on_clk32k>,
1256 <&usb_otg_ss1_refclk960m>;
1257 clock-names = "wkupclk",
1258 "refclk";
1259 #phy-cells = <0>;
1260 };
1261
1262 usb2_phy2: phy@4a085000 {
1263 compatible = "ti,omap-usb2";
1264 reg = <0x4a085000 0x400>;
1265 ctrl-module = <&omap_control_usb2phy2>;
1266 clocks = <&usb_phy2_always_on_clk32k>,
1267 <&usb_otg_ss2_refclk960m>;
1268 clock-names = "wkupclk",
1269 "refclk";
1270 #phy-cells = <0>;
1271 };
1272
1273 usb3_phy1: phy@4a084400 {
1274 compatible = "ti,omap-usb3";
1275 reg = <0x4a084400 0x80>,
1276 <0x4a084800 0x64>,
1277 <0x4a084c00 0x40>;
1278 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1279 ctrl-module = <&omap_control_usb3phy1>;
1280 clocks = <&usb_phy3_always_on_clk32k>,
1281 <&sys_clkin1>,
1282 <&usb_otg_ss1_refclk960m>;
1283 clock-names = "wkupclk",
1284 "sysclk",
1285 "refclk";
1286 #phy-cells = <0>;
1287 };
1288 };
1289
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001290 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001291 compatible = "ti,dwc3";
1292 ti,hwmods = "usb_otg_ss1";
1293 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301294 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001295 #address-cells = <1>;
1296 #size-cells = <1>;
1297 utmi-mode = <2>;
1298 ranges;
1299 usb1: usb@48890000 {
1300 compatible = "snps,dwc3";
1301 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001302 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1303 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1304 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1305 interrupt-names = "peripheral",
1306 "host",
1307 "otg";
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>;
Roger Quadros964927f2015-07-08 13:42:32 +03001330 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1331 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1332 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1333 interrupt-names = "peripheral",
1334 "host",
1335 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001336 phys = <&usb2_phy2>;
1337 phy-names = "usb2-phy";
1338 tx-fifo-resize;
1339 maximum-speed = "high-speed";
1340 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001341 snps,dis_u3_susphy_quirk;
1342 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001343 };
1344 };
1345
1346 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001347 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001348 compatible = "ti,dwc3";
1349 ti,hwmods = "usb_otg_ss3";
1350 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301351 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001352 #address-cells = <1>;
1353 #size-cells = <1>;
1354 utmi-mode = <2>;
1355 ranges;
1356 status = "disabled";
1357 usb3: usb@48910000 {
1358 compatible = "snps,dwc3";
1359 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001360 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1361 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1362 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1363 interrupt-names = "peripheral",
1364 "host",
1365 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001366 tx-fifo-resize;
1367 maximum-speed = "high-speed";
1368 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001369 snps,dis_u3_susphy_quirk;
1370 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001371 };
1372 };
1373
Minal Shahff66a3c2014-05-19 14:45:47 +05301374 elm: elm@48078000 {
1375 compatible = "ti,am3352-elm";
1376 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301377 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301378 ti,hwmods = "elm";
1379 status = "disabled";
1380 };
1381
1382 gpmc: gpmc@50000000 {
1383 compatible = "ti,am3352-gpmc";
1384 ti,hwmods = "gpmc";
1385 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301386 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301387 gpmc,num-cs = <8>;
1388 gpmc,num-waitpins = <2>;
1389 #address-cells = <2>;
1390 #size-cells = <1>;
1391 status = "disabled";
1392 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001393
1394 atl: atl@4843c000 {
1395 compatible = "ti,dra7-atl";
1396 reg = <0x4843c000 0x3ff>;
1397 ti,hwmods = "atl";
1398 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1399 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1400 clocks = <&atl_gfclk_mux>;
1401 clock-names = "fck";
1402 status = "disabled";
1403 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001404
Marc Zyngier783d3182015-03-11 15:43:44 +00001405 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301406 compatible = "ti,irq-crossbar";
1407 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001408 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001409 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001410 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301411 ti,max-irqs = <160>;
1412 ti,max-crossbar-sources = <MAX_SOURCES>;
1413 ti,reg-size = <2>;
1414 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1415 ti,irqs-skip = <10 133 139 140>;
1416 ti,irqs-safe-map = <0>;
1417 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301418
1419 mac: ethernet@4a100000 {
1420 compatible = "ti,cpsw";
1421 ti,hwmods = "gmac";
1422 clocks = <&dpll_gmac_ck>, <&gmac_gmii_ref_clk_div>;
1423 clock-names = "fck", "cpts";
1424 cpdma_channels = <8>;
1425 ale_entries = <1024>;
1426 bd_ram_size = <0x2000>;
1427 no_bd_ram = <0>;
1428 rx_descs = <64>;
1429 mac_control = <0x20>;
1430 slaves = <2>;
1431 active_slave = <0>;
1432 cpts_clock_mult = <0x80000000>;
1433 cpts_clock_shift = <29>;
1434 reg = <0x48484000 0x1000
1435 0x48485200 0x2E00>;
1436 #address-cells = <1>;
1437 #size-cells = <1>;
1438 /*
1439 * rx_thresh_pend
1440 * rx_pend
1441 * tx_pend
1442 * misc_pend
1443 */
1444 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1445 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1446 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1447 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1448 ranges;
1449 status = "disabled";
1450
1451 davinci_mdio: mdio@48485000 {
1452 compatible = "ti,davinci_mdio";
1453 #address-cells = <1>;
1454 #size-cells = <0>;
1455 ti,hwmods = "davinci_mdio";
1456 bus_freq = <1000000>;
1457 reg = <0x48485000 0x100>;
1458 };
1459
1460 cpsw_emac0: slave@48480200 {
1461 /* Filled in by U-Boot */
1462 mac-address = [ 00 00 00 00 00 00 ];
1463 };
1464
1465 cpsw_emac1: slave@48480300 {
1466 /* Filled in by U-Boot */
1467 mac-address = [ 00 00 00 00 00 00 ];
1468 };
1469
1470 phy_sel: cpsw-phy-sel@4a002554 {
1471 compatible = "ti,dra7xx-cpsw-phy-sel";
1472 reg= <0x4a002554 0x4>;
1473 reg-names = "gmii-sel";
1474 };
1475 };
1476
Roger Quadros9ec49b92014-08-15 16:08:36 +03001477 dcan1: can@481cc000 {
1478 compatible = "ti,dra7-d_can";
1479 ti,hwmods = "dcan1";
1480 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001481 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001482 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1483 clocks = <&dcan1_sys_clk_mux>;
1484 status = "disabled";
1485 };
1486
1487 dcan2: can@481d0000 {
1488 compatible = "ti,dra7-d_can";
1489 ti,hwmods = "dcan2";
1490 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001491 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001492 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1493 clocks = <&sys_clkin1>;
1494 status = "disabled";
1495 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301496
1497 dss: dss@58000000 {
1498 compatible = "ti,dra7-dss";
1499 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1500 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1501 status = "disabled";
1502 ti,hwmods = "dss_core";
1503 /* CTRL_CORE_DSS_PLL_CONTROL */
1504 syscon-pll-ctrl = <&scm_conf 0x538>;
1505 #address-cells = <1>;
1506 #size-cells = <1>;
1507 ranges;
1508
1509 dispc@58001000 {
1510 compatible = "ti,dra7-dispc";
1511 reg = <0x58001000 0x1000>;
1512 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1513 ti,hwmods = "dss_dispc";
1514 clocks = <&dss_dss_clk>;
1515 clock-names = "fck";
1516 /* CTRL_CORE_SMA_SW_1 */
1517 syscon-pol = <&scm_conf 0x534>;
1518 };
1519
1520 hdmi: encoder@58060000 {
1521 compatible = "ti,dra7-hdmi";
1522 reg = <0x58040000 0x200>,
1523 <0x58040200 0x80>,
1524 <0x58040300 0x80>,
1525 <0x58060000 0x19000>;
1526 reg-names = "wp", "pll", "phy", "core";
1527 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1528 status = "disabled";
1529 ti,hwmods = "dss_hdmi";
1530 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1531 clock-names = "fck", "sys_clk";
1532 };
1533 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301534 };
Keerthyf7397ed2015-03-23 14:39:38 -05001535
1536 thermal_zones: thermal-zones {
1537 #include "omap4-cpu-thermal.dtsi"
1538 #include "omap5-gpu-thermal.dtsi"
1539 #include "omap5-core-thermal.dtsi"
1540 };
1541
1542};
1543
1544&cpu_thermal {
1545 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301546};
Tero Kristoee6c7502013-07-18 17:18:33 +03001547
1548/include/ "dra7xx-clocks.dtsi"