blob: 69d129b420e0115b350704f38551f32e11c1495d [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 {
146 compatible = "ti,omap4-cm1";
147 reg = <0x4000 0x2000>;
Balaji T Kcd042fe2014-02-19 20:26:40 +0530148
Tero Kristo7415b0b2015-02-12 11:32:14 +0200149 cm1_clocks: clocks {
150 #address-cells = <1>;
151 #size-cells = <0>;
152 };
153
154 cm1_clockdomains: clockdomains {
155 };
156 };
157
158 cm2: cm2@8000 {
159 compatible = "ti,omap4-cm2";
160 reg = <0x8000 0x3000>;
161
162 cm2_clocks: clocks {
163 #address-cells = <1>;
164 #size-cells = <0>;
165 };
166
167 cm2_clockdomains: clockdomains {
168 };
169 };
170
171 omap4_scm_core: scm@2000 {
172 compatible = "ti,omap4-scm-core", "simple-bus";
173 reg = <0x2000 0x1000>;
174 #address-cells = <1>;
175 #size-cells = <1>;
176 ranges = <0 0x2000 0x1000>;
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700177 ti,hwmods = "ctrl_module_core";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200178
179 scm_conf: scm_conf@0 {
180 compatible = "syscon";
181 reg = <0x0 0x800>;
182 #address-cells = <1>;
183 #size-cells = <1>;
184 };
185 };
186
187 omap4_padconf_core: scm@100000 {
188 compatible = "ti,omap4-scm-padconf-core",
189 "simple-bus";
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700190 reg = <0x100000 0x1000>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200191 #address-cells = <1>;
192 #size-cells = <1>;
193 ranges = <0 0x100000 0x1000>;
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700194 ti,hwmods = "ctrl_module_pad_core";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200195
196 omap4_pmx_core: pinmux@40 {
197 compatible = "ti,omap4-padconf",
198 "pinctrl-single";
199 reg = <0x40 0x0196>;
200 #address-cells = <1>;
201 #size-cells = <0>;
Tony Lindgrenbe76fd32016-11-07 08:27:49 -0700202 #pinctrl-cells = <1>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200203 #interrupt-cells = <1>;
204 interrupt-controller;
205 pinctrl-single,register-width = <16>;
206 pinctrl-single,function-mask = <0x7fff>;
207 };
208
209 omap4_padconf_global: omap4_padconf_global@5a0 {
Kishon Vijay Abraham I89a898d2015-07-27 17:46:39 +0530210 compatible = "syscon",
211 "simple-bus";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200212 reg = <0x5a0 0x170>;
213 #address-cells = <1>;
214 #size-cells = <1>;
Kishon Vijay Abraham I9a5e3f22015-09-04 17:38:24 +0530215 ranges = <0 0x5a0 0x170>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200216
Javier Martinez Canillas308cfda2016-04-01 16:20:18 -0400217 pbias_regulator: pbias_regulator@60 {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530218 compatible = "ti,pbias-omap4", "ti,pbias-omap";
Tero Kristo7415b0b2015-02-12 11:32:14 +0200219 reg = <0x60 0x4>;
220 syscon = <&omap4_padconf_global>;
221 pbias_mmc_reg: pbias_mmc_omap4 {
222 regulator-name = "pbias_mmc_omap4";
223 regulator-min-microvolt = <1800000>;
224 regulator-max-microvolt = <3000000>;
225 };
226 };
227 };
228 };
229
230 l4_wkup: l4@300000 {
231 compatible = "ti,omap4-l4-wkup", "simple-bus";
232 #address-cells = <1>;
233 #size-cells = <1>;
234 ranges = <0 0x300000 0x40000>;
235
236 counter32k: counter@4000 {
237 compatible = "ti,omap-counter32k";
238 reg = <0x4000 0x20>;
239 ti,hwmods = "counter_32k";
240 };
241
242 prm: prm@6000 {
243 compatible = "ti,omap4-prm";
244 reg = <0x6000 0x3000>;
245 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
246
247 prm_clocks: clocks {
248 #address-cells = <1>;
249 #size-cells = <0>;
250 };
251
252 prm_clockdomains: clockdomains {
253 };
254 };
255
256 scrm: scrm@a000 {
257 compatible = "ti,omap4-scrm";
258 reg = <0xa000 0x2000>;
259
260 scrm_clocks: clocks {
261 #address-cells = <1>;
262 #size-cells = <0>;
263 };
264
265 scrm_clockdomains: clockdomains {
266 };
267 };
268
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700269 omap4_scm_wkup: scm@c000 {
270 compatible = "ti,omap4-scm-wkup";
271 reg = <0xc000 0x1000>;
272 ti,hwmods = "ctrl_module_wkup";
273 };
274
275 omap4_padconf_wkup: padconf@1e000 {
276 compatible = "ti,omap4-scm-padconf-wkup",
277 "simple-bus";
278 reg = <0x1e000 0x1000>;
Tero Kristo7415b0b2015-02-12 11:32:14 +0200279 #address-cells = <1>;
Tony Lindgren1d6a3322017-08-30 08:19:39 -0700280 #size-cells = <1>;
281 ranges = <0 0x1e000 0x1000>;
282 ti,hwmods = "ctrl_module_pad_wkup";
283
284 omap4_pmx_wkup: pinmux@40 {
285 compatible = "ti,omap4-padconf",
286 "pinctrl-single";
287 reg = <0x40 0x0038>;
288 #address-cells = <1>;
289 #size-cells = <0>;
290 #pinctrl-cells = <1>;
291 #interrupt-cells = <1>;
292 interrupt-controller;
293 pinctrl-single,register-width = <16>;
294 pinctrl-single,function-mask = <0x7fff>;
295 };
Tero Kristo7415b0b2015-02-12 11:32:14 +0200296 };
Balaji T Kcd042fe2014-02-19 20:26:40 +0530297 };
298 };
299
Rajendra Nayak8b9a2812014-09-10 11:04:03 -0500300 ocmcram: ocmcram@40304000 {
301 compatible = "mmio-sram";
302 reg = <0x40304000 0xa000>; /* 40k */
303 };
304
Jon Hunter2c2dc542012-04-26 13:47:59 -0500305 sdma: dma-controller@4a056000 {
306 compatible = "ti,omap4430-sdma";
307 reg = <0x4a056000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200308 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
309 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
310 <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
311 <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500312 #dma-cells = <1>;
Peter Ujfalusi24ac1772015-02-20 15:42:04 +0200313 dma-channels = <32>;
314 dma-requests = <127>;
Tony Lindgren370ad6b2017-08-30 08:19:40 -0700315 ti,hwmods = "dma_system";
Jon Hunter2c2dc542012-04-26 13:47:59 -0500316 };
317
Benoit Coussone3e5a922011-08-16 11:51:54 +0200318 gpio1: gpio@4a310000 {
319 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200320 reg = <0x4a310000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200321 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200322 ti,hwmods = "gpio1";
Jon Huntere4b9b9f2013-04-04 15:16:16 -0500323 ti,gpio-always-on;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200324 gpio-controller;
325 #gpio-cells = <2>;
326 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600327 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200328 };
329
330 gpio2: gpio@48055000 {
331 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200332 reg = <0x48055000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200333 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200334 ti,hwmods = "gpio2";
335 gpio-controller;
336 #gpio-cells = <2>;
337 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600338 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200339 };
340
341 gpio3: gpio@48057000 {
342 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200343 reg = <0x48057000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200344 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200345 ti,hwmods = "gpio3";
346 gpio-controller;
347 #gpio-cells = <2>;
348 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600349 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200350 };
351
352 gpio4: gpio@48059000 {
353 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200354 reg = <0x48059000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200355 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200356 ti,hwmods = "gpio4";
357 gpio-controller;
358 #gpio-cells = <2>;
359 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600360 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200361 };
362
363 gpio5: gpio@4805b000 {
364 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200365 reg = <0x4805b000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200366 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200367 ti,hwmods = "gpio5";
368 gpio-controller;
369 #gpio-cells = <2>;
370 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600371 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200372 };
373
374 gpio6: gpio@4805d000 {
375 compatible = "ti,omap4-gpio";
Benoit Cousson48420db2012-09-05 11:38:23 +0200376 reg = <0x4805d000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200377 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200378 ti,hwmods = "gpio6";
379 gpio-controller;
380 #gpio-cells = <2>;
381 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600382 #interrupt-cells = <2>;
Benoit Coussone3e5a922011-08-16 11:51:54 +0200383 };
384
Franklin S Cooper Jr258511e2015-10-28 16:02:16 -0500385 elm: elm@48078000 {
386 compatible = "ti,am3352-elm";
387 reg = <0x48078000 0x2000>;
388 interrupts = <4>;
389 ti,hwmods = "elm";
390 status = "disabled";
391 };
392
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600393 gpmc: gpmc@50000000 {
394 compatible = "ti,omap4430-gpmc";
395 reg = <0x50000000 0x1000>;
396 #address-cells = <2>;
397 #size-cells = <1>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200398 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Franklin S Cooper Jr201c7e32015-10-15 12:37:27 -0500399 dmas = <&sdma 4>;
400 dma-names = "rxtx";
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600401 gpmc,num-cs = <8>;
402 gpmc,num-waitpins = <4>;
403 ti,hwmods = "gpmc";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530404 ti,no-idle-on-init;
Florian Vaussard7b8b6af2014-02-26 11:38:09 +0100405 clocks = <&l3_div_ck>;
406 clock-names = "fck";
Roger Quadros8c75b762016-04-07 13:25:29 +0300407 interrupt-controller;
408 #interrupt-cells = <2>;
409 gpio-controller;
410 #gpio-cells = <2>;
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600411 };
412
Benoit Cousson19bfb762012-02-16 11:55:27 +0100413 uart1: serial@4806a000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530414 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200415 reg = <0x4806a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200416 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530417 ti,hwmods = "uart1";
418 clock-frequency = <48000000>;
419 };
420
Benoit Cousson19bfb762012-02-16 11:55:27 +0100421 uart2: serial@4806c000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530422 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200423 reg = <0x4806c000 0x100>;
Marc Zyngier7136d452015-03-11 15:43:49 +0000424 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530425 ti,hwmods = "uart2";
426 clock-frequency = <48000000>;
427 };
428
Benoit Cousson19bfb762012-02-16 11:55:27 +0100429 uart3: serial@48020000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530430 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200431 reg = <0x48020000 0x100>;
Marc Zyngier7136d452015-03-11 15:43:49 +0000432 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530433 ti,hwmods = "uart3";
434 clock-frequency = <48000000>;
435 };
436
Benoit Cousson19bfb762012-02-16 11:55:27 +0100437 uart4: serial@4806e000 {
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530438 compatible = "ti,omap4-uart";
Benoit Cousson48420db2012-09-05 11:38:23 +0200439 reg = <0x4806e000 0x100>;
Marc Zyngier7136d452015-03-11 15:43:49 +0000440 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayakcf3c79d2011-12-14 17:25:46 +0530441 ti,hwmods = "uart4";
442 clock-frequency = <48000000>;
443 };
Benoit Cousson58e778f2011-08-17 19:00:03 +0530444
Tony Lindgren514b2da2017-08-30 08:19:41 -0700445 smartreflex_iva: smartreflex@4a0db000 {
446 compatible = "ti,omap4-smartreflex-iva";
447 reg = <0x4a0db000 0x80>;
448 interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
449 ti,hwmods = "smartreflex_iva";
450 };
451
452 smartreflex_core: smartreflex@4a0dd000 {
453 compatible = "ti,omap4-smartreflex-core";
454 reg = <0x4a0dd000 0x80>;
455 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
456 ti,hwmods = "smartreflex_core";
457 };
458
459 smartreflex_mpu: smartreflex@4a0d9000 {
460 compatible = "ti,omap4-smartreflex-mpu";
461 reg = <0x4a0d9000 0x80>;
462 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
463 ti,hwmods = "smartreflex_mpu";
464 };
465
Suman Anna04c7d922013-10-10 16:15:33 -0500466 hwspinlock: spinlock@4a0f6000 {
467 compatible = "ti,omap4-hwspinlock";
468 reg = <0x4a0f6000 0x1000>;
469 ti,hwmods = "spinlock";
Suman Anna34054212014-01-13 18:26:45 -0600470 #hwlock-cells = <1>;
Suman Anna04c7d922013-10-10 16:15:33 -0500471 };
472
Benoit Cousson58e778f2011-08-17 19:00:03 +0530473 i2c1: i2c@48070000 {
474 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200475 reg = <0x48070000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200476 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530477 #address-cells = <1>;
478 #size-cells = <0>;
479 ti,hwmods = "i2c1";
480 };
481
482 i2c2: i2c@48072000 {
483 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200484 reg = <0x48072000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200485 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530486 #address-cells = <1>;
487 #size-cells = <0>;
488 ti,hwmods = "i2c2";
489 };
490
491 i2c3: i2c@48060000 {
492 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200493 reg = <0x48060000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200494 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530495 #address-cells = <1>;
496 #size-cells = <0>;
497 ti,hwmods = "i2c3";
498 };
499
500 i2c4: i2c@48350000 {
501 compatible = "ti,omap4-i2c";
Benoit Cousson48420db2012-09-05 11:38:23 +0200502 reg = <0x48350000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200503 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson58e778f2011-08-17 19:00:03 +0530504 #address-cells = <1>;
505 #size-cells = <0>;
506 ti,hwmods = "i2c4";
507 };
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100508
509 mcspi1: spi@48098000 {
510 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200511 reg = <0x48098000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200512 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100513 #address-cells = <1>;
514 #size-cells = <0>;
515 ti,hwmods = "mcspi1";
516 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500517 dmas = <&sdma 35>,
518 <&sdma 36>,
519 <&sdma 37>,
520 <&sdma 38>,
521 <&sdma 39>,
522 <&sdma 40>,
523 <&sdma 41>,
524 <&sdma 42>;
525 dma-names = "tx0", "rx0", "tx1", "rx1",
526 "tx2", "rx2", "tx3", "rx3";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100527 };
528
529 mcspi2: spi@4809a000 {
530 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200531 reg = <0x4809a000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200532 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100533 #address-cells = <1>;
534 #size-cells = <0>;
535 ti,hwmods = "mcspi2";
536 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500537 dmas = <&sdma 43>,
538 <&sdma 44>,
539 <&sdma 45>,
540 <&sdma 46>;
541 dma-names = "tx0", "rx0", "tx1", "rx1";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100542 };
543
Tony Lindgrend6e1a232017-08-30 08:19:43 -0700544 hdqw1w: 1w@480b2000 {
545 compatible = "ti,omap3-1w";
546 reg = <0x480b2000 0x1000>;
547 interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>;
548 ti,hwmods = "hdq1w";
549 };
550
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100551 mcspi3: spi@480b8000 {
552 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200553 reg = <0x480b8000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200554 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100555 #address-cells = <1>;
556 #size-cells = <0>;
557 ti,hwmods = "mcspi3";
558 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500559 dmas = <&sdma 15>, <&sdma 16>;
560 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100561 };
562
563 mcspi4: spi@480ba000 {
564 compatible = "ti,omap4-mcspi";
Benoit Cousson48420db2012-09-05 11:38:23 +0200565 reg = <0x480ba000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200566 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100567 #address-cells = <1>;
568 #size-cells = <0>;
569 ti,hwmods = "mcspi4";
570 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500571 dmas = <&sdma 70>, <&sdma 71>;
572 dma-names = "tx0", "rx0";
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100573 };
Rajendra Nayak74981762011-10-04 17:10:27 +0530574
575 mmc1: mmc@4809c000 {
576 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200577 reg = <0x4809c000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200578 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530579 ti,hwmods = "mmc1";
580 ti,dual-volt;
581 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500582 dmas = <&sdma 61>, <&sdma 62>;
583 dma-names = "tx", "rx";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530584 pbias-supply = <&pbias_mmc_reg>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530585 };
586
587 mmc2: mmc@480b4000 {
588 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200589 reg = <0x480b4000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200590 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530591 ti,hwmods = "mmc2";
592 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500593 dmas = <&sdma 47>, <&sdma 48>;
594 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530595 };
596
597 mmc3: mmc@480ad000 {
598 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200599 reg = <0x480ad000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200600 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530601 ti,hwmods = "mmc3";
602 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500603 dmas = <&sdma 77>, <&sdma 78>;
604 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530605 };
606
607 mmc4: mmc@480d1000 {
608 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200609 reg = <0x480d1000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200610 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530611 ti,hwmods = "mmc4";
612 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500613 dmas = <&sdma 57>, <&sdma 58>;
614 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530615 };
616
617 mmc5: mmc@480d5000 {
618 compatible = "ti,omap4-hsmmc";
Benoit Cousson48420db2012-09-05 11:38:23 +0200619 reg = <0x480d5000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200620 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
Rajendra Nayak74981762011-10-04 17:10:27 +0530621 ti,hwmods = "mmc5";
622 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500623 dmas = <&sdma 59>, <&sdma 60>;
624 dma-names = "tx", "rx";
Rajendra Nayak74981762011-10-04 17:10:27 +0530625 };
Xiao Jiang94c30732012-06-01 12:44:14 +0800626
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600627 mmu_dsp: mmu@4a066000 {
628 compatible = "ti,omap4-iommu";
629 reg = <0x4a066000 0x100>;
630 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
631 ti,hwmods = "mmu_dsp";
Suman Anna22e3bcc2015-07-10 12:28:55 -0500632 #iommu-cells = <0>;
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600633 };
634
635 mmu_ipu: mmu@55082000 {
636 compatible = "ti,omap4-iommu";
637 reg = <0x55082000 0x100>;
638 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
639 ti,hwmods = "mmu_ipu";
Suman Anna22e3bcc2015-07-10 12:28:55 -0500640 #iommu-cells = <0>;
Florian Vaussard21bd85a2014-03-05 18:24:18 -0600641 ti,iommu-bus-err-back;
642 };
643
Xiao Jiang94c30732012-06-01 12:44:14 +0800644 wdt2: wdt@4a314000 {
645 compatible = "ti,omap4-wdt", "ti,omap3-wdt";
Benoit Cousson48420db2012-09-05 11:38:23 +0200646 reg = <0x4a314000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200647 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Xiao Jiang94c30732012-06-01 12:44:14 +0800648 ti,hwmods = "wd_timer2";
649 };
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300650
651 mcpdm: mcpdm@40132000 {
652 compatible = "ti,omap4-mcpdm";
653 reg = <0x40132000 0x7f>, /* MPU private access */
654 <0x49032000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300655 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200656 interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300657 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100658 dmas = <&sdma 65>,
659 <&sdma 66>;
660 dma-names = "up_link", "dn_link";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200661 status = "disabled";
Peter Ujfalusi4f4b5c72012-06-08 17:01:59 +0300662 };
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300663
664 dmic: dmic@4012e000 {
665 compatible = "ti,omap4-dmic";
666 reg = <0x4012e000 0x7f>, /* MPU private access */
667 <0x4902e000 0x7f>; /* L3 Interconnect */
Peter Ujfalusi63467cf2012-08-29 16:31:06 +0300668 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200669 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300670 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100671 dmas = <&sdma 67>;
672 dma-names = "up_link";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200673 status = "disabled";
Peter Ujfalusia4c38312012-06-08 17:02:00 +0300674 };
Sourav Poddar61bc3542012-08-14 16:45:37 +0530675
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300676 mcbsp1: mcbsp@40122000 {
677 compatible = "ti,omap4-mcbsp";
678 reg = <0x40122000 0xff>, /* MPU private access */
679 <0x49022000 0xff>; /* L3 Interconnect */
680 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200681 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300682 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300683 ti,buffer-size = <128>;
684 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100685 dmas = <&sdma 33>,
686 <&sdma 34>;
687 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200688 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300689 };
690
691 mcbsp2: mcbsp@40124000 {
692 compatible = "ti,omap4-mcbsp";
693 reg = <0x40124000 0xff>, /* MPU private access */
694 <0x49024000 0xff>; /* L3 Interconnect */
695 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200696 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300697 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300698 ti,buffer-size = <128>;
699 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100700 dmas = <&sdma 17>,
701 <&sdma 18>;
702 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200703 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300704 };
705
706 mcbsp3: mcbsp@40126000 {
707 compatible = "ti,omap4-mcbsp";
708 reg = <0x40126000 0xff>, /* MPU private access */
709 <0x49026000 0xff>; /* L3 Interconnect */
710 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200711 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300712 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300713 ti,buffer-size = <128>;
714 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100715 dmas = <&sdma 19>,
716 <&sdma 20>;
717 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200718 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300719 };
720
721 mcbsp4: mcbsp@48096000 {
722 compatible = "ti,omap4-mcbsp";
723 reg = <0x48096000 0xff>; /* L4 Interconnect */
724 reg-names = "mpu";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200725 interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300726 interrupt-names = "common";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300727 ti,buffer-size = <128>;
728 ti,hwmods = "mcbsp4";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100729 dmas = <&sdma 31>,
730 <&sdma 32>;
731 dma-names = "tx", "rx";
Peter Ujfalusi7adb0932014-01-24 10:19:01 +0200732 status = "disabled";
Peter Ujfalusi2995a102012-07-26 17:13:21 +0300733 };
734
Sourav Poddar61bc3542012-08-14 16:45:37 +0530735 keypad: keypad@4a31c000 {
736 compatible = "ti,omap4-keypad";
Benoit Cousson48420db2012-09-05 11:38:23 +0200737 reg = <0x4a31c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200738 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
Benoit Cousson48420db2012-09-05 11:38:23 +0200739 reg-names = "mpu";
Sourav Poddar61bc3542012-08-14 16:45:37 +0530740 ti,hwmods = "kbd";
741 };
Aneesh V11c27062012-01-20 20:35:26 +0530742
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530743 dmm@4e000000 {
744 compatible = "ti,omap4-dmm";
745 reg = <0x4e000000 0x800>;
746 interrupts = <0 113 0x4>;
747 ti,hwmods = "dmm";
748 };
749
Aneesh V11c27062012-01-20 20:35:26 +0530750 emif1: emif@4c000000 {
751 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200752 reg = <0x4c000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200753 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530754 ti,hwmods = "emif1";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530755 ti,no-idle-on-init;
Aneesh V11c27062012-01-20 20:35:26 +0530756 phy-type = <1>;
757 hw-caps-read-idle-ctrl;
758 hw-caps-ll-interface;
759 hw-caps-temp-alert;
760 };
761
762 emif2: emif@4d000000 {
763 compatible = "ti,emif-4d";
Benoit Cousson48420db2012-09-05 11:38:23 +0200764 reg = <0x4d000000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200765 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
Aneesh V11c27062012-01-20 20:35:26 +0530766 ti,hwmods = "emif2";
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +0530767 ti,no-idle-on-init;
Aneesh V11c27062012-01-20 20:35:26 +0530768 phy-type = <1>;
769 hw-caps-read-idle-ctrl;
770 hw-caps-ll-interface;
771 hw-caps-temp-alert;
772 };
Linus Torvalds8f446a72012-10-01 18:46:13 -0700773
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530774 ocp2scp@4a0ad000 {
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530775 compatible = "ti,omap-ocp2scp";
Kishon Vijay Abraham I3ce0a992012-09-19 16:02:51 +0530776 reg = <0x4a0ad000 0x1f>;
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530777 #address-cells = <1>;
778 #size-cells = <1>;
779 ranges;
780 ti,hwmods = "ocp2scp_usb_phy";
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530781 usb2_phy: usb2phy@4a0ad080 {
782 compatible = "ti,omap-usb2";
783 reg = <0x4a0ad080 0x58>;
Roger Quadros470019a2013-10-03 18:12:36 +0300784 ctrl-module = <&omap_control_usb2phy>;
Roger Quadrosc65d0ad2014-05-05 12:54:42 +0300785 clocks = <&usb_phy_cm_clk32k>;
786 clock-names = "wkupclk";
Kishon Vijay Abraham I975d963e2013-09-27 11:53:29 +0530787 #phy-cells = <0>;
Kishon Vijay Abraham Icf0d8692013-03-07 19:05:15 +0530788 };
Kishon Vijay Abraham I59bafcf2012-08-22 14:10:03 +0530789 };
Jon Hunterfab8ad02012-10-19 09:59:00 -0500790
Suman Anna8ebc30d2014-07-11 16:44:35 -0500791 mailbox: mailbox@4a0f4000 {
792 compatible = "ti,omap4-mailbox";
793 reg = <0x4a0f4000 0x200>;
794 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
795 ti,hwmods = "mailbox";
Suman Anna24df0452014-11-03 17:07:35 -0600796 #mbox-cells = <1>;
Suman Anna8ebc30d2014-07-11 16:44:35 -0500797 ti,mbox-num-users = <3>;
798 ti,mbox-num-fifos = <8>;
Suman Annad27704d2014-09-10 14:27:23 -0500799 mbox_ipu: mbox_ipu {
800 ti,mbox-tx = <0 0 0>;
801 ti,mbox-rx = <1 0 0>;
802 };
803 mbox_dsp: mbox_dsp {
804 ti,mbox-tx = <3 0 0>;
805 ti,mbox-rx = <2 0 0>;
806 };
Suman Anna8ebc30d2014-07-11 16:44:35 -0500807 };
808
Jon Hunterfab8ad02012-10-19 09:59:00 -0500809 timer1: timer@4a318000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500810 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500811 reg = <0x4a318000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200812 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500813 ti,hwmods = "timer1";
814 ti,timer-alwon;
815 };
816
817 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500818 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500819 reg = <0x48032000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200820 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500821 ti,hwmods = "timer2";
822 };
823
824 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500825 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500826 reg = <0x48034000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200827 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500828 ti,hwmods = "timer3";
829 };
830
831 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500832 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500833 reg = <0x48036000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200834 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500835 ti,hwmods = "timer4";
836 };
837
Jon Hunterd03a93b2012-11-01 08:57:08 -0500838 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500839 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500840 reg = <0x40138000 0x80>,
841 <0x49038000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200842 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500843 ti,hwmods = "timer5";
844 ti,timer-dsp;
845 };
846
Jon Hunterd03a93b2012-11-01 08:57:08 -0500847 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500848 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500849 reg = <0x4013a000 0x80>,
850 <0x4903a000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200851 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500852 ti,hwmods = "timer6";
853 ti,timer-dsp;
854 };
855
Jon Hunterd03a93b2012-11-01 08:57:08 -0500856 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500857 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500858 reg = <0x4013c000 0x80>,
859 <0x4903c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200860 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500861 ti,hwmods = "timer7";
862 ti,timer-dsp;
863 };
864
Jon Hunterd03a93b2012-11-01 08:57:08 -0500865 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500866 compatible = "ti,omap4430-timer";
Jon Hunterd03a93b2012-11-01 08:57:08 -0500867 reg = <0x4013e000 0x80>,
868 <0x4903e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200869 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500870 ti,hwmods = "timer8";
871 ti,timer-pwm;
872 ti,timer-dsp;
873 };
874
875 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500876 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500877 reg = <0x4803e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200878 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500879 ti,hwmods = "timer9";
880 ti,timer-pwm;
881 };
882
883 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500884 compatible = "ti,omap3430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500885 reg = <0x48086000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200886 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500887 ti,hwmods = "timer10";
888 ti,timer-pwm;
889 };
890
891 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500892 compatible = "ti,omap4430-timer";
Jon Hunterfab8ad02012-10-19 09:59:00 -0500893 reg = <0x48088000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200894 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterfab8ad02012-10-19 09:59:00 -0500895 ti,hwmods = "timer11";
896 ti,timer-pwm;
897 };
Roger Quadrosf17c8992013-03-20 17:44:58 +0200898
899 usbhstll: usbhstll@4a062000 {
900 compatible = "ti,usbhs-tll";
901 reg = <0x4a062000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200902 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200903 ti,hwmods = "usb_tll_hs";
904 };
905
906 usbhshost: usbhshost@4a064000 {
907 compatible = "ti,usbhs-host";
908 reg = <0x4a064000 0x800>;
909 ti,hwmods = "usb_host_hs";
910 #address-cells = <1>;
911 #size-cells = <1>;
912 ranges;
Roger Quadros051fc062014-02-27 16:18:26 +0200913 clocks = <&init_60m_fclk>,
914 <&xclk60mhsp1_ck>,
915 <&xclk60mhsp2_ck>;
916 clock-names = "refclk_60m_int",
917 "refclk_60m_ext_p1",
918 "refclk_60m_ext_p2";
Roger Quadrosf17c8992013-03-20 17:44:58 +0200919
920 usbhsohci: ohci@4a064800 {
Roger Quadrosa2525e52014-02-27 16:18:30 +0200921 compatible = "ti,ohci-omap3";
Roger Quadrosf17c8992013-03-20 17:44:58 +0200922 reg = <0x4a064800 0x400>;
923 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200924 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200925 };
926
927 usbhsehci: ehci@4a064c00 {
Roger Quadrosa2525e52014-02-27 16:18:30 +0200928 compatible = "ti,ehci-omap";
Roger Quadrosf17c8992013-03-20 17:44:58 +0200929 reg = <0x4a064c00 0x400>;
930 interrupt-parent = <&gic>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200931 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosf17c8992013-03-20 17:44:58 +0200932 };
933 };
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +0530934
Roger Quadros470019a2013-10-03 18:12:36 +0300935 omap_control_usb2phy: control-phy@4a002300 {
936 compatible = "ti,control-phy-usb2";
937 reg = <0x4a002300 0x4>;
938 reg-names = "power";
939 };
940
941 omap_control_usbotg: control-phy@4a00233c {
942 compatible = "ti,control-phy-otghs";
943 reg = <0x4a00233c 0x4>;
944 reg-names = "otghs_control";
Kishon Vijay Abraham I840e5fd2013-03-07 19:05:14 +0530945 };
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530946
947 usb_otg_hs: usb_otg_hs@4a0ab000 {
948 compatible = "ti,omap4-musb";
949 reg = <0x4a0ab000 0x7ff>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200950 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530951 interrupt-names = "mc", "dma";
952 ti,hwmods = "usb_otg_hs";
953 usb-phy = <&usb2_phy>;
Kishon Vijay Abraham I975d963e2013-09-27 11:53:29 +0530954 phys = <&usb2_phy>;
955 phy-names = "usb2-phy";
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530956 multipoint = <1>;
957 num-eps = <16>;
958 ram-bits = <12>;
Roger Quadros470019a2013-10-03 18:12:36 +0300959 ctrl-module = <&omap_control_usbotg>;
Kishon Vijay Abraham Iad871c12013-03-07 19:05:16 +0530960 };
Joel Fernandesdd6317d2013-07-11 18:20:05 -0500961
Sebastian Reichel25e6cfc2017-06-13 11:28:43 +0200962 aes1: aes@4b501000 {
Joel Fernandesdd6317d2013-07-11 18:20:05 -0500963 compatible = "ti,omap4-aes";
Sebastian Reichel25e6cfc2017-06-13 11:28:43 +0200964 ti,hwmods = "aes1";
Joel Fernandesdd6317d2013-07-11 18:20:05 -0500965 reg = <0x4b501000 0xa0>;
966 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
967 dmas = <&sdma 111>, <&sdma 110>;
968 dma-names = "tx", "rx";
969 };
Joel Fernandes806e9432013-09-24 15:23:33 -0500970
Tero Kristoc6faccf2017-06-13 16:45:48 +0300971 aes2: aes@4b701000 {
972 compatible = "ti,omap4-aes";
973 ti,hwmods = "aes2";
974 reg = <0x4b701000 0xa0>;
975 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>;
976 dmas = <&sdma 114>, <&sdma 113>;
977 dma-names = "tx", "rx";
978 };
979
Joel Fernandes806e9432013-09-24 15:23:33 -0500980 des: des@480a5000 {
981 compatible = "ti,omap4-des";
982 ti,hwmods = "des";
983 reg = <0x480a5000 0xa0>;
984 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
985 dmas = <&sdma 117>, <&sdma 116>;
986 dma-names = "tx", "rx";
987 };
Andrii.Tseglytskyie12c7732014-03-03 20:20:22 +0530988
Tero Kristo45f1d5e2017-06-13 16:45:49 +0300989 sham: sham@4b100000 {
990 compatible = "ti,omap4-sham";
991 ti,hwmods = "sham";
992 reg = <0x4b100000 0x300>;
993 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
994 dmas = <&sdma 119>;
995 dma-names = "rx";
996 };
997
Andrii.Tseglytskyie12c7732014-03-03 20:20:22 +0530998 abb_mpu: regulator-abb-mpu {
999 compatible = "ti,abb-v2";
1000 regulator-name = "abb_mpu";
1001 #address-cells = <0>;
1002 #size-cells = <0>;
1003 ti,tranxdone-status-mask = <0x80>;
1004 clocks = <&sys_clkin_ck>;
1005 ti,settling-time = <50>;
1006 ti,clock-cycles = <16>;
1007
1008 status = "disabled";
1009 };
1010
1011 abb_iva: regulator-abb-iva {
1012 compatible = "ti,abb-v2";
1013 regulator-name = "abb_iva";
1014 #address-cells = <0>;
1015 #size-cells = <0>;
1016 ti,tranxdone-status-mask = <0x80000000>;
1017 clocks = <&sys_clkin_ck>;
1018 ti,settling-time = <50>;
1019 ti,clock-cycles = <16>;
1020
1021 status = "disabled";
1022 };
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001023
1024 dss: dss@58000000 {
1025 compatible = "ti,omap4-dss";
1026 reg = <0x58000000 0x80>;
1027 status = "disabled";
1028 ti,hwmods = "dss_core";
1029 clocks = <&dss_dss_clk>;
1030 clock-names = "fck";
1031 #address-cells = <1>;
1032 #size-cells = <1>;
1033 ranges;
1034
1035 dispc@58001000 {
1036 compatible = "ti,omap4-dispc";
1037 reg = <0x58001000 0x1000>;
1038 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
1039 ti,hwmods = "dss_dispc";
1040 clocks = <&dss_dss_clk>;
1041 clock-names = "fck";
1042 };
1043
1044 rfbi: encoder@58002000 {
1045 compatible = "ti,omap4-rfbi";
1046 reg = <0x58002000 0x1000>;
1047 status = "disabled";
1048 ti,hwmods = "dss_rfbi";
Tomi Valkeinen2cc84f42014-10-09 17:03:18 +03001049 clocks = <&dss_dss_clk>, <&l3_div_ck>;
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001050 clock-names = "fck", "ick";
1051 };
1052
1053 venc: encoder@58003000 {
1054 compatible = "ti,omap4-venc";
1055 reg = <0x58003000 0x1000>;
1056 status = "disabled";
1057 ti,hwmods = "dss_venc";
1058 clocks = <&dss_tv_clk>;
1059 clock-names = "fck";
1060 };
1061
1062 dsi1: encoder@58004000 {
1063 compatible = "ti,omap4-dsi";
1064 reg = <0x58004000 0x200>,
1065 <0x58004200 0x40>,
1066 <0x58004300 0x20>;
1067 reg-names = "proto", "phy", "pll";
1068 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
1069 status = "disabled";
1070 ti,hwmods = "dss_dsi1";
1071 clocks = <&dss_dss_clk>, <&dss_sys_clk>;
1072 clock-names = "fck", "sys_clk";
1073 };
1074
1075 dsi2: encoder@58005000 {
1076 compatible = "ti,omap4-dsi";
1077 reg = <0x58005000 0x200>,
1078 <0x58005200 0x40>,
1079 <0x58005300 0x20>;
1080 reg-names = "proto", "phy", "pll";
1081 interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
1082 status = "disabled";
1083 ti,hwmods = "dss_dsi2";
1084 clocks = <&dss_dss_clk>, <&dss_sys_clk>;
1085 clock-names = "fck", "sys_clk";
1086 };
1087
1088 hdmi: encoder@58006000 {
1089 compatible = "ti,omap4-hdmi";
1090 reg = <0x58006000 0x200>,
1091 <0x58006200 0x100>,
1092 <0x58006300 0x100>,
1093 <0x58006400 0x1000>;
1094 reg-names = "wp", "pll", "phy", "core";
1095 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
1096 status = "disabled";
1097 ti,hwmods = "dss_hdmi";
1098 clocks = <&dss_48mhz_clk>, <&dss_sys_clk>;
1099 clock-names = "fck", "sys_clk";
Jyri Sarha53855b32014-05-12 12:12:24 +03001100 dmas = <&sdma 76>;
1101 dma-names = "audio_tx";
Tomi Valkeinencfe86fc2012-08-21 15:34:50 +03001102 };
1103 };
Benoit Coussond9fda072011-08-09 17:15:17 +02001104 };
1105};
Tero Kristo2488ff62013-07-18 12:42:02 +03001106
1107/include/ "omap44xx-clocks.dtsi"