blob: 787ea2a31593796c31d9d185960ffe071b51135a [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
Benoit Coussond9fda072011-08-09 17:15:17 +020013/ {
14 compatible = "ti,omap4430", "ti,omap4";
Marc Zyngier7136d452015-03-11 15:43:49 +000015 interrupt-parent = <&wakeupgen>;
Javier Martinez Canillasda6269e2016-08-31 12:35:19 +020016 #address-cells = <1>;
17 #size-cells = <1>;
Javier Martinez Canillas6c565d12016-12-19 11:44:35 -030018 chosen { };
Benoit Coussond9fda072011-08-09 17:15:17 +020019
20 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050021 i2c0 = &i2c1;
22 i2c1 = &i2c2;
23 i2c2 = &i2c3;
24 i2c3 = &i2c4;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +053025 serial0 = &uart1;
26 serial1 = &uart2;
27 serial2 = &uart3;
28 serial3 = &uart4;
Benoit Coussond9fda072011-08-09 17:15:17 +020029 };
30
Benoit Cousson476b6792011-08-16 11:49:08 +020031 cpus {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010032 #address-cells = <1>;
33 #size-cells = <0>;
34
Benoit Cousson476b6792011-08-16 11:49:08 +020035 cpu@0 {
36 compatible = "arm,cortex-a9";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010037 device_type = "cpu";
Santosh Shilimkar926fd452012-07-04 17:57:34 +053038 next-level-cache = <&L2>;
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010039 reg = <0x0>;
Nishanth Menon8d766fa2014-01-29 12:19:17 -060040
41 clocks = <&dpll_mpu_ck>;
42 clock-names = "cpu";
43
44 clock-latency = <300000>; /* From omap-cpufreq driver */
Benoit Cousson476b6792011-08-16 11:49:08 +020045 };
46 cpu@1 {
47 compatible = "arm,cortex-a9";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010048 device_type = "cpu";
Santosh Shilimkar926fd452012-07-04 17:57:34 +053049 next-level-cache = <&L2>;
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010050 reg = <0x1>;
Benoit Cousson476b6792011-08-16 11:49:08 +020051 };
52 };
53
Tony Lindgrenb0142a12017-08-30 08:19:38 -070054 /*
55 * Note that 4430 needs cross trigger interface (CTI) supported
56 * before we can configure the interrupts. This means sampling
57 * events are not supported for pmu. Note that 4460 does not use
58 * CTI, see also 4460.dtsi.
59 */
60 pmu {
61 compatible = "arm,cortex-a9-pmu";
62 ti,hwmods = "debugss";
63 };
64
Benoit Cousson56351212012-09-03 17:56:32 +020065 gic: interrupt-controller@48241000 {
66 compatible = "arm,cortex-a9-gic";
67 interrupt-controller;
68 #interrupt-cells = <3>;
69 reg = <0x48241000 0x1000>,
70 <0x48240100 0x0100>;
Marc Zyngier7136d452015-03-11 15:43:49 +000071 interrupt-parent = <&gic>;
Benoit Cousson56351212012-09-03 17:56:32 +020072 };
73
Santosh Shilimkar926fd452012-07-04 17:57:34 +053074 L2: l2-cache-controller@48242000 {
75 compatible = "arm,pl310-cache";
76 reg = <0x48242000 0x1000>;
77 cache-unified;
78 cache-level = <2>;
79 };
80
Lee Jones75d71d42013-07-22 11:52:36 +010081 local-timer@48240600 {
Santosh Shilimkareed0de22012-07-04 18:32:32 +053082 compatible = "arm,cortex-a9-twd-timer";
Gilles Chanteperdrix23c47372014-04-07 22:05:39 +020083 clocks = <&mpu_periphclk>;
Santosh Shilimkareed0de22012-07-04 18:32:32 +053084 reg = <0x48240600 0x20>;
Jon Hunter6b472572016-03-17 14:19:06 +000085 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_EDGE_RISING)>;
Marc Zyngier7136d452015-03-11 15:43:49 +000086 interrupt-parent = <&gic>;
87 };
88
89 wakeupgen: interrupt-controller@48281000 {
90 compatible = "ti,omap4-wugen-mpu";
91 interrupt-controller;
92 #interrupt-cells = <3>;
93 reg = <0x48281000 0x1000>;
94 interrupt-parent = <&gic>;
Santosh Shilimkareed0de22012-07-04 18:32:32 +053095 };
96
Benoit Coussond9fda072011-08-09 17:15:17 +020097 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +010098 * The soc node represents the soc top level view. It is used for IPs
Benoit Coussond9fda072011-08-09 17:15:17 +020099 * that are not memory mapped in the MPU view or for the MPU itself.
100 */
101 soc {
102 compatible = "ti,omap-infra";
Benoit Cousson476b6792011-08-16 11:49:08 +0200103 mpu {
104 compatible = "ti,omap4-mpu";
105 ti,hwmods = "mpu";
Rajendra Nayak1306c082014-09-10 11:04:04 -0500106 sram = <&ocmcram>;
Benoit Cousson476b6792011-08-16 11:49:08 +0200107 };
108
109 dsp {
110 compatible = "ti,omap3-c64";
111 ti,hwmods = "dsp";
112 };
113
114 iva {
115 compatible = "ti,ivahd";
116 ti,hwmods = "iva";
117 };
Benoit Coussond9fda072011-08-09 17:15:17 +0200118 };
119
120 /*
121 * XXX: Use a flat representation of the OMAP4 interconnect.
122 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +0100123 * Since it will not bring real advantage to represent that in DT for
Benoit Coussond9fda072011-08-09 17:15:17 +0200124 * the moment, just use a fake OCP bus entry to represent the whole bus
125 * hierarchy.
126 */
127 ocp {
Benoit Coussonad8dfac2011-08-12 13:48:47 +0200128 compatible = "ti,omap4-l3-noc", "simple-bus";
Benoit Coussond9fda072011-08-09 17:15:17 +0200129 #address-cells = <1>;
130 #size-cells = <1>;
131 ranges;
Benoit Coussonad8dfac2011-08-12 13:48:47 +0200132 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
Santosh Shilimkar20a60ea2013-02-26 17:36:14 +0530133 reg = <0x44000000 0x1000>,
134 <0x44800000 0x2000>,
135 <0x45000000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200136 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
137 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussond9fda072011-08-09 17:15:17 +0200138
Tero Kristo7415b0b2015-02-12 11:32:14 +0200139 l4_cfg: l4@4a000000 {
140 compatible = "ti,omap4-l4-cfg", "simple-bus";
Tony Lindgren679e3312012-09-10 10:34:51 -0700141 #address-cells = <1>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200142 #size-cells = <1>;
143 ranges = <0 0x4a000000 0x1000000>;
Tony Lindgren679e3312012-09-10 10:34:51 -0700144
Tero Kristo7415b0b2015-02-12 11:32:14 +0200145 cm1: cm1@4000 {
Tero Kristod007d652017-12-07 10:46:42 +0200146 compatible = "ti,omap4-cm1", "simple-bus";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200147 reg = <0x4000 0x2000>;
Tero Kristod007d652017-12-07 10:46:42 +0200148 #address-cells = <1>;
149 #size-cells = <1>;
150 ranges = <0 0x4000 0x2000>;
Balaji T Kcd042fe2014-02-19 20:26:40 +0530151
Tero Kristo7415b0b2015-02-12 11:32:14 +0200152 cm1_clocks: clocks {
153 #address-cells = <1>;
154 #size-cells = <0>;
155 };
156
157 cm1_clockdomains: clockdomains {
158 };
159 };
160
161 cm2: cm2@8000 {
Tero Kristod007d652017-12-07 10:46:42 +0200162 compatible = "ti,omap4-cm2", "simple-bus";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200163 reg = <0x8000 0x3000>;
Tero Kristod007d652017-12-07 10:46:42 +0200164 #address-cells = <1>;
165 #size-cells = <1>;
166 ranges = <0 0x8000 0x3000>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200167
168 cm2_clocks: clocks {
169 #address-cells = <1>;
170 #size-cells = <0>;
171 };
172
173 cm2_clockdomains: clockdomains {
174 };
175 };
176
177 omap4_scm_core: scm@2000 {
178 compatible = "ti,omap4-scm-core", "simple-bus";
179 reg = <0x2000 0x1000>;
180 #address-cells = <1>;
181 #size-cells = <1>;
182 ranges = <0 0x2000 0x1000>;
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700183 ti,hwmods = "ctrl_module_core";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200184
185 scm_conf: scm_conf@0 {
186 compatible = "syscon";
187 reg = <0x0 0x800>;
188 #address-cells = <1>;
189 #size-cells = <1>;
190 };
191 };
192
193 omap4_padconf_core: scm@100000 {
194 compatible = "ti,omap4-scm-padconf-core",
195 "simple-bus";
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700196 reg = <0x100000 0x1000>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200197 #address-cells = <1>;
198 #size-cells = <1>;
199 ranges = <0 0x100000 0x1000>;
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700200 ti,hwmods = "ctrl_module_pad_core";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200201
202 omap4_pmx_core: pinmux@40 {
203 compatible = "ti,omap4-padconf",
204 "pinctrl-single";
205 reg = <0x40 0x0196>;
206 #address-cells = <1>;
207 #size-cells = <0>;
Tony Lindgrenbe76fd32016-11-07 08:27:49 -0700208 #pinctrl-cells = <1>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200209 #interrupt-cells = <1>;
210 interrupt-controller;
211 pinctrl-single,register-width = <16>;
212 pinctrl-single,function-mask = <0x7fff>;
213 };
214
215 omap4_padconf_global: omap4_padconf_global@5a0 {
Kishon Vijay Abraham I89a898d2015-07-27 17:46:39 +0530216 compatible = "syscon",
217 "simple-bus";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200218 reg = <0x5a0 0x170>;
219 #address-cells = <1>;
220 #size-cells = <1>;
Kishon Vijay Abraham I9a5e3f22015-09-04 17:38:24 +0530221 ranges = <0 0x5a0 0x170>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200222
Javier Martinez Canillas308cfda2016-04-01 16:20:18 -0400223 pbias_regulator: pbias_regulator@60 {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530224 compatible = "ti,pbias-omap4", "ti,pbias-omap";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200225 reg = <0x60 0x4>;
226 syscon = <&omap4_padconf_global>;
227 pbias_mmc_reg: pbias_mmc_omap4 {
228 regulator-name = "pbias_mmc_omap4";
229 regulator-min-microvolt = <1800000>;
230 regulator-max-microvolt = <3000000>;
231 };
232 };
233 };
234 };
235
236 l4_wkup: l4@300000 {
237 compatible = "ti,omap4-l4-wkup", "simple-bus";
238 #address-cells = <1>;
239 #size-cells = <1>;
240 ranges = <0 0x300000 0x40000>;
241
242 counter32k: counter@4000 {
243 compatible = "ti,omap-counter32k";
244 reg = <0x4000 0x20>;
245 ti,hwmods = "counter_32k";
246 };
247
248 prm: prm@6000 {
249 compatible = "ti,omap4-prm";
250 reg = <0x6000 0x3000>;
251 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
Tero Kristod007d652017-12-07 10:46:42 +0200252 #address-cells = <1>;
253 #size-cells = <1>;
254 ranges = <0 0x6000 0x3000>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200255
256 prm_clocks: clocks {
257 #address-cells = <1>;
258 #size-cells = <0>;
259 };
260
261 prm_clockdomains: clockdomains {
262 };
263 };
264
265 scrm: scrm@a000 {
266 compatible = "ti,omap4-scrm";
267 reg = <0xa000 0x2000>;
268
269 scrm_clocks: clocks {
270 #address-cells = <1>;
271 #size-cells = <0>;
272 };
273
274 scrm_clockdomains: clockdomains {
275 };
276 };
277
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700278 omap4_scm_wkup: scm@c000 {
279 compatible = "ti,omap4-scm-wkup";
280 reg = <0xc000 0x1000>;
281 ti,hwmods = "ctrl_module_wkup";
282 };
283
284 omap4_padconf_wkup: padconf@1e000 {
285 compatible = "ti,omap4-scm-padconf-wkup",
286 "simple-bus";
287 reg = <0x1e000 0x1000>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200288 #address-cells = <1>;
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700289 #size-cells = <1>;
290 ranges = <0 0x1e000 0x1000>;
291 ti,hwmods = "ctrl_module_pad_wkup";
292
293 omap4_pmx_wkup: pinmux@40 {
294 compatible = "ti,omap4-padconf",
295 "pinctrl-single";
296 reg = <0x40 0x0038>;
297 #address-cells = <1>;
298 #size-cells = <0>;
299 #pinctrl-cells = <1>;
300 #interrupt-cells = <1>;
301 interrupt-controller;
302 pinctrl-single,register-width = <16>;
303 pinctrl-single,function-mask = <0x7fff>;
304 };
Tero Kristo7415b0b2015-02-12 11:32:14 +0200305 };
Balaji T Kcd042fe2014-02-19 20:26:40 +0530306 };
307 };
308
Rajendra Nayak8b9a2812014-09-10 11:04:03 -0500309 ocmcram: ocmcram@40304000 {
310 compatible = "mmio-sram";
311 reg = <0x40304000 0xa000>; /* 40k */
312 };
313
Jon Hunter2c2dc542012-04-26 13:47:59 -0500314 sdma: dma-controller@4a056000 {
315 compatible = "ti,omap4430-sdma";
316 reg = <0x4a056000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200317 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
318 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
319 <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
320 <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500321 #dma-cells = <1>;
Peter Ujfalusi24ac1772015-02-20 15:42:04 +0200322 dma-channels = <32>;
323 dma-requests = <127>;
Tony Lindgren370ad6b2017-08-30 08:19:40 -0700324 ti,hwmods = "dma_system";
Jon Hunter2c2dc542012-04-26 13:47:59 -0500325 };
326
Benoit Coussone3e5a922011-08-16 11:51:54 +0200327 gpio1: gpio@4a310000 {
328 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200329 reg = <0x4a310000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200330 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200331 ti,hwmods = "gpio1";
Jon Huntere4b9b9f2013-04-04 15:16:16 -0500332 ti,gpio-always-on;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200333 gpio-controller;
334 #gpio-cells = <2>;
335 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600336 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200337 };
338
339 gpio2: gpio@48055000 {
340 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200341 reg = <0x48055000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200342 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200343 ti,hwmods = "gpio2";
344 gpio-controller;
345 #gpio-cells = <2>;
346 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600347 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200348 };
349
350 gpio3: gpio@48057000 {
351 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200352 reg = <0x48057000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200353 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200354 ti,hwmods = "gpio3";
355 gpio-controller;
356 #gpio-cells = <2>;
357 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600358 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200359 };
360
361 gpio4: gpio@48059000 {
362 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200363 reg = <0x48059000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200364 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200365 ti,hwmods = "gpio4";
366 gpio-controller;
367 #gpio-cells = <2>;
368 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600369 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200370 };
371
372 gpio5: gpio@4805b000 {
373 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200374 reg = <0x4805b000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200375 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200376 ti,hwmods = "gpio5";
377 gpio-controller;
378 #gpio-cells = <2>;
379 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600380 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200381 };
382
383 gpio6: gpio@4805d000 {
384 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200385 reg = <0x4805d000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200386 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200387 ti,hwmods = "gpio6";
388 gpio-controller;
389 #gpio-cells = <2>;
390 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600391 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200392 };
393
Tony Lindgrend23a1632017-10-10 14:14:50 -0700394 target-module@48076000 {
395 compatible = "ti,sysc-omap4";
396 ti,hwmods = "slimbus2";
397 reg = <0x48076000 0x4>,
398 <0x48076010 0x4>;
399 reg-names = "rev", "sysc";
400 #address-cells = <1>;
401 #size-cells = <1>;
402 ranges = <0 0x48076000 0x001000>;
403
404 /* No child device binding or driver in mainline */
405 };
406
Franklin S Cooper Jr258511e2015-10-28 16:02:16 -0500407 elm: elm@48078000 {
408 compatible = "ti,am3352-elm";
409 reg = <0x48078000 0x2000>;
410 interrupts = <4>;
411 ti,hwmods = "elm";
412 status = "disabled";
413 };
414
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600415 gpmc: gpmc@50000000 {
416 compatible = "ti,omap4430-gpmc";
417 reg = <0x50000000 0x1000>;
418 #address-cells = <2>;
419 #size-cells = <1>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200420 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Franklin S Cooper Jr201c7e32015-10-15 12:37:27 -0500421 dmas = <&sdma 4>;
422 dma-names = "rxtx";
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600423 gpmc,num-cs = <8>;
424 gpmc,num-waitpins = <4>;
425 ti,hwmods = "gpmc";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530426 ti,no-idle-on-init;
Florian Vaussard7b8b6af2014-02-26 11:38:09 +0100427 clocks = <&l3_div_ck>;
428 clock-names = "fck";
Roger Quadros8c75b762016-04-07 13:25:29 +0300429 interrupt-controller;
430 #interrupt-cells = <2>;
431 gpio-controller;
432 #gpio-cells = <2>;
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600433 };
434
Benoit Cousson19bfb762012-02-16 11:55:27 +0100435 uart1: serial@4806a000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530436 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200437 reg = <0x4806a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200438 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530439 ti,hwmods = "uart1";
440 clock-frequency = <48000000>;
441 };
442
Benoit Cousson19bfb762012-02-16 11:55:27 +0100443 uart2: serial@4806c000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530444 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200445 reg = <0x4806c000 0x100>;
Marc Zyngier7136d452015-03-11 15:43:49 +0000446 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530447 ti,hwmods = "uart2";
448 clock-frequency = <48000000>;
449 };
450
Benoit Cousson19bfb762012-02-16 11:55:27 +0100451 uart3: serial@48020000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530452 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200453 reg = <0x48020000 0x100>;
Marc Zyngier7136d452015-03-11 15:43:49 +0000454 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530455 ti,hwmods = "uart3";
456 clock-frequency = <48000000>;
457 };
458
Benoit Cousson19bfb762012-02-16 11:55:27 +0100459 uart4: serial@4806e000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530460 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200461 reg = <0x4806e000 0x100>;
Marc Zyngier7136d452015-03-11 15:43:49 +0000462 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530463 ti,hwmods = "uart4";
464 clock-frequency = <48000000>;
465 };
Benoit Cousson58e778f2011-08-17 19:00:03 +0530466
Tony Lindgrend23a1632017-10-10 14:14:50 -0700467 target-module@4a0db000 {
468 compatible = "ti,sysc-sr";
Tony Lindgren514b2da2017-08-30 08:19:41 -0700469 ti,hwmods = "smartreflex_iva";
Tony Lindgrend23a1632017-10-10 14:14:50 -0700470 reg = <0x4a0db000 0x4>,
471 <0x4a0db008 0x4>;
472 reg-names = "rev", "sysc";
473 #address-cells = <1>;
474 #size-cells = <1>;
475 ranges = <0 0x4a0db000 0x001000>;
476
477 smartreflex_iva: smartreflex@0 {
478 compatible = "ti,omap4-smartreflex-iva";
479 reg = <0 0x80>;
480 interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
481 };
Tony Lindgren514b2da2017-08-30 08:19:41 -0700482 };
483
Tony Lindgrend23a1632017-10-10 14:14:50 -0700484 target-module@4a0dd000 {
485 compatible = "ti,sysc-sr";
Tony Lindgren514b2da2017-08-30 08:19:41 -0700486 ti,hwmods = "smartreflex_core";
Tony Lindgrend23a1632017-10-10 14:14:50 -0700487 reg = <0x4a0dd000 0x4>,
488 <0x4a0dd008 0x4>;
489 reg-names = "rev", "sysc";
490 #address-cells = <1>;
491 #size-cells = <1>;
492 ranges = <0 0x4a0dd000 0x001000>;
493
494 smartreflex_core: smartreflex@0 {
495 compatible = "ti,omap4-smartreflex-core";
496 reg = <0 0x80>;
497 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
498 };
Tony Lindgren514b2da2017-08-30 08:19:41 -0700499 };
500
Tony Lindgrend23a1632017-10-10 14:14:50 -0700501 target-module@4a0d9000 {
502 compatible = "ti,sysc-sr";
Tony Lindgren514b2da2017-08-30 08:19:41 -0700503 ti,hwmods = "smartreflex_mpu";
Tony Lindgrend23a1632017-10-10 14:14:50 -0700504 reg = <0x4a0d9000 0x4>,
505 <0x4a0d9008 0x4>;
506 reg-names = "rev", "sysc";
507 #address-cells = <1>;
508 #size-cells = <1>;
509 ranges = <0 0x4a0d9000 0x001000>;
510
511 smartreflex_mpu: smartreflex@0 {
512 compatible = "ti,omap4-smartreflex-mpu";
513 reg = <0 0x80>;
514 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
515 };
Tony Lindgren514b2da2017-08-30 08:19:41 -0700516 };
517
Suman Anna04c7d922013-10-10 16:15:33 -0500518 hwspinlock: spinlock@4a0f6000 {
519 compatible = "ti,omap4-hwspinlock";
520 reg = <0x4a0f6000 0x1000>;
521 ti,hwmods = "spinlock";
Suman Anna34054212014-01-13 18:26:45 -0600522 #hwlock-cells = <1>;
Suman Anna04c7d922013-10-10 16:15:33 -0500523 };
524
Benoit Cousson58e778f2011-08-17 19:00:03 +0530525 i2c1: i2c@48070000 {
526 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200527 reg = <0x48070000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200528 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530529 #address-cells = <1>;
530 #size-cells = <0>;
531 ti,hwmods = "i2c1";
532 };
533
534 i2c2: i2c@48072000 {
535 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200536 reg = <0x48072000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200537 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530538 #address-cells = <1>;
539 #size-cells = <0>;
540 ti,hwmods = "i2c2";
541 };
542
543 i2c3: i2c@48060000 {
544 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200545 reg = <0x48060000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200546 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530547 #address-cells = <1>;
548 #size-cells = <0>;
549 ti,hwmods = "i2c3";
550 };
551
552 i2c4: i2c@48350000 {
553 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200554 reg = <0x48350000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200555 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530556 #address-cells = <1>;
557 #size-cells = <0>;
558 ti,hwmods = "i2c4";
559 };
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100560
561 mcspi1: spi@48098000 {
562 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200563 reg = <0x48098000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200564 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100565 #address-cells = <1>;
566 #size-cells = <0>;
567 ti,hwmods = "mcspi1";
568 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500569 dmas = <&sdma 35>,
570 <&sdma 36>,
571 <&sdma 37>,
572 <&sdma 38>,
573 <&sdma 39>,
574 <&sdma 40>,
575 <&sdma 41>,
576 <&sdma 42>;
577 dma-names = "tx0", "rx0", "tx1", "rx1",
578 "tx2", "rx2", "tx3", "rx3";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100579 };
580
581 mcspi2: spi@4809a000 {
582 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200583 reg = <0x4809a000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200584 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100585 #address-cells = <1>;
586 #size-cells = <0>;
587 ti,hwmods = "mcspi2";
588 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500589 dmas = <&sdma 43>,
590 <&sdma 44>,
591 <&sdma 45>,
592 <&sdma 46>;
593 dma-names = "tx0", "rx0", "tx1", "rx1";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100594 };
595
Tony Lindgrend6e1a232017-08-30 08:19:43 -0700596 hdqw1w: 1w@480b2000 {
597 compatible = "ti,omap3-1w";
598 reg = <0x480b2000 0x1000>;
599 interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>;
600 ti,hwmods = "hdq1w";
601 };
602
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100603 mcspi3: spi@480b8000 {
604 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200605 reg = <0x480b8000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200606 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100607 #address-cells = <1>;
608 #size-cells = <0>;
609 ti,hwmods = "mcspi3";
610 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500611 dmas = <&sdma 15>, <&sdma 16>;
612 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100613 };
614
615 mcspi4: spi@480ba000 {
616 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200617 reg = <0x480ba000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200618 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100619 #address-cells = <1>;
620 #size-cells = <0>;
621 ti,hwmods = "mcspi4";
622 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500623 dmas = <&sdma 70>, <&sdma 71>;
624 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100625 };
Rajendra Nayak74981762011-10-04 17:10:27 +0530626
627 mmc1: mmc@4809c000 {
628 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200629 reg = <0x4809c000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200630 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530631 ti,hwmods = "mmc1";
632 ti,dual-volt;
633 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500634 dmas = <&sdma 61>, <&sdma 62>;
635 dma-names = "tx", "rx";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530636 pbias-supply = <&pbias_mmc_reg>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530637 };
638
639 mmc2: mmc@480b4000 {
640 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200641 reg = <0x480b4000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200642 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530643 ti,hwmods = "mmc2";
644 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500645 dmas = <&sdma 47>, <&sdma 48>;
646 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530647 };
648
649 mmc3: mmc@480ad000 {
650 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200651 reg = <0x480ad000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200652 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530653 ti,hwmods = "mmc3";
654 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500655 dmas = <&sdma 77>, <&sdma 78>;
656 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530657 };
658
659 mmc4: mmc@480d1000 {
660 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200661 reg = <0x480d1000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200662 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530663 ti,hwmods = "mmc4";
664 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500665 dmas = <&sdma 57>, <&sdma 58>;
666 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530667 };
668
669 mmc5: mmc@480d5000 {
670 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200671 reg = <0x480d5000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200672 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530673 ti,hwmods = "mmc5";
674 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500675 dmas = <&sdma 59>, <&sdma 60>;
676 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530677 };
Xiao Jiang94c30732012-06-01 12:44:14 +0800678
Tony Lindgren8be85762017-08-30 13:25:20 -0700679 hsi: hsi@4a058000 {
680 compatible = "ti,omap4-hsi";
681 reg = <0x4a058000 0x4000>,
682 <0x4a05c000 0x1000>;
683 reg-names = "sys", "gdd";
684 ti,hwmods = "hsi";
685
686 clocks = <&hsi_fck>;
687 clock-names = "hsi_fck";
688
689 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
690 interrupt-names = "gdd_mpu";
691
692 #address-cells = <1>;
693 #size-cells = <1>;
694 ranges = <0 0x4a058000 0x4000>;
695
696 hsi_port1: hsi-port@2000 {
697 compatible = "ti,omap4-hsi-port";
698 reg = <0x2000 0x800>,
699 <0x2800 0x800>;
700 reg-names = "tx", "rx";
701 interrupts = <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
702 };
703
704 hsi_port2: hsi-port@3000 {
705 compatible = "ti,omap4-hsi-port";
706 reg = <0x3000 0x800>,
707 <0x3800 0x800>;
708 reg-names = "tx", "rx";
709 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
710 };
711 };
712
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600713 mmu_dsp: mmu@4a066000 {
714 compatible = "ti,omap4-iommu";
715 reg = <0x4a066000 0x100>;
716 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
717 ti,hwmods = "mmu_dsp";
Suman Anna22e3bcc2015-07-10 12:28:55 -0500718 #iommu-cells = <0>;
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600719 };
720
Tony Lindgrend23a1632017-10-10 14:14:50 -0700721 target-module@52000000 {
722 compatible = "ti,sysc-omap4";
723 ti,hwmods = "iss";
724 reg = <0x52000000 0x4>,
725 <0x52000010 0x4>;
726 reg-names = "rev", "sysc";
727 #address-cells = <1>;
728 #size-cells = <1>;
729 ranges = <0 0x52000000 0x1000000>;
730
731 /* No child device binding, driver in staging */
732 };
733
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600734 mmu_ipu: mmu@55082000 {
735 compatible = "ti,omap4-iommu";
736 reg = <0x55082000 0x100>;
737 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
738 ti,hwmods = "mmu_ipu";
Suman Anna22e3bcc2015-07-10 12:28:55 -0500739 #iommu-cells = <0>;
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600740 ti,iommu-bus-err-back;
741 };
742
Xiao Jiang94c30732012-06-01 12:44:14 +0800743 wdt2: wdt@4a314000 {
744 compatible = "ti,omap4-wdt", "ti,omap3-wdt";
Benoit Cousson48420db2012-09-05 11:38:23 +0200745 reg = <0x4a314000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200746 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Xiao Jiang94c30732012-06-01 12:44:14 +0800747 ti,hwmods = "wd_timer2";
748 };
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300749
Tony Lindgren5750d672017-08-30 08:19:46 -0700750 wdt3: wdt@40130000 {
751 compatible = "ti,omap4-wdt", "ti,omap3-wdt";
752 reg = <0x40130000 0x80>, /* MPU private access */
753 <0x49030000 0x80>; /* L3 Interconnect */
754 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
755 ti,hwmods = "wd_timer3";
756 };
757
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300758 mcpdm: mcpdm@40132000 {
759 compatible = "ti,omap4-mcpdm";
760 reg = <0x40132000 0x7f>, /* MPU private access */
761 <0x49032000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300762 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200763 interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300764 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100765 dmas = <&sdma 65>,
766 <&sdma 66>;
767 dma-names = "up_link", "dn_link";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200768 status = "disabled";
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300769 };
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300770
771 dmic: dmic@4012e000 {
772 compatible = "ti,omap4-dmic";
773 reg = <0x4012e000 0x7f>, /* MPU private access */
774 <0x4902e000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300775 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200776 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300777 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100778 dmas = <&sdma 67>;
779 dma-names = "up_link";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200780 status = "disabled";
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300781 };
Sourav Poddar61bc3542012-08-14 16:45:37 +0530782
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300783 mcbsp1: mcbsp@40122000 {
784 compatible = "ti,omap4-mcbsp";
785 reg = <0x40122000 0xff>, /* MPU private access */
786 <0x49022000 0xff>; /* L3 Interconnect */
787 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200788 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300789 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300790 ti,buffer-size = <128>;
791 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100792 dmas = <&sdma 33>,
793 <&sdma 34>;
794 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200795 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300796 };
797
798 mcbsp2: mcbsp@40124000 {
799 compatible = "ti,omap4-mcbsp";
800 reg = <0x40124000 0xff>, /* MPU private access */
801 <0x49024000 0xff>; /* L3 Interconnect */
802 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200803 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300804 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300805 ti,buffer-size = <128>;
806 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100807 dmas = <&sdma 17>,
808 <&sdma 18>;
809 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200810 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300811 };
812
813 mcbsp3: mcbsp@40126000 {
814 compatible = "ti,omap4-mcbsp";
815 reg = <0x40126000 0xff>, /* MPU private access */
816 <0x49026000 0xff>; /* L3 Interconnect */
817 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200818 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300819 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300820 ti,buffer-size = <128>;
821 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100822 dmas = <&sdma 19>,
823 <&sdma 20>;
824 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200825 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300826 };
827
Tony Lindgrend23a1632017-10-10 14:14:50 -0700828 target-module@40128000 {
829 compatible = "ti,sysc-mcasp";
830 ti,hwmods = "mcasp";
831 reg = <0x40128004 0x4>;
832 reg-names = "sysc";
833 #address-cells = <1>;
834 #size-cells = <1>;
835 ranges = <0x00000000 0x40128000 0x1000>, /* MPU */
836 <0x49028000 0x49028000 0x1000>; /* L3 */
837
838 /*
839 * Child device unsupported by davinci-mcasp. At least
Tony Lindgren1ff516a2017-10-13 09:43:22 -0700840 * RX path is disabled for omap4, and only DIT mode
Tony Lindgrend23a1632017-10-10 14:14:50 -0700841 * works with no I2S. See also old Android kernel
842 * omap-mcasp driver for more information.
843 */
844 };
845
846 target-module@4012c000 {
847 compatible = "ti,sysc-omap4";
848 ti,hwmods = "slimbus1";
849 reg = <0x4012c000 0x4>,
850 <0x4012c010 0x4>;
851 reg-names = "rev", "sysc";
852 #address-cells = <1>;
853 #size-cells = <1>;
854 ranges = <0x00000000 0x4012c000 0x1000>, /* MPU */
855 <0x4902c000 0x4902c000 0x1000>; /* L3 */
856
857 /* No child device binding or driver in mainline */
858 };
859
860 target-module@401f1000 {
861 compatible = "ti,sysc-omap4";
862 ti,hwmods = "aess";
863 reg = <0x401f1000 0x4>,
864 <0x401f1010 0x4>;
865 reg-names = "rev", "sysc";
866 #address-cells = <1>;
867 #size-cells = <1>;
868 ranges = <0x00000000 0x401f1000 0x1000>, /* MPU */
869 <0x490f1000 0x490f1000 0x1000>; /* L3 */
870
871 /*
872 * No child device binding or driver in mainline.
873 * See Android tree and related upstreaming efforts
874 * for the old driver.
875 */
876 };
877
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300878 mcbsp4: mcbsp@48096000 {
879 compatible = "ti,omap4-mcbsp";
880 reg = <0x48096000 0xff>; /* L4 Interconnect */
881 reg-names = "mpu";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200882 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300883 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300884 ti,buffer-size = <128>;
885 ti,hwmods = "mcbsp4";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100886 dmas = <&sdma 31>,
887 <&sdma 32>;
888 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200889 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300890 };
891
Sourav Poddar61bc3542012-08-14 16:45:37 +0530892 keypad: keypad@4a31c000 {
893 compatible = "ti,omap4-keypad";
Benoit Cousson48420db2012-09-05 11:38:23 +0200894 reg = <0x4a31c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200895 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson48420db2012-09-05 11:38:23 +0200896 reg-names = "mpu";
Sourav Poddar61bc3542012-08-14 16:45:37 +0530897 ti,hwmods = "kbd";
898 };
Aneesh V11c27062012-01-20 20:35:26 +0530899
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530900 dmm@4e000000 {
901 compatible = "ti,omap4-dmm";
902 reg = <0x4e000000 0x800>;
903 interrupts = <0 113 0x4>;
904 ti,hwmods = "dmm";
905 };
906
Aneesh V11c27062012-01-20 20:35:26 +0530907 emif1: emif@4c000000 {
908 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200909 reg = <0x4c000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200910 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530911 ti,hwmods = "emif1";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530912 ti,no-idle-on-init;
Aneesh V11c27062012-01-20 20:35:26 +0530913 phy-type = <1>;
914 hw-caps-read-idle-ctrl;
915 hw-caps-ll-interface;
916 hw-caps-temp-alert;
917 };
918
919 emif2: emif@4d000000 {
920 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200921 reg = <0x4d000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200922 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530923 ti,hwmods = "emif2";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530924 ti,no-idle-on-init;
Aneesh V11c27062012-01-20 20:35:26 +0530925 phy-type = <1>;
926 hw-caps-read-idle-ctrl;
927 hw-caps-ll-interface;
928 hw-caps-temp-alert;
929 };
Linus Torvalds8f446a72012-10-01 18:46:13 -0700930
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530931 ocp2scp@4a0ad000 {
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530932 compatible = "ti,omap-ocp2scp";
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530933 reg = <0x4a0ad000 0x1f>;
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530934 #address-cells = <1>;
935 #size-cells = <1>;
936 ranges;
937 ti,hwmods = "ocp2scp_usb_phy";
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530938 usb2_phy: usb2phy@4a0ad080 {
939 compatible = "ti,omap-usb2";
940 reg = <0x4a0ad080 0x58>;
Roger Quadros470019a2013-10-03 18:12:36 +0300941 ctrl-module = <&omap_control_usb2phy>;
Roger Quadrosc65d0ad2014-05-05 12:54:42 +0300942 clocks = <&usb_phy_cm_clk32k>;
943 clock-names = "wkupclk";
Kishon Vijay Abraham I975d963e2013-09-27 11:53:29 +0530944 #phy-cells = <0>;
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530945 };
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530946 };
Jon Hunterfab8ad02012-10-19 09:59:00 -0500947
Suman Anna8ebc30d2014-07-11 16:44:35 -0500948 mailbox: mailbox@4a0f4000 {
949 compatible = "ti,omap4-mailbox";
950 reg = <0x4a0f4000 0x200>;
951 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
952 ti,hwmods = "mailbox";
Suman Anna24df0452014-11-03 17:07:35 -0600953 #mbox-cells = <1>;
Suman Anna8ebc30d2014-07-11 16:44:35 -0500954 ti,mbox-num-users = <3>;
955 ti,mbox-num-fifos = <8>;
Suman Annad27704d2014-09-10 14:27:23 -0500956 mbox_ipu: mbox_ipu {
957 ti,mbox-tx = <0 0 0>;
958 ti,mbox-rx = <1 0 0>;
959 };
960 mbox_dsp: mbox_dsp {
961 ti,mbox-tx = <3 0 0>;
962 ti,mbox-rx = <2 0 0>;
963 };
Suman Anna8ebc30d2014-07-11 16:44:35 -0500964 };
965
Tony Lindgrend23a1632017-10-10 14:14:50 -0700966 target-module@4a10a000 {
967 compatible = "ti,sysc-omap4";
968 ti,hwmods = "fdif";
969 reg = <0x4a10a000 0x4>,
970 <0x4a10a010 0x4>;
971 reg-names = "rev", "sysc";
972 #address-cells = <1>;
973 #size-cells = <1>;
974 ranges = <0 0x4a10a000 0x1000>;
975
976 /* No child device binding or driver in mainline */
977 };
978
Jon Hunterfab8ad02012-10-19 09:59:00 -0500979 timer1: timer@4a318000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500980 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500981 reg = <0x4a318000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200982 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500983 ti,hwmods = "timer1";
984 ti,timer-alwon;
Tero Kristodc06f7c2017-12-07 10:46:35 +0200985 clocks = <&dmt1_clk_mux>;
986 clock-names = "fck";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500987 };
988
989 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500990 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500991 reg = <0x48032000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200992 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500993 ti,hwmods = "timer2";
994 };
995
996 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500997 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500998 reg = <0x48034000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200999 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001000 ti,hwmods = "timer3";
1001 };
1002
1003 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001004 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -05001005 reg = <0x48036000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001006 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001007 ti,hwmods = "timer4";
1008 };
1009
Jon Hunterd03a93b2012-11-01 08:57:08 -05001010 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001011 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -05001012 reg = <0x40138000 0x80>,
1013 <0x49038000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001014 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001015 ti,hwmods = "timer5";
1016 ti,timer-dsp;
1017 };
1018
Jon Hunterd03a93b2012-11-01 08:57:08 -05001019 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001020 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -05001021 reg = <0x4013a000 0x80>,
1022 <0x4903a000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001023 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001024 ti,hwmods = "timer6";
1025 ti,timer-dsp;
1026 };
1027
Jon Hunterd03a93b2012-11-01 08:57:08 -05001028 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001029 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -05001030 reg = <0x4013c000 0x80>,
1031 <0x4903c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001032 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001033 ti,hwmods = "timer7";
1034 ti,timer-dsp;
1035 };
1036
Jon Hunterd03a93b2012-11-01 08:57:08 -05001037 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001038 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -05001039 reg = <0x4013e000 0x80>,
1040 <0x4903e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001041 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001042 ti,hwmods = "timer8";
1043 ti,timer-pwm;
1044 ti,timer-dsp;
1045 };
1046
1047 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001048 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -05001049 reg = <0x4803e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001050 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001051 ti,hwmods = "timer9";
1052 ti,timer-pwm;
1053 };
1054
1055 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001056 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -05001057 reg = <0x48086000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001058 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001059 ti,hwmods = "timer10";
1060 ti,timer-pwm;
1061 };
1062
1063 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -05001064 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -05001065 reg = <0x48088000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001066 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -05001067 ti,hwmods = "timer11";
1068 ti,timer-pwm;
1069 };
Roger Quadrosf17c8992013-03-20 17:44:58 +02001070
1071 usbhstll: usbhstll@4a062000 {
1072 compatible = "ti,usbhs-tll";
1073 reg = <0x4a062000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001074 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +02001075 ti,hwmods = "usb_tll_hs";
1076 };
1077
1078 usbhshost: usbhshost@4a064000 {
1079 compatible = "ti,usbhs-host";
1080 reg = <0x4a064000 0x800>;
1081 ti,hwmods = "usb_host_hs";
1082 #address-cells = <1>;
1083 #size-cells = <1>;
1084 ranges;
Roger Quadros051fc062014-02-27 16:18:26 +02001085 clocks = <&init_60m_fclk>,
1086 <&xclk60mhsp1_ck>,
1087 <&xclk60mhsp2_ck>;
1088 clock-names = "refclk_60m_int",
1089 "refclk_60m_ext_p1",
1090 "refclk_60m_ext_p2";
Roger Quadrosf17c8992013-03-20 17:44:58 +02001091
1092 usbhsohci: ohci@4a064800 {
Roger Quadrosa2525e52014-02-27 16:18:30 +02001093 compatible = "ti,ohci-omap3";
Roger Quadrosf17c8992013-03-20 17:44:58 +02001094 reg = <0x4a064800 0x400>;
1095 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001096 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +02001097 };
1098
1099 usbhsehci: ehci@4a064c00 {
Roger Quadrosa2525e52014-02-27 16:18:30 +02001100 compatible = "ti,ehci-omap";
Roger Quadrosf17c8992013-03-20 17:44:58 +02001101 reg = <0x4a064c00 0x400>;
1102 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001103 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +02001104 };
1105 };
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +05301106
Roger Quadros470019a2013-10-03 18:12:36 +03001107 omap_control_usb2phy: control-phy@4a002300 {
1108 compatible = "ti,control-phy-usb2";
1109 reg = <0x4a002300 0x4>;
1110 reg-names = "power";
1111 };
1112
1113 omap_control_usbotg: control-phy@4a00233c {
1114 compatible = "ti,control-phy-otghs";
1115 reg = <0x4a00233c 0x4>;
1116 reg-names = "otghs_control";
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +05301117 };
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +05301118
1119 usb_otg_hs: usb_otg_hs@4a0ab000 {
1120 compatible = "ti,omap4-musb";
1121 reg = <0x4a0ab000 0x7ff>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +02001122 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +05301123 interrupt-names = "mc", "dma";
1124 ti,hwmods = "usb_otg_hs";
1125 usb-phy = <&usb2_phy>;
Kishon Vijay Abraham I975d963e2013-09-27 11:53:29 +05301126 phys = <&usb2_phy>;
1127 phy-names = "usb2-phy";
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +05301128 multipoint = <1>;
1129 num-eps = <16>;
1130 ram-bits = <12>;
Roger Quadros470019a2013-10-03 18:12:36 +03001131 ctrl-module = <&omap_control_usbotg>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +05301132 };
Joel Fernandesdd6317d2013-07-11 18:20:05 -05001133
Sebastian Reichel25e6cfc2017-06-13 11:28:43 +02001134 aes1: aes@4b501000 {
Joel Fernandesdd6317d2013-07-11 18:20:05 -05001135 compatible = "ti,omap4-aes";
Sebastian Reichel25e6cfc2017-06-13 11:28:43 +02001136 ti,hwmods = "aes1";
Joel Fernandesdd6317d2013-07-11 18:20:05 -05001137 reg = <0x4b501000 0xa0>;
1138 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
1139 dmas = <&sdma 111>, <&sdma 110>;
1140 dma-names = "tx", "rx";
1141 };
Joel Fernandes806e9432013-09-24 15:23:33 -05001142
Tero Kristoc6faccf2017-06-13 16:45:48 +03001143 aes2: aes@4b701000 {
1144 compatible = "ti,omap4-aes";
1145 ti,hwmods = "aes2";
1146 reg = <0x4b701000 0xa0>;
1147 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>;
1148 dmas = <&sdma 114>, <&sdma 113>;
1149 dma-names = "tx", "rx";
1150 };
1151
Joel Fernandes806e9432013-09-24 15:23:33 -05001152 des: des@480a5000 {
1153 compatible = "ti,omap4-des";
1154 ti,hwmods = "des";
1155 reg = <0x480a5000 0xa0>;
1156 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
1157 dmas = <&sdma 117>, <&sdma 116>;
1158 dma-names = "tx", "rx";
1159 };
Andrii.Tseglytskyie12c7732014-03-03 20:20:22 +05301160
Tero Kristo45f1d5e2017-06-13 16:45:49 +03001161 sham: sham@4b100000 {
1162 compatible = "ti,omap4-sham";
1163 ti,hwmods = "sham";
1164 reg = <0x4b100000 0x300>;
1165 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
1166 dmas = <&sdma 119>;
1167 dma-names = "rx";
1168 };
1169
Andrii.Tseglytskyie12c7732014-03-03 20:20:22 +05301170 abb_mpu: regulator-abb-mpu {
1171 compatible = "ti,abb-v2";
1172 regulator-name = "abb_mpu";
1173 #address-cells = <0>;
1174 #size-cells = <0>;
1175 ti,tranxdone-status-mask = <0x80>;
1176 clocks = <&sys_clkin_ck>;
1177 ti,settling-time = <50>;
1178 ti,clock-cycles = <16>;
1179
1180 status = "disabled";
1181 };
1182
1183 abb_iva: regulator-abb-iva {
1184 compatible = "ti,abb-v2";
1185 regulator-name = "abb_iva";
1186 #address-cells = <0>;
1187 #size-cells = <0>;
1188 ti,tranxdone-status-mask = <0x80000000>;
1189 clocks = <&sys_clkin_ck>;
1190 ti,settling-time = <50>;
1191 ti,clock-cycles = <16>;
1192
1193 status = "disabled";
1194 };
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001195
Tony Lindgrend23a1632017-10-10 14:14:50 -07001196 target-module@56000000 {
1197 compatible = "ti,sysc-omap4";
1198 ti,hwmods = "gpu";
1199 reg = <0x5601fc00 0x4>,
1200 <0x5601fc10 0x4>;
1201 reg-names = "rev", "sysc";
1202 #address-cells = <1>;
1203 #size-cells = <1>;
1204 ranges = <0 0x56000000 0x2000000>;
1205
1206 /*
1207 * Closed source PowerVR driver, no child device
1208 * binding or driver in mainline
1209 */
1210 };
1211
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001212 dss: dss@58000000 {
1213 compatible = "ti,omap4-dss";
1214 reg = <0x58000000 0x80>;
1215 status = "disabled";
1216 ti,hwmods = "dss_core";
1217 clocks = <&dss_dss_clk>;
1218 clock-names = "fck";
1219 #address-cells = <1>;
1220 #size-cells = <1>;
1221 ranges;
1222
1223 dispc@58001000 {
1224 compatible = "ti,omap4-dispc";
1225 reg = <0x58001000 0x1000>;
1226 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
1227 ti,hwmods = "dss_dispc";
1228 clocks = <&dss_dss_clk>;
1229 clock-names = "fck";
1230 };
1231
1232 rfbi: encoder@58002000 {
1233 compatible = "ti,omap4-rfbi";
1234 reg = <0x58002000 0x1000>;
1235 status = "disabled";
1236 ti,hwmods = "dss_rfbi";
Tomi Valkeinen2cc84f42014-10-09 17:03:18 +03001237 clocks = <&dss_dss_clk>, <&l3_div_ck>;
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001238 clock-names = "fck", "ick";
1239 };
1240
1241 venc: encoder@58003000 {
1242 compatible = "ti,omap4-venc";
1243 reg = <0x58003000 0x1000>;
1244 status = "disabled";
1245 ti,hwmods = "dss_venc";
1246 clocks = <&dss_tv_clk>;
1247 clock-names = "fck";
1248 };
1249
1250 dsi1: encoder@58004000 {
1251 compatible = "ti,omap4-dsi";
1252 reg = <0x58004000 0x200>,
1253 <0x58004200 0x40>,
1254 <0x58004300 0x20>;
1255 reg-names = "proto", "phy", "pll";
1256 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
1257 status = "disabled";
1258 ti,hwmods = "dss_dsi1";
1259 clocks = <&dss_dss_clk>, <&dss_sys_clk>;
1260 clock-names = "fck", "sys_clk";
1261 };
1262
1263 dsi2: encoder@58005000 {
1264 compatible = "ti,omap4-dsi";
1265 reg = <0x58005000 0x200>,
1266 <0x58005200 0x40>,
1267 <0x58005300 0x20>;
1268 reg-names = "proto", "phy", "pll";
1269 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
1270 status = "disabled";
1271 ti,hwmods = "dss_dsi2";
1272 clocks = <&dss_dss_clk>, <&dss_sys_clk>;
1273 clock-names = "fck", "sys_clk";
1274 };
1275
1276 hdmi: encoder@58006000 {
1277 compatible = "ti,omap4-hdmi";
1278 reg = <0x58006000 0x200>,
1279 <0x58006200 0x100>,
1280 <0x58006300 0x100>,
1281 <0x58006400 0x1000>;
1282 reg-names = "wp", "pll", "phy", "core";
1283 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
1284 status = "disabled";
1285 ti,hwmods = "dss_hdmi";
1286 clocks = <&dss_48mhz_clk>, <&dss_sys_clk>;
1287 clock-names = "fck", "sys_clk";
Jyri Sarha53855b32014-05-12 12:12:24 +03001288 dmas = <&sdma 76>;
1289 dma-names = "audio_tx";
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001290 };
1291 };
Benoit Coussond9fda072011-08-09 17:15:17 +02001292 };
1293};
Tero Kristo2488ff62013-07-18 12:42:02 +03001294
1295/include/ "omap44xx-clocks.dtsi"