blob: d1bf0b7f0ee98c9019d142b05ae5e3f51f035e37 [file] [log] [blame]
R Sricharan6e58b8f2013-08-14 19:08:20 +05301/*
2 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 * Based on "omap4.dtsi"
8 */
9
10#include <dt-bindings/interrupt-controller/arm-gic.h>
11#include <dt-bindings/pinctrl/dra.h>
12
13#include "skeleton.dtsi"
14
R Sricharana46631c2014-06-26 12:55:31 +053015#define MAX_SOURCES 400
R Sricharana46631c2014-06-26 12:55:31 +053016
R Sricharan6e58b8f2013-08-14 19:08:20 +053017/ {
18 #address-cells = <1>;
19 #size-cells = <1>;
20
21 compatible = "ti,dra7xx";
Marc Zyngier783d3182015-03-11 15:43:44 +000022 interrupt-parent = <&crossbar_mpu>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053023
24 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050025 i2c0 = &i2c1;
26 i2c1 = &i2c2;
27 i2c2 = &i2c3;
28 i2c3 = &i2c4;
29 i2c4 = &i2c5;
R Sricharan6e58b8f2013-08-14 19:08:20 +053030 serial0 = &uart1;
31 serial1 = &uart2;
32 serial2 = &uart3;
33 serial3 = &uart4;
34 serial4 = &uart5;
35 serial5 = &uart6;
Nishanth Menon065bd7f2014-10-21 11:18:15 -050036 serial6 = &uart7;
37 serial7 = &uart8;
38 serial8 = &uart9;
39 serial9 = &uart10;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +053040 ethernet0 = &cpsw_emac0;
41 ethernet1 = &cpsw_emac1;
Roger Quadros9ec49b92014-08-15 16:08:36 +030042 d_can0 = &dcan1;
43 d_can1 = &dcan2;
R Sricharan6e58b8f2013-08-14 19:08:20 +053044 };
45
R Sricharan6e58b8f2013-08-14 19:08:20 +053046 timer {
47 compatible = "arm,armv7-timer";
48 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
49 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
50 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
51 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000052 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053053 };
54
55 gic: interrupt-controller@48211000 {
56 compatible = "arm,cortex-a15-gic";
57 interrupt-controller;
58 #interrupt-cells = <3>;
59 reg = <0x48211000 0x1000>,
60 <0x48212000 0x1000>,
61 <0x48214000 0x2000>,
62 <0x48216000 0x2000>;
63 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000064 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053065 };
66
Marc Zyngier7136d452015-03-11 15:43:49 +000067 wakeupgen: interrupt-controller@48281000 {
68 compatible = "ti,omap5-wugen-mpu", "ti,omap4-wugen-mpu";
69 interrupt-controller;
70 #interrupt-cells = <3>;
71 reg = <0x48281000 0x1000>;
72 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053073 };
74
75 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +010076 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +053077 * that are not memory mapped in the MPU view or for the MPU itself.
78 */
79 soc {
80 compatible = "ti,omap-infra";
81 mpu {
82 compatible = "ti,omap5-mpu";
83 ti,hwmods = "mpu";
84 };
85 };
86
87 /*
88 * XXX: Use a flat representation of the SOC interconnect.
89 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +010090 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +053091 * the moment, just use a fake OCP bus entry to represent the whole bus
92 * hierarchy.
93 */
94 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -050095 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +053096 #address-cells = <1>;
97 #size-cells = <1>;
98 ranges;
99 ti,hwmods = "l3_main_1", "l3_main_2";
Rajendra Nayakfba387a2014-04-10 11:34:32 -0500100 reg = <0x44000000 0x1000000>,
101 <0x45000000 0x1000>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000102 interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
Marc Zyngier7136d452015-03-11 15:43:49 +0000103 <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530104
Tero Kristod9195012015-02-12 11:37:13 +0200105 l4_cfg: l4@4a000000 {
106 compatible = "ti,dra7-l4-cfg", "simple-bus";
107 #address-cells = <1>;
108 #size-cells = <1>;
109 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300110
Tero Kristod9195012015-02-12 11:37:13 +0200111 scm: scm@2000 {
112 compatible = "ti,dra7-scm-core", "simple-bus";
113 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300114 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200115 #size-cells = <1>;
116 ranges = <0 0x2000 0x2000>;
117
118 scm_conf: scm_conf@0 {
Kishon Vijay Abraham Icd455672015-07-27 17:46:41 +0530119 compatible = "syscon", "simple-bus";
Tero Kristod9195012015-02-12 11:37:13 +0200120 reg = <0x0 0x1400>;
121 #address-cells = <1>;
122 #size-cells = <1>;
123
124 pbias_regulator: pbias_regulator {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530125 compatible = "ti,pbias-dra7", "ti,pbias-omap";
Tero Kristod9195012015-02-12 11:37:13 +0200126 reg = <0xe00 0x4>;
127 syscon = <&scm_conf>;
128 pbias_mmc_reg: pbias_mmc_omap5 {
129 regulator-name = "pbias_mmc_omap5";
130 regulator-min-microvolt = <1800000>;
131 regulator-max-microvolt = <3000000>;
132 };
133 };
Tomi Valkeinen2d5a3c82015-02-23 12:53:56 +0200134
135 scm_conf_clocks: clocks {
136 #address-cells = <1>;
137 #size-cells = <0>;
138 };
Tero Kristod9195012015-02-12 11:37:13 +0200139 };
140
141 dra7_pmx_core: pinmux@1400 {
142 compatible = "ti,dra7-padconf",
143 "pinctrl-single";
Roger Quadros1c5cb6f2015-07-27 13:27:29 +0300144 reg = <0x1400 0x0468>;
Tero Kristod9195012015-02-12 11:37:13 +0200145 #address-cells = <1>;
146 #size-cells = <0>;
147 #interrupt-cells = <1>;
148 interrupt-controller;
149 pinctrl-single,register-width = <32>;
150 pinctrl-single,function-mask = <0x3fffffff>;
151 };
Roger Quadros33cb3a12015-08-04 12:10:14 +0300152
153 scm_conf1: scm_conf@1c04 {
154 compatible = "syscon";
155 reg = <0x1c04 0x0020>;
156 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300157 };
158
Tero Kristod9195012015-02-12 11:37:13 +0200159 cm_core_aon: cm_core_aon@5000 {
160 compatible = "ti,dra7-cm-core-aon";
161 reg = <0x5000 0x2000>;
162
163 cm_core_aon_clocks: clocks {
164 #address-cells = <1>;
165 #size-cells = <0>;
166 };
167
168 cm_core_aon_clockdomains: clockdomains {
169 };
170 };
171
172 cm_core: cm_core@8000 {
173 compatible = "ti,dra7-cm-core";
174 reg = <0x8000 0x3000>;
175
176 cm_core_clocks: clocks {
177 #address-cells = <1>;
178 #size-cells = <0>;
179 };
180
181 cm_core_clockdomains: clockdomains {
182 };
183 };
184 };
185
186 l4_wkup: l4@4ae00000 {
187 compatible = "ti,dra7-l4-wkup", "simple-bus";
188 #address-cells = <1>;
189 #size-cells = <1>;
190 ranges = <0 0x4ae00000 0x3f000>;
191
192 counter32k: counter@4000 {
193 compatible = "ti,omap-counter32k";
194 reg = <0x4000 0x40>;
195 ti,hwmods = "counter_32k";
196 };
197
198 prm: prm@6000 {
199 compatible = "ti,dra7-prm";
200 reg = <0x6000 0x3000>;
201 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
202
203 prm_clocks: clocks {
204 #address-cells = <1>;
205 #size-cells = <0>;
206 };
207
208 prm_clockdomains: clockdomains {
209 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300210 };
211 };
212
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530213 axi@0 {
214 compatible = "simple-bus";
215 #size-cells = <1>;
216 #address-cells = <1>;
217 ranges = <0x51000000 0x51000000 0x3000
218 0x0 0x20000000 0x10000000>;
Kishon Vijay Abraham I73c8f0c2015-07-28 19:09:10 +0530219 pcie1: pcie@51000000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530220 compatible = "ti,dra7-pcie";
221 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
222 reg-names = "rc_dbics", "ti_conf", "config";
223 interrupts = <0 232 0x4>, <0 233 0x4>;
224 #address-cells = <3>;
225 #size-cells = <2>;
226 device_type = "pci";
227 ranges = <0x81000000 0 0 0x03000 0 0x00010000
228 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
229 #interrupt-cells = <1>;
230 num-lanes = <1>;
231 ti,hwmods = "pcie1";
232 phys = <&pcie1_phy>;
233 phy-names = "pcie-phy0";
234 interrupt-map-mask = <0 0 0 7>;
235 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
236 <0 0 0 2 &pcie1_intc 2>,
237 <0 0 0 3 &pcie1_intc 3>,
238 <0 0 0 4 &pcie1_intc 4>;
239 pcie1_intc: interrupt-controller {
240 interrupt-controller;
241 #address-cells = <0>;
242 #interrupt-cells = <1>;
243 };
244 };
245 };
246
247 axi@1 {
248 compatible = "simple-bus";
249 #size-cells = <1>;
250 #address-cells = <1>;
251 ranges = <0x51800000 0x51800000 0x3000
252 0x0 0x30000000 0x10000000>;
253 status = "disabled";
254 pcie@51000000 {
255 compatible = "ti,dra7-pcie";
256 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
257 reg-names = "rc_dbics", "ti_conf", "config";
258 interrupts = <0 355 0x4>, <0 356 0x4>;
259 #address-cells = <3>;
260 #size-cells = <2>;
261 device_type = "pci";
262 ranges = <0x81000000 0 0 0x03000 0 0x00010000
263 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
264 #interrupt-cells = <1>;
265 num-lanes = <1>;
266 ti,hwmods = "pcie2";
267 phys = <&pcie2_phy>;
268 phy-names = "pcie-phy0";
269 interrupt-map-mask = <0 0 0 7>;
270 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
271 <0 0 0 2 &pcie2_intc 2>,
272 <0 0 0 3 &pcie2_intc 3>,
273 <0 0 0 4 &pcie2_intc 4>;
274 pcie2_intc: interrupt-controller {
275 interrupt-controller;
276 #address-cells = <0>;
277 #interrupt-cells = <1>;
278 };
279 };
280 };
281
Keerthyf7397ed2015-03-23 14:39:38 -0500282 bandgap: bandgap@4a0021e0 {
283 reg = <0x4a0021e0 0xc
284 0x4a00232c 0xc
285 0x4a002380 0x2c
286 0x4a0023C0 0x3c
287 0x4a002564 0x8
288 0x4a002574 0x50>;
289 compatible = "ti,dra752-bandgap";
290 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
291 #thermal-sensor-cells = <1>;
292 };
293
R Sricharan6e58b8f2013-08-14 19:08:20 +0530294 sdma: dma-controller@4a056000 {
295 compatible = "ti,omap4430-sdma";
296 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530297 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
298 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
299 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
300 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530301 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200302 dma-channels = <32>;
303 dma-requests = <127>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530304 };
305
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300306 sdma_xbar: dma-router@4a002b78 {
307 compatible = "ti,dra7-dma-crossbar";
308 reg = <0x4a002b78 0xfc>;
309 #dma-cells = <1>;
310 dma-requests = <205>;
311 ti,dma-safe-map = <0>;
312 dma-masters = <&sdma>;
313 };
314
R Sricharan6e58b8f2013-08-14 19:08:20 +0530315 gpio1: gpio@4ae10000 {
316 compatible = "ti,omap4-gpio";
317 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530318 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530319 ti,hwmods = "gpio1";
320 gpio-controller;
321 #gpio-cells = <2>;
322 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700323 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530324 };
325
326 gpio2: gpio@48055000 {
327 compatible = "ti,omap4-gpio";
328 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530329 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530330 ti,hwmods = "gpio2";
331 gpio-controller;
332 #gpio-cells = <2>;
333 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700334 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530335 };
336
337 gpio3: gpio@48057000 {
338 compatible = "ti,omap4-gpio";
339 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530340 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530341 ti,hwmods = "gpio3";
342 gpio-controller;
343 #gpio-cells = <2>;
344 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700345 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530346 };
347
348 gpio4: gpio@48059000 {
349 compatible = "ti,omap4-gpio";
350 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530351 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530352 ti,hwmods = "gpio4";
353 gpio-controller;
354 #gpio-cells = <2>;
355 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700356 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530357 };
358
359 gpio5: gpio@4805b000 {
360 compatible = "ti,omap4-gpio";
361 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530362 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530363 ti,hwmods = "gpio5";
364 gpio-controller;
365 #gpio-cells = <2>;
366 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700367 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530368 };
369
370 gpio6: gpio@4805d000 {
371 compatible = "ti,omap4-gpio";
372 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530373 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530374 ti,hwmods = "gpio6";
375 gpio-controller;
376 #gpio-cells = <2>;
377 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700378 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530379 };
380
381 gpio7: gpio@48051000 {
382 compatible = "ti,omap4-gpio";
383 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530384 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530385 ti,hwmods = "gpio7";
386 gpio-controller;
387 #gpio-cells = <2>;
388 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700389 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530390 };
391
392 gpio8: gpio@48053000 {
393 compatible = "ti,omap4-gpio";
394 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530395 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530396 ti,hwmods = "gpio8";
397 gpio-controller;
398 #gpio-cells = <2>;
399 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700400 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530401 };
402
403 uart1: serial@4806a000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530404 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530405 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000406 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530407 ti,hwmods = "uart1";
408 clock-frequency = <48000000>;
409 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300410 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200411 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530412 };
413
414 uart2: serial@4806c000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530415 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530416 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000417 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530418 ti,hwmods = "uart2";
419 clock-frequency = <48000000>;
420 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300421 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200422 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530423 };
424
425 uart3: serial@48020000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530426 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530427 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000428 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530429 ti,hwmods = "uart3";
430 clock-frequency = <48000000>;
431 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300432 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200433 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530434 };
435
436 uart4: serial@4806e000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530437 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530438 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000439 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530440 ti,hwmods = "uart4";
441 clock-frequency = <48000000>;
442 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300443 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200444 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530445 };
446
447 uart5: serial@48066000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530448 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530449 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000450 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530451 ti,hwmods = "uart5";
452 clock-frequency = <48000000>;
453 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300454 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200455 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530456 };
457
458 uart6: serial@48068000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530459 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530460 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000461 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530462 ti,hwmods = "uart6";
463 clock-frequency = <48000000>;
464 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300465 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200466 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530467 };
468
469 uart7: serial@48420000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530470 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530471 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000472 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530473 ti,hwmods = "uart7";
474 clock-frequency = <48000000>;
475 status = "disabled";
476 };
477
478 uart8: serial@48422000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530479 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530480 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000481 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530482 ti,hwmods = "uart8";
483 clock-frequency = <48000000>;
484 status = "disabled";
485 };
486
487 uart9: serial@48424000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530488 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530489 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000490 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530491 ti,hwmods = "uart9";
492 clock-frequency = <48000000>;
493 status = "disabled";
494 };
495
496 uart10: serial@4ae2b000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530497 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530498 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000499 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530500 ti,hwmods = "uart10";
501 clock-frequency = <48000000>;
502 status = "disabled";
503 };
504
Suman Anna38baefb2014-07-11 16:44:38 -0500505 mailbox1: mailbox@4a0f4000 {
506 compatible = "ti,omap4-mailbox";
507 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600508 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
509 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
510 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500511 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600512 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500513 ti,mbox-num-users = <3>;
514 ti,mbox-num-fifos = <8>;
515 status = "disabled";
516 };
517
518 mailbox2: mailbox@4883a000 {
519 compatible = "ti,omap4-mailbox";
520 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600521 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
522 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
523 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
524 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500525 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600526 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500527 ti,mbox-num-users = <4>;
528 ti,mbox-num-fifos = <12>;
529 status = "disabled";
530 };
531
532 mailbox3: mailbox@4883c000 {
533 compatible = "ti,omap4-mailbox";
534 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600535 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
536 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
537 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
538 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500539 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600540 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500541 ti,mbox-num-users = <4>;
542 ti,mbox-num-fifos = <12>;
543 status = "disabled";
544 };
545
546 mailbox4: mailbox@4883e000 {
547 compatible = "ti,omap4-mailbox";
548 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600549 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
550 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
551 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
552 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500553 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600554 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500555 ti,mbox-num-users = <4>;
556 ti,mbox-num-fifos = <12>;
557 status = "disabled";
558 };
559
560 mailbox5: mailbox@48840000 {
561 compatible = "ti,omap4-mailbox";
562 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600563 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
564 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
565 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
566 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500567 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600568 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500569 ti,mbox-num-users = <4>;
570 ti,mbox-num-fifos = <12>;
571 status = "disabled";
572 };
573
574 mailbox6: mailbox@48842000 {
575 compatible = "ti,omap4-mailbox";
576 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600577 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
578 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
579 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
580 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500581 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600582 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500583 ti,mbox-num-users = <4>;
584 ti,mbox-num-fifos = <12>;
585 status = "disabled";
586 };
587
588 mailbox7: mailbox@48844000 {
589 compatible = "ti,omap4-mailbox";
590 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600591 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
592 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
593 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
594 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500595 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600596 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500597 ti,mbox-num-users = <4>;
598 ti,mbox-num-fifos = <12>;
599 status = "disabled";
600 };
601
602 mailbox8: mailbox@48846000 {
603 compatible = "ti,omap4-mailbox";
604 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600605 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
606 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
607 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
608 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500609 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600610 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500611 ti,mbox-num-users = <4>;
612 ti,mbox-num-fifos = <12>;
613 status = "disabled";
614 };
615
616 mailbox9: mailbox@4885e000 {
617 compatible = "ti,omap4-mailbox";
618 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600619 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
620 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
621 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
622 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500623 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600624 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500625 ti,mbox-num-users = <4>;
626 ti,mbox-num-fifos = <12>;
627 status = "disabled";
628 };
629
630 mailbox10: mailbox@48860000 {
631 compatible = "ti,omap4-mailbox";
632 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600633 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
634 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
635 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
636 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500637 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600638 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500639 ti,mbox-num-users = <4>;
640 ti,mbox-num-fifos = <12>;
641 status = "disabled";
642 };
643
644 mailbox11: mailbox@48862000 {
645 compatible = "ti,omap4-mailbox";
646 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600647 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
648 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
649 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
650 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500651 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600652 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500653 ti,mbox-num-users = <4>;
654 ti,mbox-num-fifos = <12>;
655 status = "disabled";
656 };
657
658 mailbox12: mailbox@48864000 {
659 compatible = "ti,omap4-mailbox";
660 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600661 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
662 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
663 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
664 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500665 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600666 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500667 ti,mbox-num-users = <4>;
668 ti,mbox-num-fifos = <12>;
669 status = "disabled";
670 };
671
672 mailbox13: mailbox@48802000 {
673 compatible = "ti,omap4-mailbox";
674 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600675 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
676 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
677 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
678 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500679 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600680 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500681 ti,mbox-num-users = <4>;
682 ti,mbox-num-fifos = <12>;
683 status = "disabled";
684 };
685
R Sricharan6e58b8f2013-08-14 19:08:20 +0530686 timer1: timer@4ae18000 {
687 compatible = "ti,omap5430-timer";
688 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530689 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530690 ti,hwmods = "timer1";
691 ti,timer-alwon;
692 };
693
694 timer2: timer@48032000 {
695 compatible = "ti,omap5430-timer";
696 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530697 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530698 ti,hwmods = "timer2";
699 };
700
701 timer3: timer@48034000 {
702 compatible = "ti,omap5430-timer";
703 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530704 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530705 ti,hwmods = "timer3";
706 };
707
708 timer4: timer@48036000 {
709 compatible = "ti,omap5430-timer";
710 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530711 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530712 ti,hwmods = "timer4";
713 };
714
715 timer5: timer@48820000 {
716 compatible = "ti,omap5430-timer";
717 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530718 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530719 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530720 };
721
722 timer6: timer@48822000 {
723 compatible = "ti,omap5430-timer";
724 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530725 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530726 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530727 };
728
729 timer7: timer@48824000 {
730 compatible = "ti,omap5430-timer";
731 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530732 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530733 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530734 };
735
736 timer8: timer@48826000 {
737 compatible = "ti,omap5430-timer";
738 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530739 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530740 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530741 };
742
743 timer9: timer@4803e000 {
744 compatible = "ti,omap5430-timer";
745 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530746 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530747 ti,hwmods = "timer9";
748 };
749
750 timer10: timer@48086000 {
751 compatible = "ti,omap5430-timer";
752 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530753 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530754 ti,hwmods = "timer10";
755 };
756
757 timer11: timer@48088000 {
758 compatible = "ti,omap5430-timer";
759 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530760 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530761 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530762 };
763
764 timer13: timer@48828000 {
765 compatible = "ti,omap5430-timer";
766 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530767 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530768 ti,hwmods = "timer13";
769 status = "disabled";
770 };
771
772 timer14: timer@4882a000 {
773 compatible = "ti,omap5430-timer";
774 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530775 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530776 ti,hwmods = "timer14";
777 status = "disabled";
778 };
779
780 timer15: timer@4882c000 {
781 compatible = "ti,omap5430-timer";
782 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530783 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530784 ti,hwmods = "timer15";
785 status = "disabled";
786 };
787
788 timer16: timer@4882e000 {
789 compatible = "ti,omap5430-timer";
790 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530791 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530792 ti,hwmods = "timer16";
793 status = "disabled";
794 };
795
796 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530797 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530798 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530799 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530800 ti,hwmods = "wd_timer2";
801 };
802
Suman Annadbd7c192014-01-13 18:26:46 -0600803 hwspinlock: spinlock@4a0f6000 {
804 compatible = "ti,omap4-hwspinlock";
805 reg = <0x4a0f6000 0x1000>;
806 ti,hwmods = "spinlock";
807 #hwlock-cells = <1>;
808 };
809
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530810 dmm@4e000000 {
811 compatible = "ti,omap5-dmm";
812 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530813 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530814 ti,hwmods = "dmm";
815 };
816
R Sricharan6e58b8f2013-08-14 19:08:20 +0530817 i2c1: i2c@48070000 {
818 compatible = "ti,omap4-i2c";
819 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530820 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530821 #address-cells = <1>;
822 #size-cells = <0>;
823 ti,hwmods = "i2c1";
824 status = "disabled";
825 };
826
827 i2c2: i2c@48072000 {
828 compatible = "ti,omap4-i2c";
829 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530830 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530831 #address-cells = <1>;
832 #size-cells = <0>;
833 ti,hwmods = "i2c2";
834 status = "disabled";
835 };
836
837 i2c3: i2c@48060000 {
838 compatible = "ti,omap4-i2c";
839 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530840 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530841 #address-cells = <1>;
842 #size-cells = <0>;
843 ti,hwmods = "i2c3";
844 status = "disabled";
845 };
846
847 i2c4: i2c@4807a000 {
848 compatible = "ti,omap4-i2c";
849 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530850 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530851 #address-cells = <1>;
852 #size-cells = <0>;
853 ti,hwmods = "i2c4";
854 status = "disabled";
855 };
856
857 i2c5: i2c@4807c000 {
858 compatible = "ti,omap4-i2c";
859 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530860 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530861 #address-cells = <1>;
862 #size-cells = <0>;
863 ti,hwmods = "i2c5";
864 status = "disabled";
865 };
866
867 mmc1: mmc@4809c000 {
868 compatible = "ti,omap4-hsmmc";
869 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530870 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530871 ti,hwmods = "mmc1";
872 ti,dual-volt;
873 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300874 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530875 dma-names = "tx", "rx";
876 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530877 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530878 };
879
880 mmc2: mmc@480b4000 {
881 compatible = "ti,omap4-hsmmc";
882 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530883 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530884 ti,hwmods = "mmc2";
885 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300886 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530887 dma-names = "tx", "rx";
888 status = "disabled";
889 };
890
891 mmc3: mmc@480ad000 {
892 compatible = "ti,omap4-hsmmc";
893 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530894 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530895 ti,hwmods = "mmc3";
896 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300897 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530898 dma-names = "tx", "rx";
899 status = "disabled";
900 };
901
902 mmc4: mmc@480d1000 {
903 compatible = "ti,omap4-hsmmc";
904 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530905 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530906 ti,hwmods = "mmc4";
907 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300908 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530909 dma-names = "tx", "rx";
910 status = "disabled";
911 };
912
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530913 abb_mpu: regulator-abb-mpu {
914 compatible = "ti,abb-v3";
915 regulator-name = "abb_mpu";
916 #address-cells = <0>;
917 #size-cells = <0>;
918 clocks = <&sys_clkin1>;
919 ti,settling-time = <50>;
920 ti,clock-cycles = <16>;
921
922 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500923 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530924 <0x4ae0c158 0x4>;
925 reg-names = "setup-address", "control-address",
926 "int-address", "efuse-address",
927 "ldo-address";
928 ti,tranxdone-status-mask = <0x80>;
929 /* LDOVBBMPU_FBB_MUX_CTRL */
930 ti,ldovbb-override-mask = <0x400>;
931 /* LDOVBBMPU_FBB_VSET_OUT */
932 ti,ldovbb-vset-mask = <0x1F>;
933
934 /*
935 * NOTE: only FBB mode used but actual vset will
936 * determine final biasing
937 */
938 ti,abb_info = <
939 /*uV ABB efuse rbb_m fbb_m vset_m*/
940 1060000 0 0x0 0 0x02000000 0x01F00000
941 1160000 0 0x4 0 0x02000000 0x01F00000
942 1210000 0 0x8 0 0x02000000 0x01F00000
943 >;
944 };
945
946 abb_ivahd: regulator-abb-ivahd {
947 compatible = "ti,abb-v3";
948 regulator-name = "abb_ivahd";
949 #address-cells = <0>;
950 #size-cells = <0>;
951 clocks = <&sys_clkin1>;
952 ti,settling-time = <50>;
953 ti,clock-cycles = <16>;
954
955 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500956 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530957 <0x4a002470 0x4>;
958 reg-names = "setup-address", "control-address",
959 "int-address", "efuse-address",
960 "ldo-address";
961 ti,tranxdone-status-mask = <0x40000000>;
962 /* LDOVBBIVA_FBB_MUX_CTRL */
963 ti,ldovbb-override-mask = <0x400>;
964 /* LDOVBBIVA_FBB_VSET_OUT */
965 ti,ldovbb-vset-mask = <0x1F>;
966
967 /*
968 * NOTE: only FBB mode used but actual vset will
969 * determine final biasing
970 */
971 ti,abb_info = <
972 /*uV ABB efuse rbb_m fbb_m vset_m*/
973 1055000 0 0x0 0 0x02000000 0x01F00000
974 1150000 0 0x4 0 0x02000000 0x01F00000
975 1250000 0 0x8 0 0x02000000 0x01F00000
976 >;
977 };
978
979 abb_dspeve: regulator-abb-dspeve {
980 compatible = "ti,abb-v3";
981 regulator-name = "abb_dspeve";
982 #address-cells = <0>;
983 #size-cells = <0>;
984 clocks = <&sys_clkin1>;
985 ti,settling-time = <50>;
986 ti,clock-cycles = <16>;
987
988 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -0500989 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530990 <0x4a00246c 0x4>;
991 reg-names = "setup-address", "control-address",
992 "int-address", "efuse-address",
993 "ldo-address";
994 ti,tranxdone-status-mask = <0x20000000>;
995 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
996 ti,ldovbb-override-mask = <0x400>;
997 /* LDOVBBDSPEVE_FBB_VSET_OUT */
998 ti,ldovbb-vset-mask = <0x1F>;
999
1000 /*
1001 * NOTE: only FBB mode used but actual vset will
1002 * determine final biasing
1003 */
1004 ti,abb_info = <
1005 /*uV ABB efuse rbb_m fbb_m vset_m*/
1006 1055000 0 0x0 0 0x02000000 0x01F00000
1007 1150000 0 0x4 0 0x02000000 0x01F00000
1008 1250000 0 0x8 0 0x02000000 0x01F00000
1009 >;
1010 };
1011
1012 abb_gpu: regulator-abb-gpu {
1013 compatible = "ti,abb-v3";
1014 regulator-name = "abb_gpu";
1015 #address-cells = <0>;
1016 #size-cells = <0>;
1017 clocks = <&sys_clkin1>;
1018 ti,settling-time = <50>;
1019 ti,clock-cycles = <16>;
1020
1021 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001022 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301023 <0x4ae0c154 0x4>;
1024 reg-names = "setup-address", "control-address",
1025 "int-address", "efuse-address",
1026 "ldo-address";
1027 ti,tranxdone-status-mask = <0x10000000>;
1028 /* LDOVBBGPU_FBB_MUX_CTRL */
1029 ti,ldovbb-override-mask = <0x400>;
1030 /* LDOVBBGPU_FBB_VSET_OUT */
1031 ti,ldovbb-vset-mask = <0x1F>;
1032
1033 /*
1034 * NOTE: only FBB mode used but actual vset will
1035 * determine final biasing
1036 */
1037 ti,abb_info = <
1038 /*uV ABB efuse rbb_m fbb_m vset_m*/
1039 1090000 0 0x0 0 0x02000000 0x01F00000
1040 1210000 0 0x4 0 0x02000000 0x01F00000
1041 1280000 0 0x8 0 0x02000000 0x01F00000
1042 >;
1043 };
1044
R Sricharan6e58b8f2013-08-14 19:08:20 +05301045 mcspi1: spi@48098000 {
1046 compatible = "ti,omap4-mcspi";
1047 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301048 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301049 #address-cells = <1>;
1050 #size-cells = <0>;
1051 ti,hwmods = "mcspi1";
1052 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001053 dmas = <&sdma_xbar 35>,
1054 <&sdma_xbar 36>,
1055 <&sdma_xbar 37>,
1056 <&sdma_xbar 38>,
1057 <&sdma_xbar 39>,
1058 <&sdma_xbar 40>,
1059 <&sdma_xbar 41>,
1060 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301061 dma-names = "tx0", "rx0", "tx1", "rx1",
1062 "tx2", "rx2", "tx3", "rx3";
1063 status = "disabled";
1064 };
1065
1066 mcspi2: spi@4809a000 {
1067 compatible = "ti,omap4-mcspi";
1068 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301069 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301070 #address-cells = <1>;
1071 #size-cells = <0>;
1072 ti,hwmods = "mcspi2";
1073 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001074 dmas = <&sdma_xbar 43>,
1075 <&sdma_xbar 44>,
1076 <&sdma_xbar 45>,
1077 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301078 dma-names = "tx0", "rx0", "tx1", "rx1";
1079 status = "disabled";
1080 };
1081
1082 mcspi3: spi@480b8000 {
1083 compatible = "ti,omap4-mcspi";
1084 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301085 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301086 #address-cells = <1>;
1087 #size-cells = <0>;
1088 ti,hwmods = "mcspi3";
1089 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001090 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301091 dma-names = "tx0", "rx0";
1092 status = "disabled";
1093 };
1094
1095 mcspi4: spi@480ba000 {
1096 compatible = "ti,omap4-mcspi";
1097 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301098 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301099 #address-cells = <1>;
1100 #size-cells = <0>;
1101 ti,hwmods = "mcspi4";
1102 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001103 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301104 dma-names = "tx0", "rx0";
1105 status = "disabled";
1106 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301107
1108 qspi: qspi@4b300000 {
1109 compatible = "ti,dra7xxx-qspi";
1110 reg = <0x4b300000 0x100>;
1111 reg-names = "qspi_base";
1112 #address-cells = <1>;
1113 #size-cells = <0>;
1114 ti,hwmods = "qspi";
1115 clocks = <&qspi_gfclk_div>;
1116 clock-names = "fck";
1117 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301118 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301119 status = "disabled";
1120 };
Balaji T K7be80562014-05-07 14:58:58 +03001121
1122 omap_control_sata: control-phy@4a002374 {
1123 compatible = "ti,control-phy-pipe3";
1124 reg = <0x4a002374 0x4>;
1125 reg-names = "power";
1126 clocks = <&sys_clkin1>;
1127 clock-names = "sysclk";
1128 };
1129
1130 /* OCP2SCP3 */
1131 ocp2scp@4a090000 {
1132 compatible = "ti,omap-ocp2scp";
1133 #address-cells = <1>;
1134 #size-cells = <1>;
1135 ranges;
1136 reg = <0x4a090000 0x20>;
1137 ti,hwmods = "ocp2scp3";
1138 sata_phy: phy@4A096000 {
1139 compatible = "ti,phy-pipe3-sata";
1140 reg = <0x4A096000 0x80>, /* phy_rx */
1141 <0x4A096400 0x64>, /* phy_tx */
1142 <0x4A096800 0x40>; /* pll_ctrl */
1143 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1144 ctrl-module = <&omap_control_sata>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001145 clocks = <&sys_clkin1>, <&sata_ref_clk>;
1146 clock-names = "sysclk", "refclk";
Roger Quadros257d5d92015-07-17 16:47:23 +03001147 syscon-pllreset = <&scm_conf 0x3fc>;
Balaji T K7be80562014-05-07 14:58:58 +03001148 #phy-cells = <0>;
1149 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301150
1151 pcie1_phy: pciephy@4a094000 {
1152 compatible = "ti,phy-pipe3-pcie";
1153 reg = <0x4a094000 0x80>, /* phy_rx */
1154 <0x4a094400 0x64>; /* phy_tx */
1155 reg-names = "phy_rx", "phy_tx";
1156 ctrl-module = <&omap_control_pcie1phy>;
1157 clocks = <&dpll_pcie_ref_ck>,
1158 <&dpll_pcie_ref_m2ldo_ck>,
1159 <&optfclk_pciephy1_32khz>,
1160 <&optfclk_pciephy1_clk>,
1161 <&optfclk_pciephy1_div_clk>,
1162 <&optfclk_pciephy_div>;
1163 clock-names = "dpll_ref", "dpll_ref_m2",
1164 "wkupclk", "refclk",
1165 "div-clk", "phy-div";
1166 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301167 };
1168
1169 pcie2_phy: pciephy@4a095000 {
1170 compatible = "ti,phy-pipe3-pcie";
1171 reg = <0x4a095000 0x80>, /* phy_rx */
1172 <0x4a095400 0x64>; /* phy_tx */
1173 reg-names = "phy_rx", "phy_tx";
1174 ctrl-module = <&omap_control_pcie2phy>;
1175 clocks = <&dpll_pcie_ref_ck>,
1176 <&dpll_pcie_ref_m2ldo_ck>,
1177 <&optfclk_pciephy2_32khz>,
1178 <&optfclk_pciephy2_clk>,
1179 <&optfclk_pciephy2_div_clk>,
1180 <&optfclk_pciephy_div>;
1181 clock-names = "dpll_ref", "dpll_ref_m2",
1182 "wkupclk", "refclk",
1183 "div-clk", "phy-div";
1184 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301185 status = "disabled";
1186 };
Balaji T K7be80562014-05-07 14:58:58 +03001187 };
1188
1189 sata: sata@4a141100 {
1190 compatible = "snps,dwc-ahci";
1191 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301192 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001193 phys = <&sata_phy>;
1194 phy-names = "sata-phy";
1195 clocks = <&sata_ref_clk>;
1196 ti,hwmods = "sata";
1197 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001198
Kishon Vijay Abraham Id1ff66b2014-07-14 16:12:21 +05301199 omap_control_pcie1phy: control-phy@0x4a003c40 {
1200 compatible = "ti,control-phy-pcie";
1201 reg = <0x4a003c40 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1202 reg-names = "power", "control_sma", "pcie_pcs";
1203 clocks = <&sys_clkin1>;
1204 clock-names = "sysclk";
1205 };
1206
1207 omap_control_pcie2phy: control-pcie@0x4a003c44 {
1208 compatible = "ti,control-phy-pcie";
1209 reg = <0x4a003c44 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1210 reg-names = "power", "control_sma", "pcie_pcs";
1211 clocks = <&sys_clkin1>;
1212 clock-names = "sysclk";
1213 status = "disabled";
1214 };
1215
Nishanth Menon00edd312015-04-08 18:56:27 -05001216 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301217 compatible = "ti,am3352-rtc";
1218 reg = <0x48838000 0x100>;
1219 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1220 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1221 ti,hwmods = "rtcss";
1222 clocks = <&sys_32k_ck>;
1223 };
1224
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001225 omap_control_usb2phy1: control-phy@4a002300 {
1226 compatible = "ti,control-phy-usb2";
1227 reg = <0x4a002300 0x4>;
1228 reg-names = "power";
1229 };
1230
1231 omap_control_usb3phy1: control-phy@4a002370 {
1232 compatible = "ti,control-phy-pipe3";
1233 reg = <0x4a002370 0x4>;
1234 reg-names = "power";
1235 };
1236
1237 omap_control_usb2phy2: control-phy@0x4a002e74 {
1238 compatible = "ti,control-phy-usb2-dra7";
1239 reg = <0x4a002e74 0x4>;
1240 reg-names = "power";
1241 };
1242
1243 /* OCP2SCP1 */
1244 ocp2scp@4a080000 {
1245 compatible = "ti,omap-ocp2scp";
1246 #address-cells = <1>;
1247 #size-cells = <1>;
1248 ranges;
1249 reg = <0x4a080000 0x20>;
1250 ti,hwmods = "ocp2scp1";
1251
1252 usb2_phy1: phy@4a084000 {
1253 compatible = "ti,omap-usb2";
1254 reg = <0x4a084000 0x400>;
1255 ctrl-module = <&omap_control_usb2phy1>;
1256 clocks = <&usb_phy1_always_on_clk32k>,
1257 <&usb_otg_ss1_refclk960m>;
1258 clock-names = "wkupclk",
1259 "refclk";
1260 #phy-cells = <0>;
1261 };
1262
1263 usb2_phy2: phy@4a085000 {
1264 compatible = "ti,omap-usb2";
1265 reg = <0x4a085000 0x400>;
1266 ctrl-module = <&omap_control_usb2phy2>;
1267 clocks = <&usb_phy2_always_on_clk32k>,
1268 <&usb_otg_ss2_refclk960m>;
1269 clock-names = "wkupclk",
1270 "refclk";
1271 #phy-cells = <0>;
1272 };
1273
1274 usb3_phy1: phy@4a084400 {
1275 compatible = "ti,omap-usb3";
1276 reg = <0x4a084400 0x80>,
1277 <0x4a084800 0x64>,
1278 <0x4a084c00 0x40>;
1279 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1280 ctrl-module = <&omap_control_usb3phy1>;
1281 clocks = <&usb_phy3_always_on_clk32k>,
1282 <&sys_clkin1>,
1283 <&usb_otg_ss1_refclk960m>;
1284 clock-names = "wkupclk",
1285 "sysclk",
1286 "refclk";
1287 #phy-cells = <0>;
1288 };
1289 };
1290
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001291 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001292 compatible = "ti,dwc3";
1293 ti,hwmods = "usb_otg_ss1";
1294 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301295 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001296 #address-cells = <1>;
1297 #size-cells = <1>;
1298 utmi-mode = <2>;
1299 ranges;
1300 usb1: usb@48890000 {
1301 compatible = "snps,dwc3";
1302 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001303 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1304 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1305 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1306 interrupt-names = "peripheral",
1307 "host",
1308 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001309 phys = <&usb2_phy1>, <&usb3_phy1>;
1310 phy-names = "usb2-phy", "usb3-phy";
1311 tx-fifo-resize;
1312 maximum-speed = "super-speed";
1313 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001314 snps,dis_u3_susphy_quirk;
1315 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001316 };
1317 };
1318
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001319 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001320 compatible = "ti,dwc3";
1321 ti,hwmods = "usb_otg_ss2";
1322 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301323 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001324 #address-cells = <1>;
1325 #size-cells = <1>;
1326 utmi-mode = <2>;
1327 ranges;
1328 usb2: usb@488d0000 {
1329 compatible = "snps,dwc3";
1330 reg = <0x488d0000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001331 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1332 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1333 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1334 interrupt-names = "peripheral",
1335 "host",
1336 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001337 phys = <&usb2_phy2>;
1338 phy-names = "usb2-phy";
1339 tx-fifo-resize;
1340 maximum-speed = "high-speed";
1341 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001342 snps,dis_u3_susphy_quirk;
1343 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001344 };
1345 };
1346
1347 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001348 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001349 compatible = "ti,dwc3";
1350 ti,hwmods = "usb_otg_ss3";
1351 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301352 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001353 #address-cells = <1>;
1354 #size-cells = <1>;
1355 utmi-mode = <2>;
1356 ranges;
1357 status = "disabled";
1358 usb3: usb@48910000 {
1359 compatible = "snps,dwc3";
1360 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001361 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1362 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1363 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1364 interrupt-names = "peripheral",
1365 "host",
1366 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001367 tx-fifo-resize;
1368 maximum-speed = "high-speed";
1369 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001370 snps,dis_u3_susphy_quirk;
1371 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001372 };
1373 };
1374
Minal Shahff66a3c2014-05-19 14:45:47 +05301375 elm: elm@48078000 {
1376 compatible = "ti,am3352-elm";
1377 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301378 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301379 ti,hwmods = "elm";
1380 status = "disabled";
1381 };
1382
1383 gpmc: gpmc@50000000 {
1384 compatible = "ti,am3352-gpmc";
1385 ti,hwmods = "gpmc";
1386 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301387 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301388 gpmc,num-cs = <8>;
1389 gpmc,num-waitpins = <2>;
1390 #address-cells = <2>;
1391 #size-cells = <1>;
1392 status = "disabled";
1393 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001394
1395 atl: atl@4843c000 {
1396 compatible = "ti,dra7-atl";
1397 reg = <0x4843c000 0x3ff>;
1398 ti,hwmods = "atl";
1399 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1400 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1401 clocks = <&atl_gfclk_mux>;
1402 clock-names = "fck";
1403 status = "disabled";
1404 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001405
Marc Zyngier783d3182015-03-11 15:43:44 +00001406 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301407 compatible = "ti,irq-crossbar";
1408 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001409 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001410 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001411 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301412 ti,max-irqs = <160>;
1413 ti,max-crossbar-sources = <MAX_SOURCES>;
1414 ti,reg-size = <2>;
1415 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1416 ti,irqs-skip = <10 133 139 140>;
1417 ti,irqs-safe-map = <0>;
1418 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301419
1420 mac: ethernet@4a100000 {
Mugunthan V Ne2095312015-08-12 15:22:54 +05301421 compatible = "ti,dra7-cpsw","ti,cpsw";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301422 ti,hwmods = "gmac";
1423 clocks = <&dpll_gmac_ck>, <&gmac_gmii_ref_clk_div>;
1424 clock-names = "fck", "cpts";
1425 cpdma_channels = <8>;
1426 ale_entries = <1024>;
1427 bd_ram_size = <0x2000>;
1428 no_bd_ram = <0>;
1429 rx_descs = <64>;
1430 mac_control = <0x20>;
1431 slaves = <2>;
1432 active_slave = <0>;
1433 cpts_clock_mult = <0x80000000>;
1434 cpts_clock_shift = <29>;
1435 reg = <0x48484000 0x1000
1436 0x48485200 0x2E00>;
1437 #address-cells = <1>;
1438 #size-cells = <1>;
1439 /*
1440 * rx_thresh_pend
1441 * rx_pend
1442 * tx_pend
1443 * misc_pend
1444 */
1445 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1446 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1447 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1448 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1449 ranges;
1450 status = "disabled";
1451
1452 davinci_mdio: mdio@48485000 {
1453 compatible = "ti,davinci_mdio";
1454 #address-cells = <1>;
1455 #size-cells = <0>;
1456 ti,hwmods = "davinci_mdio";
1457 bus_freq = <1000000>;
1458 reg = <0x48485000 0x100>;
1459 };
1460
1461 cpsw_emac0: slave@48480200 {
1462 /* Filled in by U-Boot */
1463 mac-address = [ 00 00 00 00 00 00 ];
1464 };
1465
1466 cpsw_emac1: slave@48480300 {
1467 /* Filled in by U-Boot */
1468 mac-address = [ 00 00 00 00 00 00 ];
1469 };
1470
1471 phy_sel: cpsw-phy-sel@4a002554 {
1472 compatible = "ti,dra7xx-cpsw-phy-sel";
1473 reg= <0x4a002554 0x4>;
1474 reg-names = "gmii-sel";
1475 };
1476 };
1477
Roger Quadros9ec49b92014-08-15 16:08:36 +03001478 dcan1: can@481cc000 {
1479 compatible = "ti,dra7-d_can";
1480 ti,hwmods = "dcan1";
1481 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001482 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001483 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1484 clocks = <&dcan1_sys_clk_mux>;
1485 status = "disabled";
1486 };
1487
1488 dcan2: can@481d0000 {
1489 compatible = "ti,dra7-d_can";
1490 ti,hwmods = "dcan2";
1491 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001492 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001493 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1494 clocks = <&sys_clkin1>;
1495 status = "disabled";
1496 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301497
1498 dss: dss@58000000 {
1499 compatible = "ti,dra7-dss";
1500 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1501 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1502 status = "disabled";
1503 ti,hwmods = "dss_core";
1504 /* CTRL_CORE_DSS_PLL_CONTROL */
1505 syscon-pll-ctrl = <&scm_conf 0x538>;
1506 #address-cells = <1>;
1507 #size-cells = <1>;
1508 ranges;
1509
1510 dispc@58001000 {
1511 compatible = "ti,dra7-dispc";
1512 reg = <0x58001000 0x1000>;
1513 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1514 ti,hwmods = "dss_dispc";
1515 clocks = <&dss_dss_clk>;
1516 clock-names = "fck";
1517 /* CTRL_CORE_SMA_SW_1 */
1518 syscon-pol = <&scm_conf 0x534>;
1519 };
1520
1521 hdmi: encoder@58060000 {
1522 compatible = "ti,dra7-hdmi";
1523 reg = <0x58040000 0x200>,
1524 <0x58040200 0x80>,
1525 <0x58040300 0x80>,
1526 <0x58060000 0x19000>;
1527 reg-names = "wp", "pll", "phy", "core";
1528 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1529 status = "disabled";
1530 ti,hwmods = "dss_hdmi";
1531 clocks = <&dss_48mhz_clk>, <&dss_hdmi_clk>;
1532 clock-names = "fck", "sys_clk";
1533 };
1534 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301535 };
Keerthyf7397ed2015-03-23 14:39:38 -05001536
1537 thermal_zones: thermal-zones {
1538 #include "omap4-cpu-thermal.dtsi"
1539 #include "omap5-gpu-thermal.dtsi"
1540 #include "omap5-core-thermal.dtsi"
1541 };
1542
1543};
1544
1545&cpu_thermal {
1546 polling-delay = <500>; /* milliseconds */
R Sricharan6e58b8f2013-08-14 19:08:20 +05301547};
Tero Kristoee6c7502013-07-18 17:18:33 +03001548
1549/include/ "dra7xx-clocks.dtsi"