blob: 3ce54f44b0921c9576312094a3691463610d6062 [file] [log] [blame]
R Sricharan6b5de092012-05-10 19:46:00 +05301/*
2 * Copyright (C) 2012 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/*
11 * Carveout for multimedia usecases
12 * It should be the last 48MB of the first 512MB memory part
13 * In theory, it should not even exist. That zone should be reserved
14 * dynamically during the .reserve callback.
15 */
16/memreserve/ 0x9d000000 0x03000000;
17
18/include/ "skeleton.dtsi"
19
20/ {
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053021 #address-cells = <1>;
22 #size-cells = <1>;
23
R Sricharan6b5de092012-05-10 19:46:00 +053024 compatible = "ti,omap5";
25 interrupt-parent = <&gic>;
26
27 aliases {
28 serial0 = &uart1;
29 serial1 = &uart2;
30 serial2 = &uart3;
31 serial3 = &uart4;
32 serial4 = &uart5;
33 serial5 = &uart6;
34 };
35
36 cpus {
37 cpu@0 {
38 compatible = "arm,cortex-a15";
39 };
40 cpu@1 {
41 compatible = "arm,cortex-a15";
42 };
43 };
44
Santosh Shilimkarb45ccc42013-02-10 21:40:19 +053045 timer {
46 compatible = "arm,armv7-timer";
Rajendra Nayak1496c152013-01-18 19:53:00 +053047 /* PPI secure/nonsecure IRQ, active low level-sensitive */
48 interrupts = <1 13 0x308>,
Santosh Shilimkar0129c162013-02-19 17:29:24 +053049 <1 14 0x308>,
50 <1 11 0x308>,
51 <1 10 0x308>;
Santosh Shilimkarb45ccc42013-02-10 21:40:19 +053052 clock-frequency = <6144000>;
53 };
54
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053055 gic: interrupt-controller@48211000 {
56 compatible = "arm,cortex-a15-gic";
57 interrupt-controller;
58 #interrupt-cells = <3>;
59 reg = <0x48211000 0x1000>,
Santosh Shilimkar0129c162013-02-19 17:29:24 +053060 <0x48212000 0x1000>,
61 <0x48214000 0x2000>,
62 <0x48216000 0x2000>;
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053063 };
64
R Sricharan6b5de092012-05-10 19:46:00 +053065 /*
66 * The soc node represents the soc top level view. It is uses for IPs
67 * that are not memory mapped in the MPU view or for the MPU itself.
68 */
69 soc {
70 compatible = "ti,omap-infra";
71 mpu {
72 compatible = "ti,omap5-mpu";
73 ti,hwmods = "mpu";
74 };
75 };
76
77 /*
78 * XXX: Use a flat representation of the OMAP3 interconnect.
79 * The real OMAP interconnect network is quite complex.
80 * Since that will not bring real advantage to represent that in DT for
81 * the moment, just use a fake OCP bus entry to represent the whole bus
82 * hierarchy.
83 */
84 ocp {
85 compatible = "ti,omap4-l3-noc", "simple-bus";
86 #address-cells = <1>;
87 #size-cells = <1>;
88 ranges;
89 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
Santosh Shilimkar20a60ea2013-02-26 17:36:14 +053090 reg = <0x44000000 0x2000>,
91 <0x44800000 0x3000>,
92 <0x45000000 0x4000>;
93 interrupts = <0 9 0x4>,
94 <0 10 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +053095
Jon Hunter3b3132f2012-11-01 09:12:23 -050096 counter32k: counter@4ae04000 {
97 compatible = "ti,omap-counter32k";
98 reg = <0x4ae04000 0x40>;
99 ti,hwmods = "counter_32k";
100 };
101
Peter Ujfalusi5da6a2d2012-10-04 14:57:27 +0300102 omap5_pmx_core: pinmux@4a002840 {
103 compatible = "ti,omap4-padconf", "pinctrl-single";
104 reg = <0x4a002840 0x01b6>;
105 #address-cells = <1>;
106 #size-cells = <0>;
107 pinctrl-single,register-width = <16>;
108 pinctrl-single,function-mask = <0x7fff>;
109 };
110 omap5_pmx_wkup: pinmux@4ae0c840 {
111 compatible = "ti,omap4-padconf", "pinctrl-single";
112 reg = <0x4ae0c840 0x0038>;
113 #address-cells = <1>;
114 #size-cells = <0>;
115 pinctrl-single,register-width = <16>;
116 pinctrl-single,function-mask = <0x7fff>;
117 };
118
Jon Hunter2c2dc542012-04-26 13:47:59 -0500119 sdma: dma-controller@4a056000 {
120 compatible = "ti,omap4430-sdma";
121 reg = <0x4a056000 0x1000>;
122 interrupts = <0 12 0x4>,
123 <0 13 0x4>,
124 <0 14 0x4>,
125 <0 15 0x4>;
126 #dma-cells = <1>;
127 #dma-channels = <32>;
128 #dma-requests = <127>;
129 };
130
R Sricharan6b5de092012-05-10 19:46:00 +0530131 gpio1: gpio@4ae10000 {
132 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200133 reg = <0x4ae10000 0x200>;
134 interrupts = <0 29 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530135 ti,hwmods = "gpio1";
136 gpio-controller;
137 #gpio-cells = <2>;
138 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600139 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530140 };
141
142 gpio2: gpio@48055000 {
143 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200144 reg = <0x48055000 0x200>;
145 interrupts = <0 30 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530146 ti,hwmods = "gpio2";
147 gpio-controller;
148 #gpio-cells = <2>;
149 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600150 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530151 };
152
153 gpio3: gpio@48057000 {
154 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200155 reg = <0x48057000 0x200>;
156 interrupts = <0 31 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530157 ti,hwmods = "gpio3";
158 gpio-controller;
159 #gpio-cells = <2>;
160 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600161 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530162 };
163
164 gpio4: gpio@48059000 {
165 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200166 reg = <0x48059000 0x200>;
167 interrupts = <0 32 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530168 ti,hwmods = "gpio4";
169 gpio-controller;
170 #gpio-cells = <2>;
171 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600172 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530173 };
174
175 gpio5: gpio@4805b000 {
176 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200177 reg = <0x4805b000 0x200>;
178 interrupts = <0 33 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530179 ti,hwmods = "gpio5";
180 gpio-controller;
181 #gpio-cells = <2>;
182 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600183 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530184 };
185
186 gpio6: gpio@4805d000 {
187 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200188 reg = <0x4805d000 0x200>;
189 interrupts = <0 34 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530190 ti,hwmods = "gpio6";
191 gpio-controller;
192 #gpio-cells = <2>;
193 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600194 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530195 };
196
197 gpio7: gpio@48051000 {
198 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200199 reg = <0x48051000 0x200>;
200 interrupts = <0 35 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530201 ti,hwmods = "gpio7";
202 gpio-controller;
203 #gpio-cells = <2>;
204 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600205 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530206 };
207
208 gpio8: gpio@48053000 {
209 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200210 reg = <0x48053000 0x200>;
211 interrupts = <0 121 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530212 ti,hwmods = "gpio8";
213 gpio-controller;
214 #gpio-cells = <2>;
215 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600216 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530217 };
218
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600219 gpmc: gpmc@50000000 {
220 compatible = "ti,omap4430-gpmc";
221 reg = <0x50000000 0x1000>;
222 #address-cells = <2>;
223 #size-cells = <1>;
224 interrupts = <0 20 0x4>;
225 gpmc,num-cs = <8>;
226 gpmc,num-waitpins = <4>;
227 ti,hwmods = "gpmc";
228 };
229
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530230 i2c1: i2c@48070000 {
231 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200232 reg = <0x48070000 0x100>;
233 interrupts = <0 56 0x4>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530234 #address-cells = <1>;
235 #size-cells = <0>;
236 ti,hwmods = "i2c1";
237 };
238
239 i2c2: i2c@48072000 {
240 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200241 reg = <0x48072000 0x100>;
242 interrupts = <0 57 0x4>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530243 #address-cells = <1>;
244 #size-cells = <0>;
245 ti,hwmods = "i2c2";
246 };
247
248 i2c3: i2c@48060000 {
249 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200250 reg = <0x48060000 0x100>;
251 interrupts = <0 61 0x4>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530252 #address-cells = <1>;
253 #size-cells = <0>;
254 ti,hwmods = "i2c3";
255 };
256
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200257 i2c4: i2c@4807a000 {
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530258 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200259 reg = <0x4807a000 0x100>;
260 interrupts = <0 62 0x4>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530261 #address-cells = <1>;
262 #size-cells = <0>;
263 ti,hwmods = "i2c4";
264 };
265
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200266 i2c5: i2c@4807c000 {
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530267 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200268 reg = <0x4807c000 0x100>;
269 interrupts = <0 60 0x4>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530270 #address-cells = <1>;
271 #size-cells = <0>;
272 ti,hwmods = "i2c5";
273 };
274
Felipe Balbi43286b12013-02-13 14:58:36 +0530275 mcspi1: spi@48098000 {
276 compatible = "ti,omap4-mcspi";
277 reg = <0x48098000 0x200>;
278 interrupts = <0 65 0x4>;
279 #address-cells = <1>;
280 #size-cells = <0>;
281 ti,hwmods = "mcspi1";
282 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500283 dmas = <&sdma 35>,
284 <&sdma 36>,
285 <&sdma 37>,
286 <&sdma 38>,
287 <&sdma 39>,
288 <&sdma 40>,
289 <&sdma 41>,
290 <&sdma 42>;
291 dma-names = "tx0", "rx0", "tx1", "rx1",
292 "tx2", "rx2", "tx3", "rx3";
Felipe Balbi43286b12013-02-13 14:58:36 +0530293 };
294
295 mcspi2: spi@4809a000 {
296 compatible = "ti,omap4-mcspi";
297 reg = <0x4809a000 0x200>;
298 interrupts = <0 66 0x4>;
299 #address-cells = <1>;
300 #size-cells = <0>;
301 ti,hwmods = "mcspi2";
302 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500303 dmas = <&sdma 43>,
304 <&sdma 44>,
305 <&sdma 45>,
306 <&sdma 46>;
307 dma-names = "tx0", "rx0", "tx1", "rx1";
Felipe Balbi43286b12013-02-13 14:58:36 +0530308 };
309
310 mcspi3: spi@480b8000 {
311 compatible = "ti,omap4-mcspi";
312 reg = <0x480b8000 0x200>;
313 interrupts = <0 91 0x4>;
314 #address-cells = <1>;
315 #size-cells = <0>;
316 ti,hwmods = "mcspi3";
317 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500318 dmas = <&sdma 15>, <&sdma 16>;
319 dma-names = "tx0", "rx0";
Felipe Balbi43286b12013-02-13 14:58:36 +0530320 };
321
322 mcspi4: spi@480ba000 {
323 compatible = "ti,omap4-mcspi";
324 reg = <0x480ba000 0x200>;
325 interrupts = <0 48 0x4>;
326 #address-cells = <1>;
327 #size-cells = <0>;
328 ti,hwmods = "mcspi4";
329 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500330 dmas = <&sdma 70>, <&sdma 71>;
331 dma-names = "tx0", "rx0";
Felipe Balbi43286b12013-02-13 14:58:36 +0530332 };
333
R Sricharan6b5de092012-05-10 19:46:00 +0530334 uart1: serial@4806a000 {
335 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200336 reg = <0x4806a000 0x100>;
337 interrupts = <0 72 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530338 ti,hwmods = "uart1";
339 clock-frequency = <48000000>;
340 };
341
342 uart2: serial@4806c000 {
343 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200344 reg = <0x4806c000 0x100>;
345 interrupts = <0 73 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530346 ti,hwmods = "uart2";
347 clock-frequency = <48000000>;
348 };
349
350 uart3: serial@48020000 {
351 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200352 reg = <0x48020000 0x100>;
353 interrupts = <0 74 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530354 ti,hwmods = "uart3";
355 clock-frequency = <48000000>;
356 };
357
358 uart4: serial@4806e000 {
359 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200360 reg = <0x4806e000 0x100>;
361 interrupts = <0 70 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530362 ti,hwmods = "uart4";
363 clock-frequency = <48000000>;
364 };
365
366 uart5: serial@48066000 {
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200367 compatible = "ti,omap4-uart";
368 reg = <0x48066000 0x100>;
369 interrupts = <0 105 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530370 ti,hwmods = "uart5";
371 clock-frequency = <48000000>;
372 };
373
374 uart6: serial@48068000 {
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200375 compatible = "ti,omap4-uart";
376 reg = <0x48068000 0x100>;
377 interrupts = <0 106 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530378 ti,hwmods = "uart6";
379 clock-frequency = <48000000>;
380 };
Balaji T K5dd18b02012-08-07 12:48:21 +0530381
382 mmc1: mmc@4809c000 {
383 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200384 reg = <0x4809c000 0x400>;
385 interrupts = <0 83 0x4>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530386 ti,hwmods = "mmc1";
387 ti,dual-volt;
388 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500389 dmas = <&sdma 61>, <&sdma 62>;
390 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530391 };
392
393 mmc2: mmc@480b4000 {
394 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200395 reg = <0x480b4000 0x400>;
396 interrupts = <0 86 0x4>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530397 ti,hwmods = "mmc2";
398 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500399 dmas = <&sdma 47>, <&sdma 48>;
400 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530401 };
402
403 mmc3: mmc@480ad000 {
404 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200405 reg = <0x480ad000 0x400>;
406 interrupts = <0 94 0x4>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530407 ti,hwmods = "mmc3";
408 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500409 dmas = <&sdma 77>, <&sdma 78>;
410 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530411 };
412
413 mmc4: mmc@480d1000 {
414 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200415 reg = <0x480d1000 0x400>;
416 interrupts = <0 96 0x4>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530417 ti,hwmods = "mmc4";
418 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500419 dmas = <&sdma 57>, <&sdma 58>;
420 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530421 };
422
423 mmc5: mmc@480d5000 {
424 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200425 reg = <0x480d5000 0x400>;
426 interrupts = <0 59 0x4>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530427 ti,hwmods = "mmc5";
428 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500429 dmas = <&sdma 59>, <&sdma 60>;
430 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530431 };
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530432
433 keypad: keypad@4ae1c000 {
434 compatible = "ti,omap4-keypad";
Santosh Shilimkar8cc8b892013-01-23 19:53:30 +0530435 reg = <0x4ae1c000 0x400>;
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530436 ti,hwmods = "kbd";
437 };
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300438
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300439 mcpdm: mcpdm@40132000 {
440 compatible = "ti,omap4-mcpdm";
441 reg = <0x40132000 0x7f>, /* MPU private access */
442 <0x49032000 0x7f>; /* L3 Interconnect */
443 reg-names = "mpu", "dma";
444 interrupts = <0 112 0x4>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300445 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100446 dmas = <&sdma 65>,
447 <&sdma 66>;
448 dma-names = "up_link", "dn_link";
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300449 };
450
451 dmic: dmic@4012e000 {
452 compatible = "ti,omap4-dmic";
453 reg = <0x4012e000 0x7f>, /* MPU private access */
454 <0x4902e000 0x7f>; /* L3 Interconnect */
455 reg-names = "mpu", "dma";
456 interrupts = <0 114 0x4>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300457 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100458 dmas = <&sdma 67>;
459 dma-names = "up_link";
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300460 };
461
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300462 mcbsp1: mcbsp@40122000 {
463 compatible = "ti,omap4-mcbsp";
464 reg = <0x40122000 0xff>, /* MPU private access */
465 <0x49022000 0xff>; /* L3 Interconnect */
466 reg-names = "mpu", "dma";
467 interrupts = <0 17 0x4>;
468 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300469 ti,buffer-size = <128>;
470 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100471 dmas = <&sdma 33>,
472 <&sdma 34>;
473 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300474 };
475
476 mcbsp2: mcbsp@40124000 {
477 compatible = "ti,omap4-mcbsp";
478 reg = <0x40124000 0xff>, /* MPU private access */
479 <0x49024000 0xff>; /* L3 Interconnect */
480 reg-names = "mpu", "dma";
481 interrupts = <0 22 0x4>;
482 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300483 ti,buffer-size = <128>;
484 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100485 dmas = <&sdma 17>,
486 <&sdma 18>;
487 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300488 };
489
490 mcbsp3: mcbsp@40126000 {
491 compatible = "ti,omap4-mcbsp";
492 reg = <0x40126000 0xff>, /* MPU private access */
493 <0x49026000 0xff>; /* L3 Interconnect */
494 reg-names = "mpu", "dma";
495 interrupts = <0 23 0x4>;
496 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300497 ti,buffer-size = <128>;
498 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100499 dmas = <&sdma 19>,
500 <&sdma 20>;
501 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300502 };
Jon Hunterdf692a92012-11-01 09:09:51 -0500503
504 timer1: timer@4ae18000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500505 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500506 reg = <0x4ae18000 0x80>;
507 interrupts = <0 37 0x4>;
508 ti,hwmods = "timer1";
509 ti,timer-alwon;
510 };
511
512 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500513 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500514 reg = <0x48032000 0x80>;
515 interrupts = <0 38 0x4>;
516 ti,hwmods = "timer2";
517 };
518
519 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500520 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500521 reg = <0x48034000 0x80>;
522 interrupts = <0 39 0x4>;
523 ti,hwmods = "timer3";
524 };
525
526 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500527 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500528 reg = <0x48036000 0x80>;
529 interrupts = <0 40 0x4>;
530 ti,hwmods = "timer4";
531 };
532
533 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500534 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500535 reg = <0x40138000 0x80>,
536 <0x49038000 0x80>;
537 interrupts = <0 41 0x4>;
538 ti,hwmods = "timer5";
539 ti,timer-dsp;
540 };
541
542 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500543 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500544 reg = <0x4013a000 0x80>,
545 <0x4903a000 0x80>;
546 interrupts = <0 42 0x4>;
547 ti,hwmods = "timer6";
548 ti,timer-dsp;
549 ti,timer-pwm;
550 };
551
552 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500553 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500554 reg = <0x4013c000 0x80>,
555 <0x4903c000 0x80>;
556 interrupts = <0 43 0x4>;
557 ti,hwmods = "timer7";
558 ti,timer-dsp;
559 };
560
561 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500562 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500563 reg = <0x4013e000 0x80>,
564 <0x4903e000 0x80>;
565 interrupts = <0 44 0x4>;
566 ti,hwmods = "timer8";
567 ti,timer-dsp;
568 ti,timer-pwm;
569 };
570
571 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500572 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500573 reg = <0x4803e000 0x80>;
574 interrupts = <0 45 0x4>;
575 ti,hwmods = "timer9";
576 };
577
578 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500579 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500580 reg = <0x48086000 0x80>;
581 interrupts = <0 46 0x4>;
582 ti,hwmods = "timer10";
583 };
584
585 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500586 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500587 reg = <0x48088000 0x80>;
588 interrupts = <0 47 0x4>;
589 ti,hwmods = "timer11";
590 ti,timer-pwm;
591 };
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530592
Lokesh Vutla55452192013-02-27 11:54:45 +0530593 wdt2: wdt@4ae14000 {
594 compatible = "ti,omap5-wdt", "ti,omap3-wdt";
595 reg = <0x4ae14000 0x80>;
596 interrupts = <0 80 0x4>;
597 ti,hwmods = "wd_timer2";
598 };
599
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530600 emif1: emif@0x4c000000 {
601 compatible = "ti,emif-4d5";
602 ti,hwmods = "emif1";
603 phy-type = <2>; /* DDR PHY type: Intelli PHY */
604 reg = <0x4c000000 0x400>;
605 interrupts = <0 110 0x4>;
606 hw-caps-read-idle-ctrl;
607 hw-caps-ll-interface;
608 hw-caps-temp-alert;
609 };
610
611 emif2: emif@0x4d000000 {
612 compatible = "ti,emif-4d5";
613 ti,hwmods = "emif2";
614 phy-type = <2>; /* DDR PHY type: Intelli PHY */
615 reg = <0x4d000000 0x400>;
616 interrupts = <0 111 0x4>;
617 hw-caps-read-idle-ctrl;
618 hw-caps-ll-interface;
619 hw-caps-temp-alert;
620 };
Kishon Vijay Abraham Ifedc4282013-03-07 19:05:17 +0530621
622 omap_control_usb: omap-control-usb@4a002300 {
623 compatible = "ti,omap-control-usb";
624 reg = <0x4a002300 0x4>,
625 <0x4a002370 0x4>;
626 reg-names = "control_dev_conf", "phy_power_usb";
627 ti,type = <2>;
628 };
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530629
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530630 omap_dwc3@4a020000 {
631 compatible = "ti,dwc3";
632 ti,hwmods = "usb_otg_ss";
633 reg = <0x4a020000 0x1000>;
634 interrupts = <0 93 4>;
635 #address-cells = <1>;
636 #size-cells = <1>;
637 utmi-mode = <2>;
638 ranges;
639 dwc3@4a030000 {
640 compatible = "synopsys,dwc3";
641 reg = <0x4a030000 0x1000>;
642 interrupts = <0 92 4>;
643 usb-phy = <&usb2_phy>, <&usb3_phy>;
644 tx-fifo-resize;
645 };
646 };
647
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530648 ocp2scp {
649 compatible = "ti,omap-ocp2scp";
650 #address-cells = <1>;
651 #size-cells = <1>;
652 ranges;
653 ti,hwmods = "ocp2scp1";
Kishon Vijay Abraham Iae6a32d2013-03-07 19:05:19 +0530654 usb2_phy: usb2phy@4a084000 {
655 compatible = "ti,omap-usb2";
656 reg = <0x4a084000 0x7c>;
657 ctrl-module = <&omap_control_usb>;
658 };
659
660 usb3_phy: usb3phy@4a084400 {
661 compatible = "ti,omap-usb3";
662 reg = <0x4a084400 0x80>,
663 <0x4a084800 0x64>,
664 <0x4a084c00 0x40>;
665 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
666 ctrl-module = <&omap_control_usb>;
667 };
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530668 };
R Sricharan6b5de092012-05-10 19:46:00 +0530669 };
670};