blob: e54992f0bf27bc6df3c4a1771eb5fd7d3e73ac46 [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 {
Nishanth Menon20b80942013-10-16 15:21:03 -050020 i2c0 = &i2c1;
21 i2c1 = &i2c2;
22 i2c2 = &i2c3;
23 i2c3 = &i2c4;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +053024 serial0 = &uart1;
25 serial1 = &uart2;
26 serial2 = &uart3;
27 serial3 = &uart4;
Benoit Coussond9fda072011-08-09 17:15:17 +020028 };
29
Benoit Cousson476b6792011-08-16 11:49:08 +020030 cpus {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010031 #address-cells = <1>;
32 #size-cells = <0>;
33
Benoit Cousson476b6792011-08-16 11:49:08 +020034 cpu@0 {
35 compatible = "arm,cortex-a9";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010036 device_type = "cpu";
Santosh Shilimkar926fd452012-07-04 17:57:34 +053037 next-level-cache = <&L2>;
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010038 reg = <0x0>;
Nishanth Menon8d766fa2014-01-29 12:19:17 -060039
40 clocks = <&dpll_mpu_ck>;
41 clock-names = "cpu";
42
43 clock-latency = <300000>; /* From omap-cpufreq driver */
Benoit Cousson476b6792011-08-16 11:49:08 +020044 };
45 cpu@1 {
46 compatible = "arm,cortex-a9";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010047 device_type = "cpu";
Santosh Shilimkar926fd452012-07-04 17:57:34 +053048 next-level-cache = <&L2>;
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010049 reg = <0x1>;
Benoit Cousson476b6792011-08-16 11:49:08 +020050 };
51 };
52
Benoit Cousson56351212012-09-03 17:56:32 +020053 gic: interrupt-controller@48241000 {
54 compatible = "arm,cortex-a9-gic";
55 interrupt-controller;
56 #interrupt-cells = <3>;
57 reg = <0x48241000 0x1000>,
58 <0x48240100 0x0100>;
59 };
60
Santosh Shilimkar926fd452012-07-04 17:57:34 +053061 L2: l2-cache-controller@48242000 {
62 compatible = "arm,pl310-cache";
63 reg = <0x48242000 0x1000>;
64 cache-unified;
65 cache-level = <2>;
66 };
67
Lee Jones75d71d42013-07-22 11:52:36 +010068 local-timer@48240600 {
Santosh Shilimkareed0de22012-07-04 18:32:32 +053069 compatible = "arm,cortex-a9-twd-timer";
Gilles Chanteperdrix23c47372014-04-07 22:05:39 +020070 clocks = <&mpu_periphclk>;
Santosh Shilimkareed0de22012-07-04 18:32:32 +053071 reg = <0x48240600 0x20>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +020072 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_HIGH)>;
Santosh Shilimkareed0de22012-07-04 18:32:32 +053073 };
74
Benoit Coussond9fda072011-08-09 17:15:17 +020075 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +010076 * The soc node represents the soc top level view. It is used for IPs
Benoit Coussond9fda072011-08-09 17:15:17 +020077 * that are not memory mapped in the MPU view or for the MPU itself.
78 */
79 soc {
80 compatible = "ti,omap-infra";
Benoit Cousson476b6792011-08-16 11:49:08 +020081 mpu {
82 compatible = "ti,omap4-mpu";
83 ti,hwmods = "mpu";
84 };
85
86 dsp {
87 compatible = "ti,omap3-c64";
88 ti,hwmods = "dsp";
89 };
90
91 iva {
92 compatible = "ti,ivahd";
93 ti,hwmods = "iva";
94 };
Benoit Coussond9fda072011-08-09 17:15:17 +020095 };
96
97 /*
98 * XXX: Use a flat representation of the OMAP4 interconnect.
99 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +0100100 * Since it will not bring real advantage to represent that in DT for
Benoit Coussond9fda072011-08-09 17:15:17 +0200101 * the moment, just use a fake OCP bus entry to represent the whole bus
102 * hierarchy.
103 */
104 ocp {
Benoit Coussonad8dfac2011-08-12 13:48:47 +0200105 compatible = "ti,omap4-l3-noc", "simple-bus";
Benoit Coussond9fda072011-08-09 17:15:17 +0200106 #address-cells = <1>;
107 #size-cells = <1>;
108 ranges;
Benoit Coussonad8dfac2011-08-12 13:48:47 +0200109 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
Santosh Shilimkar20a60ea2013-02-26 17:36:14 +0530110 reg = <0x44000000 0x1000>,
111 <0x44800000 0x2000>,
112 <0x45000000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200113 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
114 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussond9fda072011-08-09 17:15:17 +0200115
Tero Kristo2488ff62013-07-18 12:42:02 +0300116 cm1: cm1@4a004000 {
117 compatible = "ti,omap4-cm1";
118 reg = <0x4a004000 0x2000>;
119
120 cm1_clocks: clocks {
121 #address-cells = <1>;
122 #size-cells = <0>;
123 };
124
125 cm1_clockdomains: clockdomains {
126 };
127 };
128
129 prm: prm@4a306000 {
130 compatible = "ti,omap4-prm";
131 reg = <0x4a306000 0x3000>;
Nishanth Menon5081ce62014-08-22 09:03:50 -0500132 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
Tero Kristo2488ff62013-07-18 12:42:02 +0300133
134 prm_clocks: clocks {
135 #address-cells = <1>;
136 #size-cells = <0>;
137 };
138
139 prm_clockdomains: clockdomains {
140 };
141 };
142
143 cm2: cm2@4a008000 {
144 compatible = "ti,omap4-cm2";
145 reg = <0x4a008000 0x3000>;
146
147 cm2_clocks: clocks {
148 #address-cells = <1>;
149 #size-cells = <0>;
150 };
151
152 cm2_clockdomains: clockdomains {
153 };
154 };
155
156 scrm: scrm@4a30a000 {
157 compatible = "ti,omap4-scrm";
158 reg = <0x4a30a000 0x2000>;
159
160 scrm_clocks: clocks {
161 #address-cells = <1>;
162 #size-cells = <0>;
163 };
164
165 scrm_clockdomains: clockdomains {
166 };
167 };
168
Jon Hunter510c0ff2012-10-25 14:24:14 -0500169 counter32k: counter@4a304000 {
170 compatible = "ti,omap-counter32k";
171 reg = <0x4a304000 0x20>;
172 ti,hwmods = "counter_32k";
173 };
174
Tony Lindgren679e3312012-09-10 10:34:51 -0700175 omap4_pmx_core: pinmux@4a100040 {
176 compatible = "ti,omap4-padconf", "pinctrl-single";
177 reg = <0x4a100040 0x0196>;
178 #address-cells = <1>;
179 #size-cells = <0>;
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700180 #interrupt-cells = <1>;
181 interrupt-controller;
Tony Lindgren679e3312012-09-10 10:34:51 -0700182 pinctrl-single,register-width = <16>;
183 pinctrl-single,function-mask = <0x7fff>;
184 };
185 omap4_pmx_wkup: pinmux@4a31e040 {
186 compatible = "ti,omap4-padconf", "pinctrl-single";
187 reg = <0x4a31e040 0x0038>;
188 #address-cells = <1>;
189 #size-cells = <0>;
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700190 #interrupt-cells = <1>;
191 interrupt-controller;
Tony Lindgren679e3312012-09-10 10:34:51 -0700192 pinctrl-single,register-width = <16>;
193 pinctrl-single,function-mask = <0x7fff>;
194 };
195
Balaji T Kcd042fe2014-02-19 20:26:40 +0530196 omap4_padconf_global: tisyscon@4a1005a0 {
197 compatible = "syscon";
198 reg = <0x4a1005a0 0x170>;
199 };
200
201 pbias_regulator: pbias_regulator {
202 compatible = "ti,pbias-omap";
203 reg = <0x60 0x4>;
204 syscon = <&omap4_padconf_global>;
205 pbias_mmc_reg: pbias_mmc_omap4 {
206 regulator-name = "pbias_mmc_omap4";
207 regulator-min-microvolt = <1800000>;
208 regulator-max-microvolt = <3000000>;
209 };
210 };
211
Rajendra Nayak8b9a2812014-09-10 11:04:03 -0500212 ocmcram: ocmcram@40304000 {
213 compatible = "mmio-sram";
214 reg = <0x40304000 0xa000>; /* 40k */
215 };
216
Jon Hunter2c2dc542012-04-26 13:47:59 -0500217 sdma: dma-controller@4a056000 {
218 compatible = "ti,omap4430-sdma";
219 reg = <0x4a056000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200220 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
221 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
222 <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
223 <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500224 #dma-cells = <1>;
225 #dma-channels = <32>;
226 #dma-requests = <127>;
227 };
228
Benoit Coussone3e5a922011-08-16 11:51:54 +0200229 gpio1: gpio@4a310000 {
230 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200231 reg = <0x4a310000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200232 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200233 ti,hwmods = "gpio1";
Jon Huntere4b9b9f2013-04-04 15:16:16 -0500234 ti,gpio-always-on;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200235 gpio-controller;
236 #gpio-cells = <2>;
237 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600238 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200239 };
240
241 gpio2: gpio@48055000 {
242 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200243 reg = <0x48055000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200244 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200245 ti,hwmods = "gpio2";
246 gpio-controller;
247 #gpio-cells = <2>;
248 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600249 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200250 };
251
252 gpio3: gpio@48057000 {
253 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200254 reg = <0x48057000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200255 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200256 ti,hwmods = "gpio3";
257 gpio-controller;
258 #gpio-cells = <2>;
259 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600260 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200261 };
262
263 gpio4: gpio@48059000 {
264 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200265 reg = <0x48059000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200266 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200267 ti,hwmods = "gpio4";
268 gpio-controller;
269 #gpio-cells = <2>;
270 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600271 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200272 };
273
274 gpio5: gpio@4805b000 {
275 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200276 reg = <0x4805b000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200277 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200278 ti,hwmods = "gpio5";
279 gpio-controller;
280 #gpio-cells = <2>;
281 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600282 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200283 };
284
285 gpio6: gpio@4805d000 {
286 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200287 reg = <0x4805d000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200288 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200289 ti,hwmods = "gpio6";
290 gpio-controller;
291 #gpio-cells = <2>;
292 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600293 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200294 };
295
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600296 gpmc: gpmc@50000000 {
297 compatible = "ti,omap4430-gpmc";
298 reg = <0x50000000 0x1000>;
299 #address-cells = <2>;
300 #size-cells = <1>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200301 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600302 gpmc,num-cs = <8>;
303 gpmc,num-waitpins = <4>;
304 ti,hwmods = "gpmc";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530305 ti,no-idle-on-init;
Florian Vaussard7b8b6af2014-02-26 11:38:09 +0100306 clocks = <&l3_div_ck>;
307 clock-names = "fck";
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600308 };
309
Benoit Cousson19bfb762012-02-16 11:55:27 +0100310 uart1: serial@4806a000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530311 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200312 reg = <0x4806a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200313 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530314 ti,hwmods = "uart1";
315 clock-frequency = <48000000>;
316 };
317
Benoit Cousson19bfb762012-02-16 11:55:27 +0100318 uart2: serial@4806c000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530319 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200320 reg = <0x4806c000 0x100>;
Tony Lindgren31f08202014-05-05 17:27:39 -0700321 interrupts-extended = <&gic GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530322 ti,hwmods = "uart2";
323 clock-frequency = <48000000>;
324 };
325
Benoit Cousson19bfb762012-02-16 11:55:27 +0100326 uart3: serial@48020000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530327 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200328 reg = <0x48020000 0x100>;
Tony Lindgren31f08202014-05-05 17:27:39 -0700329 interrupts-extended = <&gic GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530330 ti,hwmods = "uart3";
331 clock-frequency = <48000000>;
332 };
333
Benoit Cousson19bfb762012-02-16 11:55:27 +0100334 uart4: serial@4806e000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530335 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200336 reg = <0x4806e000 0x100>;
Tony Lindgren31f08202014-05-05 17:27:39 -0700337 interrupts-extended = <&gic GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530338 ti,hwmods = "uart4";
339 clock-frequency = <48000000>;
340 };
Benoit Cousson58e778f2011-08-17 19:00:03 +0530341
Suman Anna04c7d922013-10-10 16:15:33 -0500342 hwspinlock: spinlock@4a0f6000 {
343 compatible = "ti,omap4-hwspinlock";
344 reg = <0x4a0f6000 0x1000>;
345 ti,hwmods = "spinlock";
Suman Anna34054212014-01-13 18:26:45 -0600346 #hwlock-cells = <1>;
Suman Anna04c7d922013-10-10 16:15:33 -0500347 };
348
Benoit Cousson58e778f2011-08-17 19:00:03 +0530349 i2c1: i2c@48070000 {
350 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200351 reg = <0x48070000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200352 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530353 #address-cells = <1>;
354 #size-cells = <0>;
355 ti,hwmods = "i2c1";
356 };
357
358 i2c2: i2c@48072000 {
359 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200360 reg = <0x48072000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200361 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530362 #address-cells = <1>;
363 #size-cells = <0>;
364 ti,hwmods = "i2c2";
365 };
366
367 i2c3: i2c@48060000 {
368 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200369 reg = <0x48060000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200370 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530371 #address-cells = <1>;
372 #size-cells = <0>;
373 ti,hwmods = "i2c3";
374 };
375
376 i2c4: i2c@48350000 {
377 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200378 reg = <0x48350000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200379 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530380 #address-cells = <1>;
381 #size-cells = <0>;
382 ti,hwmods = "i2c4";
383 };
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100384
385 mcspi1: spi@48098000 {
386 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200387 reg = <0x48098000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200388 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100389 #address-cells = <1>;
390 #size-cells = <0>;
391 ti,hwmods = "mcspi1";
392 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500393 dmas = <&sdma 35>,
394 <&sdma 36>,
395 <&sdma 37>,
396 <&sdma 38>,
397 <&sdma 39>,
398 <&sdma 40>,
399 <&sdma 41>,
400 <&sdma 42>;
401 dma-names = "tx0", "rx0", "tx1", "rx1",
402 "tx2", "rx2", "tx3", "rx3";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100403 };
404
405 mcspi2: spi@4809a000 {
406 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200407 reg = <0x4809a000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200408 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100409 #address-cells = <1>;
410 #size-cells = <0>;
411 ti,hwmods = "mcspi2";
412 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500413 dmas = <&sdma 43>,
414 <&sdma 44>,
415 <&sdma 45>,
416 <&sdma 46>;
417 dma-names = "tx0", "rx0", "tx1", "rx1";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100418 };
419
420 mcspi3: spi@480b8000 {
421 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200422 reg = <0x480b8000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200423 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100424 #address-cells = <1>;
425 #size-cells = <0>;
426 ti,hwmods = "mcspi3";
427 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500428 dmas = <&sdma 15>, <&sdma 16>;
429 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100430 };
431
432 mcspi4: spi@480ba000 {
433 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200434 reg = <0x480ba000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200435 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100436 #address-cells = <1>;
437 #size-cells = <0>;
438 ti,hwmods = "mcspi4";
439 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500440 dmas = <&sdma 70>, <&sdma 71>;
441 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100442 };
Rajendra Nayak74981762011-10-04 17:10:27 +0530443
444 mmc1: mmc@4809c000 {
445 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200446 reg = <0x4809c000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200447 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530448 ti,hwmods = "mmc1";
449 ti,dual-volt;
450 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500451 dmas = <&sdma 61>, <&sdma 62>;
452 dma-names = "tx", "rx";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530453 pbias-supply = <&pbias_mmc_reg>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530454 };
455
456 mmc2: mmc@480b4000 {
457 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200458 reg = <0x480b4000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200459 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530460 ti,hwmods = "mmc2";
461 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500462 dmas = <&sdma 47>, <&sdma 48>;
463 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530464 };
465
466 mmc3: mmc@480ad000 {
467 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200468 reg = <0x480ad000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200469 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530470 ti,hwmods = "mmc3";
471 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500472 dmas = <&sdma 77>, <&sdma 78>;
473 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530474 };
475
476 mmc4: mmc@480d1000 {
477 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200478 reg = <0x480d1000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200479 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530480 ti,hwmods = "mmc4";
481 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500482 dmas = <&sdma 57>, <&sdma 58>;
483 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530484 };
485
486 mmc5: mmc@480d5000 {
487 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200488 reg = <0x480d5000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200489 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530490 ti,hwmods = "mmc5";
491 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500492 dmas = <&sdma 59>, <&sdma 60>;
493 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530494 };
Xiao Jiang94c30732012-06-01 12:44:14 +0800495
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600496 mmu_dsp: mmu@4a066000 {
497 compatible = "ti,omap4-iommu";
498 reg = <0x4a066000 0x100>;
499 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
500 ti,hwmods = "mmu_dsp";
501 };
502
503 mmu_ipu: mmu@55082000 {
504 compatible = "ti,omap4-iommu";
505 reg = <0x55082000 0x100>;
506 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
507 ti,hwmods = "mmu_ipu";
508 ti,iommu-bus-err-back;
509 };
510
Xiao Jiang94c30732012-06-01 12:44:14 +0800511 wdt2: wdt@4a314000 {
512 compatible = "ti,omap4-wdt", "ti,omap3-wdt";
Benoit Cousson48420db2012-09-05 11:38:23 +0200513 reg = <0x4a314000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200514 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Xiao Jiang94c30732012-06-01 12:44:14 +0800515 ti,hwmods = "wd_timer2";
516 };
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300517
518 mcpdm: mcpdm@40132000 {
519 compatible = "ti,omap4-mcpdm";
520 reg = <0x40132000 0x7f>, /* MPU private access */
521 <0x49032000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300522 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200523 interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300524 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100525 dmas = <&sdma 65>,
526 <&sdma 66>;
527 dma-names = "up_link", "dn_link";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200528 status = "disabled";
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300529 };
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300530
531 dmic: dmic@4012e000 {
532 compatible = "ti,omap4-dmic";
533 reg = <0x4012e000 0x7f>, /* MPU private access */
534 <0x4902e000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300535 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200536 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300537 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100538 dmas = <&sdma 67>;
539 dma-names = "up_link";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200540 status = "disabled";
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300541 };
Sourav Poddar61bc3542012-08-14 16:45:37 +0530542
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300543 mcbsp1: mcbsp@40122000 {
544 compatible = "ti,omap4-mcbsp";
545 reg = <0x40122000 0xff>, /* MPU private access */
546 <0x49022000 0xff>; /* L3 Interconnect */
547 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200548 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300549 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300550 ti,buffer-size = <128>;
551 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100552 dmas = <&sdma 33>,
553 <&sdma 34>;
554 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200555 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300556 };
557
558 mcbsp2: mcbsp@40124000 {
559 compatible = "ti,omap4-mcbsp";
560 reg = <0x40124000 0xff>, /* MPU private access */
561 <0x49024000 0xff>; /* L3 Interconnect */
562 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200563 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300564 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300565 ti,buffer-size = <128>;
566 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100567 dmas = <&sdma 17>,
568 <&sdma 18>;
569 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200570 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300571 };
572
573 mcbsp3: mcbsp@40126000 {
574 compatible = "ti,omap4-mcbsp";
575 reg = <0x40126000 0xff>, /* MPU private access */
576 <0x49026000 0xff>; /* L3 Interconnect */
577 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200578 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300579 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300580 ti,buffer-size = <128>;
581 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100582 dmas = <&sdma 19>,
583 <&sdma 20>;
584 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200585 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300586 };
587
588 mcbsp4: mcbsp@48096000 {
589 compatible = "ti,omap4-mcbsp";
590 reg = <0x48096000 0xff>; /* L4 Interconnect */
591 reg-names = "mpu";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200592 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300593 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300594 ti,buffer-size = <128>;
595 ti,hwmods = "mcbsp4";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100596 dmas = <&sdma 31>,
597 <&sdma 32>;
598 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200599 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300600 };
601
Sourav Poddar61bc3542012-08-14 16:45:37 +0530602 keypad: keypad@4a31c000 {
603 compatible = "ti,omap4-keypad";
Benoit Cousson48420db2012-09-05 11:38:23 +0200604 reg = <0x4a31c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200605 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson48420db2012-09-05 11:38:23 +0200606 reg-names = "mpu";
Sourav Poddar61bc3542012-08-14 16:45:37 +0530607 ti,hwmods = "kbd";
608 };
Aneesh V11c27062012-01-20 20:35:26 +0530609
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530610 dmm@4e000000 {
611 compatible = "ti,omap4-dmm";
612 reg = <0x4e000000 0x800>;
613 interrupts = <0 113 0x4>;
614 ti,hwmods = "dmm";
615 };
616
Aneesh V11c27062012-01-20 20:35:26 +0530617 emif1: emif@4c000000 {
618 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200619 reg = <0x4c000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200620 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530621 ti,hwmods = "emif1";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530622 ti,no-idle-on-init;
Aneesh V11c27062012-01-20 20:35:26 +0530623 phy-type = <1>;
624 hw-caps-read-idle-ctrl;
625 hw-caps-ll-interface;
626 hw-caps-temp-alert;
627 };
628
629 emif2: emif@4d000000 {
630 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200631 reg = <0x4d000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200632 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530633 ti,hwmods = "emif2";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530634 ti,no-idle-on-init;
Aneesh V11c27062012-01-20 20:35:26 +0530635 phy-type = <1>;
636 hw-caps-read-idle-ctrl;
637 hw-caps-ll-interface;
638 hw-caps-temp-alert;
639 };
Linus Torvalds8f446a72012-10-01 18:46:13 -0700640
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530641 ocp2scp@4a0ad000 {
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530642 compatible = "ti,omap-ocp2scp";
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530643 reg = <0x4a0ad000 0x1f>;
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530644 #address-cells = <1>;
645 #size-cells = <1>;
646 ranges;
647 ti,hwmods = "ocp2scp_usb_phy";
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530648 usb2_phy: usb2phy@4a0ad080 {
649 compatible = "ti,omap-usb2";
650 reg = <0x4a0ad080 0x58>;
Roger Quadros470019a2013-10-03 18:12:36 +0300651 ctrl-module = <&omap_control_usb2phy>;
Roger Quadrosc65d0ad2014-05-05 12:54:42 +0300652 clocks = <&usb_phy_cm_clk32k>;
653 clock-names = "wkupclk";
Kishon Vijay Abraham I975d963e2013-09-27 11:53:29 +0530654 #phy-cells = <0>;
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530655 };
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530656 };
Jon Hunterfab8ad02012-10-19 09:59:00 -0500657
Suman Anna8ebc30d2014-07-11 16:44:35 -0500658 mailbox: mailbox@4a0f4000 {
659 compatible = "ti,omap4-mailbox";
660 reg = <0x4a0f4000 0x200>;
661 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
662 ti,hwmods = "mailbox";
663 ti,mbox-num-users = <3>;
664 ti,mbox-num-fifos = <8>;
665 };
666
Jon Hunterfab8ad02012-10-19 09:59:00 -0500667 timer1: timer@4a318000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500668 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500669 reg = <0x4a318000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200670 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500671 ti,hwmods = "timer1";
672 ti,timer-alwon;
673 };
674
675 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500676 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500677 reg = <0x48032000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200678 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500679 ti,hwmods = "timer2";
680 };
681
682 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500683 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500684 reg = <0x48034000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200685 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500686 ti,hwmods = "timer3";
687 };
688
689 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500690 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500691 reg = <0x48036000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200692 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500693 ti,hwmods = "timer4";
694 };
695
Jon Hunterd03a93b2012-11-01 08:57:08 -0500696 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500697 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500698 reg = <0x40138000 0x80>,
699 <0x49038000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200700 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500701 ti,hwmods = "timer5";
702 ti,timer-dsp;
703 };
704
Jon Hunterd03a93b2012-11-01 08:57:08 -0500705 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500706 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500707 reg = <0x4013a000 0x80>,
708 <0x4903a000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200709 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500710 ti,hwmods = "timer6";
711 ti,timer-dsp;
712 };
713
Jon Hunterd03a93b2012-11-01 08:57:08 -0500714 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500715 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500716 reg = <0x4013c000 0x80>,
717 <0x4903c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200718 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500719 ti,hwmods = "timer7";
720 ti,timer-dsp;
721 };
722
Jon Hunterd03a93b2012-11-01 08:57:08 -0500723 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500724 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500725 reg = <0x4013e000 0x80>,
726 <0x4903e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200727 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500728 ti,hwmods = "timer8";
729 ti,timer-pwm;
730 ti,timer-dsp;
731 };
732
733 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500734 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500735 reg = <0x4803e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200736 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500737 ti,hwmods = "timer9";
738 ti,timer-pwm;
739 };
740
741 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500742 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500743 reg = <0x48086000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200744 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500745 ti,hwmods = "timer10";
746 ti,timer-pwm;
747 };
748
749 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500750 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500751 reg = <0x48088000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200752 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500753 ti,hwmods = "timer11";
754 ti,timer-pwm;
755 };
Roger Quadrosf17c8992013-03-20 17:44:58 +0200756
757 usbhstll: usbhstll@4a062000 {
758 compatible = "ti,usbhs-tll";
759 reg = <0x4a062000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200760 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200761 ti,hwmods = "usb_tll_hs";
762 };
763
764 usbhshost: usbhshost@4a064000 {
765 compatible = "ti,usbhs-host";
766 reg = <0x4a064000 0x800>;
767 ti,hwmods = "usb_host_hs";
768 #address-cells = <1>;
769 #size-cells = <1>;
770 ranges;
Roger Quadros051fc062014-02-27 16:18:26 +0200771 clocks = <&init_60m_fclk>,
772 <&xclk60mhsp1_ck>,
773 <&xclk60mhsp2_ck>;
774 clock-names = "refclk_60m_int",
775 "refclk_60m_ext_p1",
776 "refclk_60m_ext_p2";
Roger Quadrosf17c8992013-03-20 17:44:58 +0200777
778 usbhsohci: ohci@4a064800 {
Roger Quadrosa2525e52014-02-27 16:18:30 +0200779 compatible = "ti,ohci-omap3";
Roger Quadrosf17c8992013-03-20 17:44:58 +0200780 reg = <0x4a064800 0x400>;
781 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200782 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200783 };
784
785 usbhsehci: ehci@4a064c00 {
Roger Quadrosa2525e52014-02-27 16:18:30 +0200786 compatible = "ti,ehci-omap";
Roger Quadrosf17c8992013-03-20 17:44:58 +0200787 reg = <0x4a064c00 0x400>;
788 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200789 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200790 };
791 };
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +0530792
Roger Quadros470019a2013-10-03 18:12:36 +0300793 omap_control_usb2phy: control-phy@4a002300 {
794 compatible = "ti,control-phy-usb2";
795 reg = <0x4a002300 0x4>;
796 reg-names = "power";
797 };
798
799 omap_control_usbotg: control-phy@4a00233c {
800 compatible = "ti,control-phy-otghs";
801 reg = <0x4a00233c 0x4>;
802 reg-names = "otghs_control";
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +0530803 };
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530804
805 usb_otg_hs: usb_otg_hs@4a0ab000 {
806 compatible = "ti,omap4-musb";
807 reg = <0x4a0ab000 0x7ff>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200808 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530809 interrupt-names = "mc", "dma";
810 ti,hwmods = "usb_otg_hs";
811 usb-phy = <&usb2_phy>;
Kishon Vijay Abraham I975d963e2013-09-27 11:53:29 +0530812 phys = <&usb2_phy>;
813 phy-names = "usb2-phy";
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530814 multipoint = <1>;
815 num-eps = <16>;
816 ram-bits = <12>;
Roger Quadros470019a2013-10-03 18:12:36 +0300817 ctrl-module = <&omap_control_usbotg>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530818 };
Joel Fernandesdd6317d2013-07-11 18:20:05 -0500819
820 aes: aes@4b501000 {
821 compatible = "ti,omap4-aes";
822 ti,hwmods = "aes";
823 reg = <0x4b501000 0xa0>;
824 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
825 dmas = <&sdma 111>, <&sdma 110>;
826 dma-names = "tx", "rx";
827 };
Joel Fernandes806e9432013-09-24 15:23:33 -0500828
829 des: des@480a5000 {
830 compatible = "ti,omap4-des";
831 ti,hwmods = "des";
832 reg = <0x480a5000 0xa0>;
833 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
834 dmas = <&sdma 117>, <&sdma 116>;
835 dma-names = "tx", "rx";
836 };
Andrii.Tseglytskyie12c7732014-03-03 20:20:22 +0530837
838 abb_mpu: regulator-abb-mpu {
839 compatible = "ti,abb-v2";
840 regulator-name = "abb_mpu";
841 #address-cells = <0>;
842 #size-cells = <0>;
843 ti,tranxdone-status-mask = <0x80>;
844 clocks = <&sys_clkin_ck>;
845 ti,settling-time = <50>;
846 ti,clock-cycles = <16>;
847
848 status = "disabled";
849 };
850
851 abb_iva: regulator-abb-iva {
852 compatible = "ti,abb-v2";
853 regulator-name = "abb_iva";
854 #address-cells = <0>;
855 #size-cells = <0>;
856 ti,tranxdone-status-mask = <0x80000000>;
857 clocks = <&sys_clkin_ck>;
858 ti,settling-time = <50>;
859 ti,clock-cycles = <16>;
860
861 status = "disabled";
862 };
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +0300863
864 dss: dss@58000000 {
865 compatible = "ti,omap4-dss";
866 reg = <0x58000000 0x80>;
867 status = "disabled";
868 ti,hwmods = "dss_core";
869 clocks = <&dss_dss_clk>;
870 clock-names = "fck";
871 #address-cells = <1>;
872 #size-cells = <1>;
873 ranges;
874
875 dispc@58001000 {
876 compatible = "ti,omap4-dispc";
877 reg = <0x58001000 0x1000>;
878 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
879 ti,hwmods = "dss_dispc";
880 clocks = <&dss_dss_clk>;
881 clock-names = "fck";
882 };
883
884 rfbi: encoder@58002000 {
885 compatible = "ti,omap4-rfbi";
886 reg = <0x58002000 0x1000>;
887 status = "disabled";
888 ti,hwmods = "dss_rfbi";
889 clocks = <&dss_dss_clk>, <&dss_fck>;
890 clock-names = "fck", "ick";
891 };
892
893 venc: encoder@58003000 {
894 compatible = "ti,omap4-venc";
895 reg = <0x58003000 0x1000>;
896 status = "disabled";
897 ti,hwmods = "dss_venc";
898 clocks = <&dss_tv_clk>;
899 clock-names = "fck";
900 };
901
902 dsi1: encoder@58004000 {
903 compatible = "ti,omap4-dsi";
904 reg = <0x58004000 0x200>,
905 <0x58004200 0x40>,
906 <0x58004300 0x20>;
907 reg-names = "proto", "phy", "pll";
908 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
909 status = "disabled";
910 ti,hwmods = "dss_dsi1";
911 clocks = <&dss_dss_clk>, <&dss_sys_clk>;
912 clock-names = "fck", "sys_clk";
913 };
914
915 dsi2: encoder@58005000 {
916 compatible = "ti,omap4-dsi";
917 reg = <0x58005000 0x200>,
918 <0x58005200 0x40>,
919 <0x58005300 0x20>;
920 reg-names = "proto", "phy", "pll";
921 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
922 status = "disabled";
923 ti,hwmods = "dss_dsi2";
924 clocks = <&dss_dss_clk>, <&dss_sys_clk>;
925 clock-names = "fck", "sys_clk";
926 };
927
928 hdmi: encoder@58006000 {
929 compatible = "ti,omap4-hdmi";
930 reg = <0x58006000 0x200>,
931 <0x58006200 0x100>,
932 <0x58006300 0x100>,
933 <0x58006400 0x1000>;
934 reg-names = "wp", "pll", "phy", "core";
935 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
936 status = "disabled";
937 ti,hwmods = "dss_hdmi";
938 clocks = <&dss_48mhz_clk>, <&dss_sys_clk>;
939 clock-names = "fck", "sys_clk";
Jyri Sarha53855b32014-05-12 12:12:24 +0300940 dmas = <&sdma 76>;
941 dma-names = "audio_tx";
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +0300942 };
943 };
Benoit Coussond9fda072011-08-09 17:15:17 +0200944 };
945};
Tero Kristo2488ff62013-07-18 12:42:02 +0300946
947/include/ "omap44xx-clocks.dtsi"