blob: 2cb72ba1dd05835e80ebc27927870d364928c9a7 [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
Florian Vaussard6d624ea2013-05-31 14:32:56 +020010#include <dt-bindings/gpio/gpio.h>
Florian Vaussard8fea7d52013-05-31 14:32:57 +020011#include <dt-bindings/interrupt-controller/arm-gic.h>
Florian Vaussardbcd3cca2013-05-31 14:32:59 +020012#include <dt-bindings/pinctrl/omap.h>
R Sricharan6b5de092012-05-10 19:46:00 +053013
Florian Vaussard98ef79572013-05-31 14:32:55 +020014#include "skeleton.dtsi"
R Sricharan6b5de092012-05-10 19:46:00 +053015
16/ {
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053017 #address-cells = <1>;
18 #size-cells = <1>;
19
R Sricharan6b5de092012-05-10 19:46:00 +053020 compatible = "ti,omap5";
21 interrupt-parent = <&gic>;
22
23 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050024 i2c0 = &i2c1;
25 i2c1 = &i2c2;
26 i2c2 = &i2c3;
27 i2c3 = &i2c4;
28 i2c4 = &i2c5;
R Sricharan6b5de092012-05-10 19:46:00 +053029 serial0 = &uart1;
30 serial1 = &uart2;
31 serial2 = &uart3;
32 serial3 = &uart4;
33 serial4 = &uart5;
34 serial5 = &uart6;
35 };
36
37 cpus {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010038 #address-cells = <1>;
39 #size-cells = <0>;
40
R Sricharan6b5de092012-05-10 19:46:00 +053041 cpu@0 {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010042 device_type = "cpu";
R Sricharan6b5de092012-05-10 19:46:00 +053043 compatible = "arm,cortex-a15";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010044 reg = <0x0>;
R Sricharan6b5de092012-05-10 19:46:00 +053045 };
46 cpu@1 {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010047 device_type = "cpu";
R Sricharan6b5de092012-05-10 19:46:00 +053048 compatible = "arm,cortex-a15";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010049 reg = <0x1>;
R Sricharan6b5de092012-05-10 19:46:00 +053050 };
51 };
52
Santosh Shilimkarb45ccc42013-02-10 21:40:19 +053053 timer {
54 compatible = "arm,armv7-timer";
Florian Vaussard8fea7d52013-05-31 14:32:57 +020055 /* PPI secure/nonsecure IRQ */
56 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
57 <GIC_PPI 14 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
58 <GIC_PPI 11 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
59 <GIC_PPI 10 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>;
Santosh Shilimkarb45ccc42013-02-10 21:40:19 +053060 };
61
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053062 gic: interrupt-controller@48211000 {
63 compatible = "arm,cortex-a15-gic";
64 interrupt-controller;
65 #interrupt-cells = <3>;
66 reg = <0x48211000 0x1000>,
Santosh Shilimkar0129c162013-02-19 17:29:24 +053067 <0x48212000 0x1000>,
68 <0x48214000 0x2000>,
69 <0x48216000 0x2000>;
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053070 };
71
R Sricharan6b5de092012-05-10 19:46:00 +053072 /*
73 * The soc node represents the soc top level view. It is uses for IPs
74 * that are not memory mapped in the MPU view or for the MPU itself.
75 */
76 soc {
77 compatible = "ti,omap-infra";
78 mpu {
79 compatible = "ti,omap5-mpu";
80 ti,hwmods = "mpu";
81 };
82 };
83
84 /*
85 * XXX: Use a flat representation of the OMAP3 interconnect.
86 * The real OMAP interconnect network is quite complex.
87 * Since that will not bring real advantage to represent that in DT for
88 * the moment, just use a fake OCP bus entry to represent the whole bus
89 * hierarchy.
90 */
91 ocp {
92 compatible = "ti,omap4-l3-noc", "simple-bus";
93 #address-cells = <1>;
94 #size-cells = <1>;
95 ranges;
96 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
Santosh Shilimkar20a60ea2013-02-26 17:36:14 +053097 reg = <0x44000000 0x2000>,
98 <0x44800000 0x3000>,
99 <0x45000000 0x4000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200100 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
101 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530102
Jon Hunter3b3132f2012-11-01 09:12:23 -0500103 counter32k: counter@4ae04000 {
104 compatible = "ti,omap-counter32k";
105 reg = <0x4ae04000 0x40>;
106 ti,hwmods = "counter_32k";
107 };
108
Peter Ujfalusi5da6a2d2012-10-04 14:57:27 +0300109 omap5_pmx_core: pinmux@4a002840 {
110 compatible = "ti,omap4-padconf", "pinctrl-single";
111 reg = <0x4a002840 0x01b6>;
112 #address-cells = <1>;
113 #size-cells = <0>;
114 pinctrl-single,register-width = <16>;
115 pinctrl-single,function-mask = <0x7fff>;
116 };
117 omap5_pmx_wkup: pinmux@4ae0c840 {
118 compatible = "ti,omap4-padconf", "pinctrl-single";
119 reg = <0x4ae0c840 0x0038>;
120 #address-cells = <1>;
121 #size-cells = <0>;
122 pinctrl-single,register-width = <16>;
123 pinctrl-single,function-mask = <0x7fff>;
124 };
125
Jon Hunter2c2dc542012-04-26 13:47:59 -0500126 sdma: dma-controller@4a056000 {
127 compatible = "ti,omap4430-sdma";
128 reg = <0x4a056000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200129 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
130 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
131 <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
132 <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500133 #dma-cells = <1>;
134 #dma-channels = <32>;
135 #dma-requests = <127>;
136 };
137
R Sricharan6b5de092012-05-10 19:46:00 +0530138 gpio1: gpio@4ae10000 {
139 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200140 reg = <0x4ae10000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200141 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530142 ti,hwmods = "gpio1";
Jon Huntere4b9b9f2013-04-04 15:16:16 -0500143 ti,gpio-always-on;
R Sricharan6b5de092012-05-10 19:46:00 +0530144 gpio-controller;
145 #gpio-cells = <2>;
146 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600147 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530148 };
149
150 gpio2: gpio@48055000 {
151 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200152 reg = <0x48055000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200153 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530154 ti,hwmods = "gpio2";
155 gpio-controller;
156 #gpio-cells = <2>;
157 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600158 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530159 };
160
161 gpio3: gpio@48057000 {
162 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200163 reg = <0x48057000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200164 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530165 ti,hwmods = "gpio3";
166 gpio-controller;
167 #gpio-cells = <2>;
168 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600169 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530170 };
171
172 gpio4: gpio@48059000 {
173 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200174 reg = <0x48059000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200175 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530176 ti,hwmods = "gpio4";
177 gpio-controller;
178 #gpio-cells = <2>;
179 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600180 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530181 };
182
183 gpio5: gpio@4805b000 {
184 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200185 reg = <0x4805b000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200186 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530187 ti,hwmods = "gpio5";
188 gpio-controller;
189 #gpio-cells = <2>;
190 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600191 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530192 };
193
194 gpio6: gpio@4805d000 {
195 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200196 reg = <0x4805d000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200197 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530198 ti,hwmods = "gpio6";
199 gpio-controller;
200 #gpio-cells = <2>;
201 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600202 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530203 };
204
205 gpio7: gpio@48051000 {
206 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200207 reg = <0x48051000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200208 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530209 ti,hwmods = "gpio7";
210 gpio-controller;
211 #gpio-cells = <2>;
212 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600213 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530214 };
215
216 gpio8: gpio@48053000 {
217 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200218 reg = <0x48053000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200219 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530220 ti,hwmods = "gpio8";
221 gpio-controller;
222 #gpio-cells = <2>;
223 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600224 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530225 };
226
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600227 gpmc: gpmc@50000000 {
228 compatible = "ti,omap4430-gpmc";
229 reg = <0x50000000 0x1000>;
230 #address-cells = <2>;
231 #size-cells = <1>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200232 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600233 gpmc,num-cs = <8>;
234 gpmc,num-waitpins = <4>;
235 ti,hwmods = "gpmc";
236 };
237
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530238 i2c1: i2c@48070000 {
239 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200240 reg = <0x48070000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200241 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530242 #address-cells = <1>;
243 #size-cells = <0>;
244 ti,hwmods = "i2c1";
245 };
246
247 i2c2: i2c@48072000 {
248 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200249 reg = <0x48072000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200250 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530251 #address-cells = <1>;
252 #size-cells = <0>;
253 ti,hwmods = "i2c2";
254 };
255
256 i2c3: i2c@48060000 {
257 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200258 reg = <0x48060000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200259 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530260 #address-cells = <1>;
261 #size-cells = <0>;
262 ti,hwmods = "i2c3";
263 };
264
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200265 i2c4: i2c@4807a000 {
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530266 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200267 reg = <0x4807a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200268 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530269 #address-cells = <1>;
270 #size-cells = <0>;
271 ti,hwmods = "i2c4";
272 };
273
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200274 i2c5: i2c@4807c000 {
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530275 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200276 reg = <0x4807c000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200277 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530278 #address-cells = <1>;
279 #size-cells = <0>;
280 ti,hwmods = "i2c5";
281 };
282
Felipe Balbi43286b12013-02-13 14:58:36 +0530283 mcspi1: spi@48098000 {
284 compatible = "ti,omap4-mcspi";
285 reg = <0x48098000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200286 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530287 #address-cells = <1>;
288 #size-cells = <0>;
289 ti,hwmods = "mcspi1";
290 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500291 dmas = <&sdma 35>,
292 <&sdma 36>,
293 <&sdma 37>,
294 <&sdma 38>,
295 <&sdma 39>,
296 <&sdma 40>,
297 <&sdma 41>,
298 <&sdma 42>;
299 dma-names = "tx0", "rx0", "tx1", "rx1",
300 "tx2", "rx2", "tx3", "rx3";
Felipe Balbi43286b12013-02-13 14:58:36 +0530301 };
302
303 mcspi2: spi@4809a000 {
304 compatible = "ti,omap4-mcspi";
305 reg = <0x4809a000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200306 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530307 #address-cells = <1>;
308 #size-cells = <0>;
309 ti,hwmods = "mcspi2";
310 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500311 dmas = <&sdma 43>,
312 <&sdma 44>,
313 <&sdma 45>,
314 <&sdma 46>;
315 dma-names = "tx0", "rx0", "tx1", "rx1";
Felipe Balbi43286b12013-02-13 14:58:36 +0530316 };
317
318 mcspi3: spi@480b8000 {
319 compatible = "ti,omap4-mcspi";
320 reg = <0x480b8000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200321 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530322 #address-cells = <1>;
323 #size-cells = <0>;
324 ti,hwmods = "mcspi3";
325 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500326 dmas = <&sdma 15>, <&sdma 16>;
327 dma-names = "tx0", "rx0";
Felipe Balbi43286b12013-02-13 14:58:36 +0530328 };
329
330 mcspi4: spi@480ba000 {
331 compatible = "ti,omap4-mcspi";
332 reg = <0x480ba000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200333 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530334 #address-cells = <1>;
335 #size-cells = <0>;
336 ti,hwmods = "mcspi4";
337 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500338 dmas = <&sdma 70>, <&sdma 71>;
339 dma-names = "tx0", "rx0";
Felipe Balbi43286b12013-02-13 14:58:36 +0530340 };
341
R Sricharan6b5de092012-05-10 19:46:00 +0530342 uart1: serial@4806a000 {
343 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200344 reg = <0x4806a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200345 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530346 ti,hwmods = "uart1";
347 clock-frequency = <48000000>;
348 };
349
350 uart2: serial@4806c000 {
351 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200352 reg = <0x4806c000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200353 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530354 ti,hwmods = "uart2";
355 clock-frequency = <48000000>;
356 };
357
358 uart3: serial@48020000 {
359 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200360 reg = <0x48020000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200361 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530362 ti,hwmods = "uart3";
363 clock-frequency = <48000000>;
364 };
365
366 uart4: serial@4806e000 {
367 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200368 reg = <0x4806e000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200369 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530370 ti,hwmods = "uart4";
371 clock-frequency = <48000000>;
372 };
373
374 uart5: serial@48066000 {
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200375 compatible = "ti,omap4-uart";
376 reg = <0x48066000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200377 interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530378 ti,hwmods = "uart5";
379 clock-frequency = <48000000>;
380 };
381
382 uart6: serial@48068000 {
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200383 compatible = "ti,omap4-uart";
384 reg = <0x48068000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200385 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530386 ti,hwmods = "uart6";
387 clock-frequency = <48000000>;
388 };
Balaji T K5dd18b02012-08-07 12:48:21 +0530389
390 mmc1: mmc@4809c000 {
391 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200392 reg = <0x4809c000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200393 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530394 ti,hwmods = "mmc1";
395 ti,dual-volt;
396 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500397 dmas = <&sdma 61>, <&sdma 62>;
398 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530399 };
400
401 mmc2: mmc@480b4000 {
402 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200403 reg = <0x480b4000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200404 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530405 ti,hwmods = "mmc2";
406 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500407 dmas = <&sdma 47>, <&sdma 48>;
408 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530409 };
410
411 mmc3: mmc@480ad000 {
412 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200413 reg = <0x480ad000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200414 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530415 ti,hwmods = "mmc3";
416 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500417 dmas = <&sdma 77>, <&sdma 78>;
418 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530419 };
420
421 mmc4: mmc@480d1000 {
422 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200423 reg = <0x480d1000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200424 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530425 ti,hwmods = "mmc4";
426 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500427 dmas = <&sdma 57>, <&sdma 58>;
428 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530429 };
430
431 mmc5: mmc@480d5000 {
432 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200433 reg = <0x480d5000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200434 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530435 ti,hwmods = "mmc5";
436 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500437 dmas = <&sdma 59>, <&sdma 60>;
438 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530439 };
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530440
441 keypad: keypad@4ae1c000 {
442 compatible = "ti,omap4-keypad";
Santosh Shilimkar8cc8b892013-01-23 19:53:30 +0530443 reg = <0x4ae1c000 0x400>;
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530444 ti,hwmods = "kbd";
445 };
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300446
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300447 mcpdm: mcpdm@40132000 {
448 compatible = "ti,omap4-mcpdm";
449 reg = <0x40132000 0x7f>, /* MPU private access */
450 <0x49032000 0x7f>; /* L3 Interconnect */
451 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200452 interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300453 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100454 dmas = <&sdma 65>,
455 <&sdma 66>;
456 dma-names = "up_link", "dn_link";
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300457 };
458
459 dmic: dmic@4012e000 {
460 compatible = "ti,omap4-dmic";
461 reg = <0x4012e000 0x7f>, /* MPU private access */
462 <0x4902e000 0x7f>; /* L3 Interconnect */
463 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200464 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300465 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100466 dmas = <&sdma 67>;
467 dma-names = "up_link";
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300468 };
469
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300470 mcbsp1: mcbsp@40122000 {
471 compatible = "ti,omap4-mcbsp";
472 reg = <0x40122000 0xff>, /* MPU private access */
473 <0x49022000 0xff>; /* L3 Interconnect */
474 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200475 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300476 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300477 ti,buffer-size = <128>;
478 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100479 dmas = <&sdma 33>,
480 <&sdma 34>;
481 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300482 };
483
484 mcbsp2: mcbsp@40124000 {
485 compatible = "ti,omap4-mcbsp";
486 reg = <0x40124000 0xff>, /* MPU private access */
487 <0x49024000 0xff>; /* L3 Interconnect */
488 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200489 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300490 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300491 ti,buffer-size = <128>;
492 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100493 dmas = <&sdma 17>,
494 <&sdma 18>;
495 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300496 };
497
498 mcbsp3: mcbsp@40126000 {
499 compatible = "ti,omap4-mcbsp";
500 reg = <0x40126000 0xff>, /* MPU private access */
501 <0x49026000 0xff>; /* L3 Interconnect */
502 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200503 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300504 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300505 ti,buffer-size = <128>;
506 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100507 dmas = <&sdma 19>,
508 <&sdma 20>;
509 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300510 };
Jon Hunterdf692a92012-11-01 09:09:51 -0500511
512 timer1: timer@4ae18000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500513 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500514 reg = <0x4ae18000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200515 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500516 ti,hwmods = "timer1";
517 ti,timer-alwon;
518 };
519
520 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500521 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500522 reg = <0x48032000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200523 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500524 ti,hwmods = "timer2";
525 };
526
527 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500528 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500529 reg = <0x48034000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200530 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500531 ti,hwmods = "timer3";
532 };
533
534 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500535 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500536 reg = <0x48036000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200537 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500538 ti,hwmods = "timer4";
539 };
540
541 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500542 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500543 reg = <0x40138000 0x80>,
544 <0x49038000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200545 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500546 ti,hwmods = "timer5";
547 ti,timer-dsp;
Suman Anna83416132013-04-17 18:23:15 -0500548 ti,timer-pwm;
Jon Hunterdf692a92012-11-01 09:09:51 -0500549 };
550
551 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500552 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500553 reg = <0x4013a000 0x80>,
554 <0x4903a000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200555 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500556 ti,hwmods = "timer6";
557 ti,timer-dsp;
558 ti,timer-pwm;
559 };
560
561 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500562 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500563 reg = <0x4013c000 0x80>,
564 <0x4903c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200565 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500566 ti,hwmods = "timer7";
567 ti,timer-dsp;
568 };
569
570 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500571 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500572 reg = <0x4013e000 0x80>,
573 <0x4903e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200574 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500575 ti,hwmods = "timer8";
576 ti,timer-dsp;
577 ti,timer-pwm;
578 };
579
580 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500581 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500582 reg = <0x4803e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200583 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500584 ti,hwmods = "timer9";
Suman Anna83416132013-04-17 18:23:15 -0500585 ti,timer-pwm;
Jon Hunterdf692a92012-11-01 09:09:51 -0500586 };
587
588 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500589 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500590 reg = <0x48086000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200591 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500592 ti,hwmods = "timer10";
Suman Anna83416132013-04-17 18:23:15 -0500593 ti,timer-pwm;
Jon Hunterdf692a92012-11-01 09:09:51 -0500594 };
595
596 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500597 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500598 reg = <0x48088000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200599 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500600 ti,hwmods = "timer11";
601 ti,timer-pwm;
602 };
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530603
Lokesh Vutla55452192013-02-27 11:54:45 +0530604 wdt2: wdt@4ae14000 {
605 compatible = "ti,omap5-wdt", "ti,omap3-wdt";
606 reg = <0x4ae14000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200607 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Lokesh Vutla55452192013-02-27 11:54:45 +0530608 ti,hwmods = "wd_timer2";
609 };
610
Lee Jones8906d652013-07-22 11:52:37 +0100611 emif1: emif@4c000000 {
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530612 compatible = "ti,emif-4d5";
613 ti,hwmods = "emif1";
Rajendra Nayakf12ecbe2013-10-15 12:37:50 +0530614 ti,no-idle-on-init;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530615 phy-type = <2>; /* DDR PHY type: Intelli PHY */
616 reg = <0x4c000000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200617 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530618 hw-caps-read-idle-ctrl;
619 hw-caps-ll-interface;
620 hw-caps-temp-alert;
621 };
622
Lee Jones8906d652013-07-22 11:52:37 +0100623 emif2: emif@4d000000 {
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530624 compatible = "ti,emif-4d5";
625 ti,hwmods = "emif2";
Rajendra Nayakf12ecbe2013-10-15 12:37:50 +0530626 ti,no-idle-on-init;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530627 phy-type = <2>; /* DDR PHY type: Intelli PHY */
628 reg = <0x4d000000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200629 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530630 hw-caps-read-idle-ctrl;
631 hw-caps-ll-interface;
632 hw-caps-temp-alert;
633 };
Kishon Vijay Abraham Ifedc4282013-03-07 19:05:17 +0530634
635 omap_control_usb: omap-control-usb@4a002300 {
636 compatible = "ti,omap-control-usb";
637 reg = <0x4a002300 0x4>,
638 <0x4a002370 0x4>;
639 reg-names = "control_dev_conf", "phy_power_usb";
640 ti,type = <2>;
641 };
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530642
Felipe Balbie3a412c2013-08-21 20:01:32 +0530643 usb3: omap_dwc3@4a020000 {
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530644 compatible = "ti,dwc3";
645 ti,hwmods = "usb_otg_ss";
Felipe Balbi6f61ee22013-08-21 20:01:30 +0530646 reg = <0x4a020000 0x10000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200647 interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530648 #address-cells = <1>;
649 #size-cells = <1>;
650 utmi-mode = <2>;
651 ranges;
652 dwc3@4a030000 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +0300653 compatible = "snps,dwc3";
Felipe Balbi6f61ee22013-08-21 20:01:30 +0530654 reg = <0x4a030000 0x10000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200655 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530656 usb-phy = <&usb2_phy>, <&usb3_phy>;
George Cherianc47ee6e2013-10-10 16:19:54 +0530657 dr_mode = "peripheral";
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530658 tx-fifo-resize;
659 };
660 };
661
Felipe Balbib6731f72013-08-21 20:01:31 +0530662 ocp2scp@4a080000 {
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530663 compatible = "ti,omap-ocp2scp";
664 #address-cells = <1>;
665 #size-cells = <1>;
Felipe Balbib6731f72013-08-21 20:01:31 +0530666 reg = <0x4a080000 0x20>;
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530667 ranges;
668 ti,hwmods = "ocp2scp1";
Kishon Vijay Abraham Iae6a32d2013-03-07 19:05:19 +0530669 usb2_phy: usb2phy@4a084000 {
670 compatible = "ti,omap-usb2";
671 reg = <0x4a084000 0x7c>;
672 ctrl-module = <&omap_control_usb>;
673 };
674
675 usb3_phy: usb3phy@4a084400 {
676 compatible = "ti,omap-usb3";
677 reg = <0x4a084400 0x80>,
678 <0x4a084800 0x64>,
679 <0x4a084c00 0x40>;
680 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
681 ctrl-module = <&omap_control_usb>;
682 };
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530683 };
Roger Quadrosed7f8e82013-06-07 18:52:48 +0530684
685 usbhstll: usbhstll@4a062000 {
686 compatible = "ti,usbhs-tll";
687 reg = <0x4a062000 0x1000>;
688 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
689 ti,hwmods = "usb_tll_hs";
690 };
691
692 usbhshost: usbhshost@4a064000 {
693 compatible = "ti,usbhs-host";
694 reg = <0x4a064000 0x800>;
695 ti,hwmods = "usb_host_hs";
696 #address-cells = <1>;
697 #size-cells = <1>;
698 ranges;
699
700 usbhsohci: ohci@4a064800 {
701 compatible = "ti,ohci-omap3", "usb-ohci";
702 reg = <0x4a064800 0x400>;
703 interrupt-parent = <&gic>;
704 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
705 };
706
707 usbhsehci: ehci@4a064c00 {
708 compatible = "ti,ehci-omap", "usb-ehci";
709 reg = <0x4a064c00 0x400>;
710 interrupt-parent = <&gic>;
711 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
712 };
713 };
Eduardo Valentincbad26d2013-06-18 22:36:38 -0400714
715 bandgap@4a0021e0 {
716 reg = <0x4a0021e0 0xc
717 0x4a00232c 0xc
718 0x4a002380 0x2c
719 0x4a0023C0 0x3c>;
720 interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
721 compatible = "ti,omap5430-bandgap";
722 };
R Sricharan6b5de092012-05-10 19:46:00 +0530723 };
724};