blob: ea4054bfdfd4964c57573813de9306f5f538c034 [file] [log] [blame]
Benoit Coussond9fda072011-08-09 17:15:17 +02001/*
2 * Copyright (C) 2011 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 */
8
Florian Vaussard6d624ea2013-05-31 14:32:56 +02009#include <dt-bindings/gpio/gpio.h>
Florian Vaussard8fea7d52013-05-31 14:32:57 +020010#include <dt-bindings/interrupt-controller/arm-gic.h>
Florian Vaussardbcd3cca2013-05-31 14:32:59 +020011#include <dt-bindings/pinctrl/omap.h>
Benoit Coussond9fda072011-08-09 17:15:17 +020012
Florian Vaussard98ef79572013-05-31 14:32:55 +020013#include "skeleton.dtsi"
Benoit Coussond9fda072011-08-09 17:15:17 +020014
15/ {
16 compatible = "ti,omap4430", "ti,omap4";
17 interrupt-parent = <&gic>;
18
19 aliases {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +053020 serial0 = &uart1;
21 serial1 = &uart2;
22 serial2 = &uart3;
23 serial3 = &uart4;
Benoit Coussond9fda072011-08-09 17:15:17 +020024 };
25
Benoit Cousson476b6792011-08-16 11:49:08 +020026 cpus {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010027 #address-cells = <1>;
28 #size-cells = <0>;
29
Benoit Cousson476b6792011-08-16 11:49:08 +020030 cpu@0 {
31 compatible = "arm,cortex-a9";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010032 device_type = "cpu";
Santosh Shilimkar926fd452012-07-04 17:57:34 +053033 next-level-cache = <&L2>;
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010034 reg = <0x0>;
Benoit Cousson476b6792011-08-16 11:49:08 +020035 };
36 cpu@1 {
37 compatible = "arm,cortex-a9";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010038 device_type = "cpu";
Santosh Shilimkar926fd452012-07-04 17:57:34 +053039 next-level-cache = <&L2>;
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010040 reg = <0x1>;
Benoit Cousson476b6792011-08-16 11:49:08 +020041 };
42 };
43
Benoit Cousson56351212012-09-03 17:56:32 +020044 gic: interrupt-controller@48241000 {
45 compatible = "arm,cortex-a9-gic";
46 interrupt-controller;
47 #interrupt-cells = <3>;
48 reg = <0x48241000 0x1000>,
49 <0x48240100 0x0100>;
50 };
51
Santosh Shilimkar926fd452012-07-04 17:57:34 +053052 L2: l2-cache-controller@48242000 {
53 compatible = "arm,pl310-cache";
54 reg = <0x48242000 0x1000>;
55 cache-unified;
56 cache-level = <2>;
57 };
58
Santosh Shilimkareed0de22012-07-04 18:32:32 +053059 local-timer@0x48240600 {
60 compatible = "arm,cortex-a9-twd-timer";
61 reg = <0x48240600 0x20>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +020062 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_HIGH)>;
Santosh Shilimkareed0de22012-07-04 18:32:32 +053063 };
64
Benoit Coussond9fda072011-08-09 17:15:17 +020065 /*
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";
Benoit Cousson476b6792011-08-16 11:49:08 +020071 mpu {
72 compatible = "ti,omap4-mpu";
73 ti,hwmods = "mpu";
74 };
75
76 dsp {
77 compatible = "ti,omap3-c64";
78 ti,hwmods = "dsp";
79 };
80
81 iva {
82 compatible = "ti,ivahd";
83 ti,hwmods = "iva";
84 };
Benoit Coussond9fda072011-08-09 17:15:17 +020085 };
86
87 /*
88 * XXX: Use a flat representation of the OMAP4 interconnect.
89 * The real OMAP interconnect network is quite complex.
Benoit Coussond9fda072011-08-09 17:15:17 +020090 * Since that will not bring real advantage to represent that in DT for
91 * the moment, just use a fake OCP bus entry to represent the whole bus
92 * hierarchy.
93 */
94 ocp {
Benoit Coussonad8dfac2011-08-12 13:48:47 +020095 compatible = "ti,omap4-l3-noc", "simple-bus";
Benoit Coussond9fda072011-08-09 17:15:17 +020096 #address-cells = <1>;
97 #size-cells = <1>;
98 ranges;
Benoit Coussonad8dfac2011-08-12 13:48:47 +020099 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
Santosh Shilimkar20a60ea2013-02-26 17:36:14 +0530100 reg = <0x44000000 0x1000>,
101 <0x44800000 0x2000>,
102 <0x45000000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200103 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
104 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussond9fda072011-08-09 17:15:17 +0200105
Jon Hunter510c0ff2012-10-25 14:24:14 -0500106 counter32k: counter@4a304000 {
107 compatible = "ti,omap-counter32k";
108 reg = <0x4a304000 0x20>;
109 ti,hwmods = "counter_32k";
110 };
111
Tony Lindgren679e3312012-09-10 10:34:51 -0700112 omap4_pmx_core: pinmux@4a100040 {
113 compatible = "ti,omap4-padconf", "pinctrl-single";
114 reg = <0x4a100040 0x0196>;
115 #address-cells = <1>;
116 #size-cells = <0>;
117 pinctrl-single,register-width = <16>;
118 pinctrl-single,function-mask = <0x7fff>;
119 };
120 omap4_pmx_wkup: pinmux@4a31e040 {
121 compatible = "ti,omap4-padconf", "pinctrl-single";
122 reg = <0x4a31e040 0x0038>;
123 #address-cells = <1>;
124 #size-cells = <0>;
125 pinctrl-single,register-width = <16>;
126 pinctrl-single,function-mask = <0x7fff>;
127 };
128
Jon Hunter2c2dc542012-04-26 13:47:59 -0500129 sdma: dma-controller@4a056000 {
130 compatible = "ti,omap4430-sdma";
131 reg = <0x4a056000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200132 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
133 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
134 <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
135 <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500136 #dma-cells = <1>;
137 #dma-channels = <32>;
138 #dma-requests = <127>;
139 };
140
Benoit Coussone3e5a922011-08-16 11:51:54 +0200141 gpio1: gpio@4a310000 {
142 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200143 reg = <0x4a310000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200144 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200145 ti,hwmods = "gpio1";
Jon Huntere4b9b9f2013-04-04 15:16:16 -0500146 ti,gpio-always-on;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200147 gpio-controller;
148 #gpio-cells = <2>;
149 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600150 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200151 };
152
153 gpio2: gpio@48055000 {
154 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200155 reg = <0x48055000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200156 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200157 ti,hwmods = "gpio2";
158 gpio-controller;
159 #gpio-cells = <2>;
160 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600161 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200162 };
163
164 gpio3: gpio@48057000 {
165 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200166 reg = <0x48057000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200167 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200168 ti,hwmods = "gpio3";
169 gpio-controller;
170 #gpio-cells = <2>;
171 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600172 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200173 };
174
175 gpio4: gpio@48059000 {
176 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200177 reg = <0x48059000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200178 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200179 ti,hwmods = "gpio4";
180 gpio-controller;
181 #gpio-cells = <2>;
182 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600183 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200184 };
185
186 gpio5: gpio@4805b000 {
187 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200188 reg = <0x4805b000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200189 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200190 ti,hwmods = "gpio5";
191 gpio-controller;
192 #gpio-cells = <2>;
193 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600194 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200195 };
196
197 gpio6: gpio@4805d000 {
198 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200199 reg = <0x4805d000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200200 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200201 ti,hwmods = "gpio6";
202 gpio-controller;
203 #gpio-cells = <2>;
204 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600205 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200206 };
207
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600208 gpmc: gpmc@50000000 {
209 compatible = "ti,omap4430-gpmc";
210 reg = <0x50000000 0x1000>;
211 #address-cells = <2>;
212 #size-cells = <1>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200213 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600214 gpmc,num-cs = <8>;
215 gpmc,num-waitpins = <4>;
216 ti,hwmods = "gpmc";
217 };
218
Benoit Cousson19bfb762012-02-16 11:55:27 +0100219 uart1: serial@4806a000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530220 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200221 reg = <0x4806a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200222 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530223 ti,hwmods = "uart1";
224 clock-frequency = <48000000>;
225 };
226
Benoit Cousson19bfb762012-02-16 11:55:27 +0100227 uart2: serial@4806c000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530228 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200229 reg = <0x4806c000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200230 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530231 ti,hwmods = "uart2";
232 clock-frequency = <48000000>;
233 };
234
Benoit Cousson19bfb762012-02-16 11:55:27 +0100235 uart3: serial@48020000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530236 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200237 reg = <0x48020000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200238 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530239 ti,hwmods = "uart3";
240 clock-frequency = <48000000>;
241 };
242
Benoit Cousson19bfb762012-02-16 11:55:27 +0100243 uart4: serial@4806e000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530244 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200245 reg = <0x4806e000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200246 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530247 ti,hwmods = "uart4";
248 clock-frequency = <48000000>;
249 };
Benoit Cousson58e778f2011-08-17 19:00:03 +0530250
251 i2c1: i2c@48070000 {
252 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200253 reg = <0x48070000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200254 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530255 #address-cells = <1>;
256 #size-cells = <0>;
257 ti,hwmods = "i2c1";
258 };
259
260 i2c2: i2c@48072000 {
261 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200262 reg = <0x48072000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200263 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530264 #address-cells = <1>;
265 #size-cells = <0>;
266 ti,hwmods = "i2c2";
267 };
268
269 i2c3: i2c@48060000 {
270 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200271 reg = <0x48060000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200272 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530273 #address-cells = <1>;
274 #size-cells = <0>;
275 ti,hwmods = "i2c3";
276 };
277
278 i2c4: i2c@48350000 {
279 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200280 reg = <0x48350000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200281 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530282 #address-cells = <1>;
283 #size-cells = <0>;
284 ti,hwmods = "i2c4";
285 };
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100286
287 mcspi1: spi@48098000 {
288 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200289 reg = <0x48098000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200290 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100291 #address-cells = <1>;
292 #size-cells = <0>;
293 ti,hwmods = "mcspi1";
294 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500295 dmas = <&sdma 35>,
296 <&sdma 36>,
297 <&sdma 37>,
298 <&sdma 38>,
299 <&sdma 39>,
300 <&sdma 40>,
301 <&sdma 41>,
302 <&sdma 42>;
303 dma-names = "tx0", "rx0", "tx1", "rx1",
304 "tx2", "rx2", "tx3", "rx3";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100305 };
306
307 mcspi2: spi@4809a000 {
308 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200309 reg = <0x4809a000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200310 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100311 #address-cells = <1>;
312 #size-cells = <0>;
313 ti,hwmods = "mcspi2";
314 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500315 dmas = <&sdma 43>,
316 <&sdma 44>,
317 <&sdma 45>,
318 <&sdma 46>;
319 dma-names = "tx0", "rx0", "tx1", "rx1";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100320 };
321
322 mcspi3: spi@480b8000 {
323 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200324 reg = <0x480b8000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200325 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100326 #address-cells = <1>;
327 #size-cells = <0>;
328 ti,hwmods = "mcspi3";
329 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500330 dmas = <&sdma 15>, <&sdma 16>;
331 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100332 };
333
334 mcspi4: spi@480ba000 {
335 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200336 reg = <0x480ba000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200337 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100338 #address-cells = <1>;
339 #size-cells = <0>;
340 ti,hwmods = "mcspi4";
341 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500342 dmas = <&sdma 70>, <&sdma 71>;
343 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100344 };
Rajendra Nayak74981762011-10-04 17:10:27 +0530345
346 mmc1: mmc@4809c000 {
347 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200348 reg = <0x4809c000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200349 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530350 ti,hwmods = "mmc1";
351 ti,dual-volt;
352 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500353 dmas = <&sdma 61>, <&sdma 62>;
354 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530355 };
356
357 mmc2: mmc@480b4000 {
358 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200359 reg = <0x480b4000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200360 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530361 ti,hwmods = "mmc2";
362 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500363 dmas = <&sdma 47>, <&sdma 48>;
364 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530365 };
366
367 mmc3: mmc@480ad000 {
368 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200369 reg = <0x480ad000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200370 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530371 ti,hwmods = "mmc3";
372 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500373 dmas = <&sdma 77>, <&sdma 78>;
374 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530375 };
376
377 mmc4: mmc@480d1000 {
378 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200379 reg = <0x480d1000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200380 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530381 ti,hwmods = "mmc4";
382 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500383 dmas = <&sdma 57>, <&sdma 58>;
384 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530385 };
386
387 mmc5: mmc@480d5000 {
388 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200389 reg = <0x480d5000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200390 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530391 ti,hwmods = "mmc5";
392 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500393 dmas = <&sdma 59>, <&sdma 60>;
394 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530395 };
Xiao Jiang94c30732012-06-01 12:44:14 +0800396
397 wdt2: wdt@4a314000 {
398 compatible = "ti,omap4-wdt", "ti,omap3-wdt";
Benoit Cousson48420db2012-09-05 11:38:23 +0200399 reg = <0x4a314000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200400 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Xiao Jiang94c30732012-06-01 12:44:14 +0800401 ti,hwmods = "wd_timer2";
402 };
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300403
404 mcpdm: mcpdm@40132000 {
405 compatible = "ti,omap4-mcpdm";
406 reg = <0x40132000 0x7f>, /* MPU private access */
407 <0x49032000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300408 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200409 interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300410 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100411 dmas = <&sdma 65>,
412 <&sdma 66>;
413 dma-names = "up_link", "dn_link";
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300414 };
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300415
416 dmic: dmic@4012e000 {
417 compatible = "ti,omap4-dmic";
418 reg = <0x4012e000 0x7f>, /* MPU private access */
419 <0x4902e000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300420 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200421 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300422 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100423 dmas = <&sdma 67>;
424 dma-names = "up_link";
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300425 };
Sourav Poddar61bc3542012-08-14 16:45:37 +0530426
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300427 mcbsp1: mcbsp@40122000 {
428 compatible = "ti,omap4-mcbsp";
429 reg = <0x40122000 0xff>, /* MPU private access */
430 <0x49022000 0xff>; /* L3 Interconnect */
431 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200432 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300433 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300434 ti,buffer-size = <128>;
435 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100436 dmas = <&sdma 33>,
437 <&sdma 34>;
438 dma-names = "tx", "rx";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300439 };
440
441 mcbsp2: mcbsp@40124000 {
442 compatible = "ti,omap4-mcbsp";
443 reg = <0x40124000 0xff>, /* MPU private access */
444 <0x49024000 0xff>; /* L3 Interconnect */
445 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200446 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300447 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300448 ti,buffer-size = <128>;
449 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100450 dmas = <&sdma 17>,
451 <&sdma 18>;
452 dma-names = "tx", "rx";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300453 };
454
455 mcbsp3: mcbsp@40126000 {
456 compatible = "ti,omap4-mcbsp";
457 reg = <0x40126000 0xff>, /* MPU private access */
458 <0x49026000 0xff>; /* L3 Interconnect */
459 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200460 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300461 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300462 ti,buffer-size = <128>;
463 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100464 dmas = <&sdma 19>,
465 <&sdma 20>;
466 dma-names = "tx", "rx";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300467 };
468
469 mcbsp4: mcbsp@48096000 {
470 compatible = "ti,omap4-mcbsp";
471 reg = <0x48096000 0xff>; /* L4 Interconnect */
472 reg-names = "mpu";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200473 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300474 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300475 ti,buffer-size = <128>;
476 ti,hwmods = "mcbsp4";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100477 dmas = <&sdma 31>,
478 <&sdma 32>;
479 dma-names = "tx", "rx";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300480 };
481
Sourav Poddar61bc3542012-08-14 16:45:37 +0530482 keypad: keypad@4a31c000 {
483 compatible = "ti,omap4-keypad";
Benoit Cousson48420db2012-09-05 11:38:23 +0200484 reg = <0x4a31c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200485 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson48420db2012-09-05 11:38:23 +0200486 reg-names = "mpu";
Sourav Poddar61bc3542012-08-14 16:45:37 +0530487 ti,hwmods = "kbd";
488 };
Aneesh V11c27062012-01-20 20:35:26 +0530489
490 emif1: emif@4c000000 {
491 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200492 reg = <0x4c000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200493 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530494 ti,hwmods = "emif1";
495 phy-type = <1>;
496 hw-caps-read-idle-ctrl;
497 hw-caps-ll-interface;
498 hw-caps-temp-alert;
499 };
500
501 emif2: emif@4d000000 {
502 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200503 reg = <0x4d000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200504 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530505 ti,hwmods = "emif2";
506 phy-type = <1>;
507 hw-caps-read-idle-ctrl;
508 hw-caps-ll-interface;
509 hw-caps-temp-alert;
510 };
Linus Torvalds8f446a72012-10-01 18:46:13 -0700511
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530512 ocp2scp@4a0ad000 {
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530513 compatible = "ti,omap-ocp2scp";
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530514 reg = <0x4a0ad000 0x1f>;
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530515 #address-cells = <1>;
516 #size-cells = <1>;
517 ranges;
518 ti,hwmods = "ocp2scp_usb_phy";
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530519 usb2_phy: usb2phy@4a0ad080 {
520 compatible = "ti,omap-usb2";
521 reg = <0x4a0ad080 0x58>;
Roger Quadros470019a2013-10-03 18:12:36 +0300522 ctrl-module = <&omap_control_usb2phy>;
Kishon Vijay Abraham I975d9632013-09-27 11:53:29 +0530523 #phy-cells = <0>;
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530524 };
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530525 };
Jon Hunterfab8ad02012-10-19 09:59:00 -0500526
527 timer1: timer@4a318000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500528 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500529 reg = <0x4a318000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200530 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500531 ti,hwmods = "timer1";
532 ti,timer-alwon;
533 };
534
535 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500536 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500537 reg = <0x48032000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200538 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500539 ti,hwmods = "timer2";
540 };
541
542 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500543 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500544 reg = <0x48034000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200545 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500546 ti,hwmods = "timer3";
547 };
548
549 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500550 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500551 reg = <0x48036000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200552 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500553 ti,hwmods = "timer4";
554 };
555
Jon Hunterd03a93b2012-11-01 08:57:08 -0500556 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500557 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500558 reg = <0x40138000 0x80>,
559 <0x49038000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200560 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500561 ti,hwmods = "timer5";
562 ti,timer-dsp;
563 };
564
Jon Hunterd03a93b2012-11-01 08:57:08 -0500565 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500566 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500567 reg = <0x4013a000 0x80>,
568 <0x4903a000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200569 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500570 ti,hwmods = "timer6";
571 ti,timer-dsp;
572 };
573
Jon Hunterd03a93b2012-11-01 08:57:08 -0500574 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500575 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500576 reg = <0x4013c000 0x80>,
577 <0x4903c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200578 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500579 ti,hwmods = "timer7";
580 ti,timer-dsp;
581 };
582
Jon Hunterd03a93b2012-11-01 08:57:08 -0500583 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500584 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500585 reg = <0x4013e000 0x80>,
586 <0x4903e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200587 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500588 ti,hwmods = "timer8";
589 ti,timer-pwm;
590 ti,timer-dsp;
591 };
592
593 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500594 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500595 reg = <0x4803e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200596 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500597 ti,hwmods = "timer9";
598 ti,timer-pwm;
599 };
600
601 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500602 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500603 reg = <0x48086000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200604 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500605 ti,hwmods = "timer10";
606 ti,timer-pwm;
607 };
608
609 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500610 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500611 reg = <0x48088000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200612 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500613 ti,hwmods = "timer11";
614 ti,timer-pwm;
615 };
Roger Quadrosf17c8992013-03-20 17:44:58 +0200616
617 usbhstll: usbhstll@4a062000 {
618 compatible = "ti,usbhs-tll";
619 reg = <0x4a062000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200620 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200621 ti,hwmods = "usb_tll_hs";
622 };
623
624 usbhshost: usbhshost@4a064000 {
625 compatible = "ti,usbhs-host";
626 reg = <0x4a064000 0x800>;
627 ti,hwmods = "usb_host_hs";
628 #address-cells = <1>;
629 #size-cells = <1>;
630 ranges;
631
632 usbhsohci: ohci@4a064800 {
633 compatible = "ti,ohci-omap3", "usb-ohci";
634 reg = <0x4a064800 0x400>;
635 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200636 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200637 };
638
639 usbhsehci: ehci@4a064c00 {
640 compatible = "ti,ehci-omap", "usb-ehci";
641 reg = <0x4a064c00 0x400>;
642 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200643 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200644 };
645 };
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +0530646
Roger Quadros470019a2013-10-03 18:12:36 +0300647 omap_control_usb2phy: control-phy@4a002300 {
648 compatible = "ti,control-phy-usb2";
649 reg = <0x4a002300 0x4>;
650 reg-names = "power";
651 };
652
653 omap_control_usbotg: control-phy@4a00233c {
654 compatible = "ti,control-phy-otghs";
655 reg = <0x4a00233c 0x4>;
656 reg-names = "otghs_control";
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +0530657 };
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530658
659 usb_otg_hs: usb_otg_hs@4a0ab000 {
660 compatible = "ti,omap4-musb";
661 reg = <0x4a0ab000 0x7ff>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200662 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530663 interrupt-names = "mc", "dma";
664 ti,hwmods = "usb_otg_hs";
665 usb-phy = <&usb2_phy>;
Kishon Vijay Abraham I975d9632013-09-27 11:53:29 +0530666 phys = <&usb2_phy>;
667 phy-names = "usb2-phy";
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530668 multipoint = <1>;
669 num-eps = <16>;
670 ram-bits = <12>;
Roger Quadros470019a2013-10-03 18:12:36 +0300671 ctrl-module = <&omap_control_usbotg>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530672 };
Benoit Coussond9fda072011-08-09 17:15:17 +0200673 };
674};