blob: 8e50ca3fc10204b23a0a6ba9d734b49d0b89d1ae [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
16#define DIRECT_IRQ(irq) (MAX_SOURCES + irq)
17
R Sricharan6e58b8f2013-08-14 19:08:20 +053018/ {
19 #address-cells = <1>;
20 #size-cells = <1>;
21
22 compatible = "ti,dra7xx";
23 interrupt-parent = <&gic>;
24
25 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050026 i2c0 = &i2c1;
27 i2c1 = &i2c2;
28 i2c2 = &i2c3;
29 i2c3 = &i2c4;
30 i2c4 = &i2c5;
R Sricharan6e58b8f2013-08-14 19:08:20 +053031 serial0 = &uart1;
32 serial1 = &uart2;
33 serial2 = &uart3;
34 serial3 = &uart4;
35 serial4 = &uart5;
36 serial5 = &uart6;
Nishanth Menon065bd7f2014-10-21 11:18:15 -050037 serial6 = &uart7;
38 serial7 = &uart8;
39 serial8 = &uart9;
40 serial9 = &uart10;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +053041 ethernet0 = &cpsw_emac0;
42 ethernet1 = &cpsw_emac1;
Roger Quadros9ec49b92014-08-15 16:08:36 +030043 d_can0 = &dcan1;
44 d_can1 = &dcan2;
R Sricharan6e58b8f2013-08-14 19:08:20 +053045 };
46
R Sricharan6e58b8f2013-08-14 19:08:20 +053047 timer {
48 compatible = "arm,armv7-timer";
49 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
50 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
51 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
52 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
53 };
54
55 gic: interrupt-controller@48211000 {
56 compatible = "arm,cortex-a15-gic";
57 interrupt-controller;
58 #interrupt-cells = <3>;
R Sricharan51300632014-06-26 12:55:30 +053059 arm,routable-irqs = <192>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053060 reg = <0x48211000 0x1000>,
61 <0x48212000 0x1000>,
62 <0x48214000 0x2000>,
63 <0x48216000 0x2000>;
64 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
65 };
66
67 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +010068 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +053069 * that are not memory mapped in the MPU view or for the MPU itself.
70 */
71 soc {
72 compatible = "ti,omap-infra";
73 mpu {
74 compatible = "ti,omap5-mpu";
75 ti,hwmods = "mpu";
76 };
77 };
78
79 /*
80 * XXX: Use a flat representation of the SOC interconnect.
81 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +010082 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +053083 * the moment, just use a fake OCP bus entry to represent the whole bus
84 * hierarchy.
85 */
86 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -050087 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +053088 #address-cells = <1>;
89 #size-cells = <1>;
90 ranges;
91 ti,hwmods = "l3_main_1", "l3_main_2";
Rajendra Nayakfba387a2014-04-10 11:34:32 -050092 reg = <0x44000000 0x1000000>,
93 <0x45000000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +053094 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
95 <GIC_SPI DIRECT_IRQ(10) IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053096
Tero Kristod9195012015-02-12 11:37:13 +020097 l4_cfg: l4@4a000000 {
98 compatible = "ti,dra7-l4-cfg", "simple-bus";
99 #address-cells = <1>;
100 #size-cells = <1>;
101 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300102
Tero Kristod9195012015-02-12 11:37:13 +0200103 scm: scm@2000 {
104 compatible = "ti,dra7-scm-core", "simple-bus";
105 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300106 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200107 #size-cells = <1>;
108 ranges = <0 0x2000 0x2000>;
109
110 scm_conf: scm_conf@0 {
111 compatible = "syscon";
112 reg = <0x0 0x1400>;
113 #address-cells = <1>;
114 #size-cells = <1>;
115
116 pbias_regulator: pbias_regulator {
117 compatible = "ti,pbias-omap";
118 reg = <0xe00 0x4>;
119 syscon = <&scm_conf>;
120 pbias_mmc_reg: pbias_mmc_omap5 {
121 regulator-name = "pbias_mmc_omap5";
122 regulator-min-microvolt = <1800000>;
123 regulator-max-microvolt = <3000000>;
124 };
125 };
126 };
127
128 dra7_pmx_core: pinmux@1400 {
129 compatible = "ti,dra7-padconf",
130 "pinctrl-single";
131 reg = <0x1400 0x0464>;
132 #address-cells = <1>;
133 #size-cells = <0>;
134 #interrupt-cells = <1>;
135 interrupt-controller;
136 pinctrl-single,register-width = <32>;
137 pinctrl-single,function-mask = <0x3fffffff>;
138 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300139 };
140
Tero Kristod9195012015-02-12 11:37:13 +0200141 cm_core_aon: cm_core_aon@5000 {
142 compatible = "ti,dra7-cm-core-aon";
143 reg = <0x5000 0x2000>;
144
145 cm_core_aon_clocks: clocks {
146 #address-cells = <1>;
147 #size-cells = <0>;
148 };
149
150 cm_core_aon_clockdomains: clockdomains {
151 };
152 };
153
154 cm_core: cm_core@8000 {
155 compatible = "ti,dra7-cm-core";
156 reg = <0x8000 0x3000>;
157
158 cm_core_clocks: clocks {
159 #address-cells = <1>;
160 #size-cells = <0>;
161 };
162
163 cm_core_clockdomains: clockdomains {
164 };
165 };
166 };
167
168 l4_wkup: l4@4ae00000 {
169 compatible = "ti,dra7-l4-wkup", "simple-bus";
170 #address-cells = <1>;
171 #size-cells = <1>;
172 ranges = <0 0x4ae00000 0x3f000>;
173
174 counter32k: counter@4000 {
175 compatible = "ti,omap-counter32k";
176 reg = <0x4000 0x40>;
177 ti,hwmods = "counter_32k";
178 };
179
180 prm: prm@6000 {
181 compatible = "ti,dra7-prm";
182 reg = <0x6000 0x3000>;
183 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
184
185 prm_clocks: clocks {
186 #address-cells = <1>;
187 #size-cells = <0>;
188 };
189
190 prm_clockdomains: clockdomains {
191 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300192 };
193 };
194
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530195 axi@0 {
196 compatible = "simple-bus";
197 #size-cells = <1>;
198 #address-cells = <1>;
199 ranges = <0x51000000 0x51000000 0x3000
200 0x0 0x20000000 0x10000000>;
201 pcie@51000000 {
202 compatible = "ti,dra7-pcie";
203 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
204 reg-names = "rc_dbics", "ti_conf", "config";
205 interrupts = <0 232 0x4>, <0 233 0x4>;
206 #address-cells = <3>;
207 #size-cells = <2>;
208 device_type = "pci";
209 ranges = <0x81000000 0 0 0x03000 0 0x00010000
210 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
211 #interrupt-cells = <1>;
212 num-lanes = <1>;
213 ti,hwmods = "pcie1";
214 phys = <&pcie1_phy>;
215 phy-names = "pcie-phy0";
216 interrupt-map-mask = <0 0 0 7>;
217 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
218 <0 0 0 2 &pcie1_intc 2>,
219 <0 0 0 3 &pcie1_intc 3>,
220 <0 0 0 4 &pcie1_intc 4>;
221 pcie1_intc: interrupt-controller {
222 interrupt-controller;
223 #address-cells = <0>;
224 #interrupt-cells = <1>;
225 };
226 };
227 };
228
229 axi@1 {
230 compatible = "simple-bus";
231 #size-cells = <1>;
232 #address-cells = <1>;
233 ranges = <0x51800000 0x51800000 0x3000
234 0x0 0x30000000 0x10000000>;
235 status = "disabled";
236 pcie@51000000 {
237 compatible = "ti,dra7-pcie";
238 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
239 reg-names = "rc_dbics", "ti_conf", "config";
240 interrupts = <0 355 0x4>, <0 356 0x4>;
241 #address-cells = <3>;
242 #size-cells = <2>;
243 device_type = "pci";
244 ranges = <0x81000000 0 0 0x03000 0 0x00010000
245 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
246 #interrupt-cells = <1>;
247 num-lanes = <1>;
248 ti,hwmods = "pcie2";
249 phys = <&pcie2_phy>;
250 phy-names = "pcie-phy0";
251 interrupt-map-mask = <0 0 0 7>;
252 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
253 <0 0 0 2 &pcie2_intc 2>,
254 <0 0 0 3 &pcie2_intc 3>,
255 <0 0 0 4 &pcie2_intc 4>;
256 pcie2_intc: interrupt-controller {
257 interrupt-controller;
258 #address-cells = <0>;
259 #interrupt-cells = <1>;
260 };
261 };
262 };
263
R Sricharan6e58b8f2013-08-14 19:08:20 +0530264 sdma: dma-controller@4a056000 {
265 compatible = "ti,omap4430-sdma";
266 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530267 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
268 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
269 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
270 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530271 #dma-cells = <1>;
272 #dma-channels = <32>;
273 #dma-requests = <127>;
274 };
275
276 gpio1: gpio@4ae10000 {
277 compatible = "ti,omap4-gpio";
278 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530279 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530280 ti,hwmods = "gpio1";
281 gpio-controller;
282 #gpio-cells = <2>;
283 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700284 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530285 };
286
287 gpio2: gpio@48055000 {
288 compatible = "ti,omap4-gpio";
289 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530290 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530291 ti,hwmods = "gpio2";
292 gpio-controller;
293 #gpio-cells = <2>;
294 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700295 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530296 };
297
298 gpio3: gpio@48057000 {
299 compatible = "ti,omap4-gpio";
300 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530301 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530302 ti,hwmods = "gpio3";
303 gpio-controller;
304 #gpio-cells = <2>;
305 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700306 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530307 };
308
309 gpio4: gpio@48059000 {
310 compatible = "ti,omap4-gpio";
311 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530312 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530313 ti,hwmods = "gpio4";
314 gpio-controller;
315 #gpio-cells = <2>;
316 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700317 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530318 };
319
320 gpio5: gpio@4805b000 {
321 compatible = "ti,omap4-gpio";
322 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530323 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530324 ti,hwmods = "gpio5";
325 gpio-controller;
326 #gpio-cells = <2>;
327 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700328 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530329 };
330
331 gpio6: gpio@4805d000 {
332 compatible = "ti,omap4-gpio";
333 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530334 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530335 ti,hwmods = "gpio6";
336 gpio-controller;
337 #gpio-cells = <2>;
338 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700339 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530340 };
341
342 gpio7: gpio@48051000 {
343 compatible = "ti,omap4-gpio";
344 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530345 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530346 ti,hwmods = "gpio7";
347 gpio-controller;
348 #gpio-cells = <2>;
349 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700350 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530351 };
352
353 gpio8: gpio@48053000 {
354 compatible = "ti,omap4-gpio";
355 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530356 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530357 ti,hwmods = "gpio8";
358 gpio-controller;
359 #gpio-cells = <2>;
360 interrupt-controller;
Nishanth Menone49d5192014-08-25 16:15:34 -0700361 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530362 };
363
364 uart1: serial@4806a000 {
365 compatible = "ti,omap4-uart";
366 reg = <0x4806a000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500367 interrupts-extended = <&gic GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530368 ti,hwmods = "uart1";
369 clock-frequency = <48000000>;
370 status = "disabled";
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200371 dmas = <&sdma 49>, <&sdma 50>;
372 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530373 };
374
375 uart2: serial@4806c000 {
376 compatible = "ti,omap4-uart";
377 reg = <0x4806c000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500378 interrupts-extended = <&gic GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530379 ti,hwmods = "uart2";
380 clock-frequency = <48000000>;
381 status = "disabled";
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200382 dmas = <&sdma 51>, <&sdma 52>;
383 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530384 };
385
386 uart3: serial@48020000 {
387 compatible = "ti,omap4-uart";
388 reg = <0x48020000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500389 interrupts-extended = <&gic GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530390 ti,hwmods = "uart3";
391 clock-frequency = <48000000>;
392 status = "disabled";
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200393 dmas = <&sdma 53>, <&sdma 54>;
394 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530395 };
396
397 uart4: serial@4806e000 {
398 compatible = "ti,omap4-uart";
399 reg = <0x4806e000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500400 interrupts-extended = <&gic GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530401 ti,hwmods = "uart4";
402 clock-frequency = <48000000>;
403 status = "disabled";
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200404 dmas = <&sdma 55>, <&sdma 56>;
405 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530406 };
407
408 uart5: serial@48066000 {
409 compatible = "ti,omap4-uart";
410 reg = <0x48066000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500411 interrupts-extended = <&gic GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530412 ti,hwmods = "uart5";
413 clock-frequency = <48000000>;
414 status = "disabled";
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200415 dmas = <&sdma 63>, <&sdma 64>;
416 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530417 };
418
419 uart6: serial@48068000 {
420 compatible = "ti,omap4-uart";
421 reg = <0x48068000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500422 interrupts-extended = <&gic GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530423 ti,hwmods = "uart6";
424 clock-frequency = <48000000>;
425 status = "disabled";
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200426 dmas = <&sdma 79>, <&sdma 80>;
427 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530428 };
429
430 uart7: serial@48420000 {
431 compatible = "ti,omap4-uart";
432 reg = <0x48420000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500433 interrupts-extended = <&gic GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530434 ti,hwmods = "uart7";
435 clock-frequency = <48000000>;
436 status = "disabled";
437 };
438
439 uart8: serial@48422000 {
440 compatible = "ti,omap4-uart";
441 reg = <0x48422000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500442 interrupts-extended = <&gic GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530443 ti,hwmods = "uart8";
444 clock-frequency = <48000000>;
445 status = "disabled";
446 };
447
448 uart9: serial@48424000 {
449 compatible = "ti,omap4-uart";
450 reg = <0x48424000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500451 interrupts-extended = <&gic GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530452 ti,hwmods = "uart9";
453 clock-frequency = <48000000>;
454 status = "disabled";
455 };
456
457 uart10: serial@4ae2b000 {
458 compatible = "ti,omap4-uart";
459 reg = <0x4ae2b000 0x100>;
Nishanth Menone2265ab2014-05-23 00:04:02 -0500460 interrupts-extended = <&gic GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530461 ti,hwmods = "uart10";
462 clock-frequency = <48000000>;
463 status = "disabled";
464 };
465
Suman Anna38baefb2014-07-11 16:44:38 -0500466 mailbox1: mailbox@4a0f4000 {
467 compatible = "ti,omap4-mailbox";
468 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600469 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
470 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
471 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500472 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600473 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500474 ti,mbox-num-users = <3>;
475 ti,mbox-num-fifos = <8>;
476 status = "disabled";
477 };
478
479 mailbox2: mailbox@4883a000 {
480 compatible = "ti,omap4-mailbox";
481 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600482 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
483 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
484 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
485 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500486 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600487 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500488 ti,mbox-num-users = <4>;
489 ti,mbox-num-fifos = <12>;
490 status = "disabled";
491 };
492
493 mailbox3: mailbox@4883c000 {
494 compatible = "ti,omap4-mailbox";
495 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600496 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
497 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
498 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
499 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500500 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600501 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500502 ti,mbox-num-users = <4>;
503 ti,mbox-num-fifos = <12>;
504 status = "disabled";
505 };
506
507 mailbox4: mailbox@4883e000 {
508 compatible = "ti,omap4-mailbox";
509 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600510 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
511 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
512 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
513 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500514 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600515 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500516 ti,mbox-num-users = <4>;
517 ti,mbox-num-fifos = <12>;
518 status = "disabled";
519 };
520
521 mailbox5: mailbox@48840000 {
522 compatible = "ti,omap4-mailbox";
523 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600524 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
525 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
526 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
527 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500528 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600529 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500530 ti,mbox-num-users = <4>;
531 ti,mbox-num-fifos = <12>;
532 status = "disabled";
533 };
534
535 mailbox6: mailbox@48842000 {
536 compatible = "ti,omap4-mailbox";
537 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600538 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
539 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
540 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
541 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500542 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600543 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500544 ti,mbox-num-users = <4>;
545 ti,mbox-num-fifos = <12>;
546 status = "disabled";
547 };
548
549 mailbox7: mailbox@48844000 {
550 compatible = "ti,omap4-mailbox";
551 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600552 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
553 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
554 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
555 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500556 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600557 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500558 ti,mbox-num-users = <4>;
559 ti,mbox-num-fifos = <12>;
560 status = "disabled";
561 };
562
563 mailbox8: mailbox@48846000 {
564 compatible = "ti,omap4-mailbox";
565 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600566 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
567 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
568 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
569 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500570 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600571 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500572 ti,mbox-num-users = <4>;
573 ti,mbox-num-fifos = <12>;
574 status = "disabled";
575 };
576
577 mailbox9: mailbox@4885e000 {
578 compatible = "ti,omap4-mailbox";
579 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600580 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
581 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
582 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
583 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500584 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600585 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500586 ti,mbox-num-users = <4>;
587 ti,mbox-num-fifos = <12>;
588 status = "disabled";
589 };
590
591 mailbox10: mailbox@48860000 {
592 compatible = "ti,omap4-mailbox";
593 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600594 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
595 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
596 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
597 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500598 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600599 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500600 ti,mbox-num-users = <4>;
601 ti,mbox-num-fifos = <12>;
602 status = "disabled";
603 };
604
605 mailbox11: mailbox@48862000 {
606 compatible = "ti,omap4-mailbox";
607 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600608 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
609 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
610 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
611 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500612 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600613 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500614 ti,mbox-num-users = <4>;
615 ti,mbox-num-fifos = <12>;
616 status = "disabled";
617 };
618
619 mailbox12: mailbox@48864000 {
620 compatible = "ti,omap4-mailbox";
621 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600622 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
623 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
624 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
625 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500626 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600627 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500628 ti,mbox-num-users = <4>;
629 ti,mbox-num-fifos = <12>;
630 status = "disabled";
631 };
632
633 mailbox13: mailbox@48802000 {
634 compatible = "ti,omap4-mailbox";
635 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600636 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
637 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
638 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
639 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500640 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600641 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500642 ti,mbox-num-users = <4>;
643 ti,mbox-num-fifos = <12>;
644 status = "disabled";
645 };
646
R Sricharan6e58b8f2013-08-14 19:08:20 +0530647 timer1: timer@4ae18000 {
648 compatible = "ti,omap5430-timer";
649 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530650 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530651 ti,hwmods = "timer1";
652 ti,timer-alwon;
653 };
654
655 timer2: timer@48032000 {
656 compatible = "ti,omap5430-timer";
657 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530658 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530659 ti,hwmods = "timer2";
660 };
661
662 timer3: timer@48034000 {
663 compatible = "ti,omap5430-timer";
664 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530665 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530666 ti,hwmods = "timer3";
667 };
668
669 timer4: timer@48036000 {
670 compatible = "ti,omap5430-timer";
671 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530672 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530673 ti,hwmods = "timer4";
674 };
675
676 timer5: timer@48820000 {
677 compatible = "ti,omap5430-timer";
678 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530679 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530680 ti,hwmods = "timer5";
681 ti,timer-dsp;
682 };
683
684 timer6: timer@48822000 {
685 compatible = "ti,omap5430-timer";
686 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530687 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530688 ti,hwmods = "timer6";
689 ti,timer-dsp;
690 ti,timer-pwm;
691 };
692
693 timer7: timer@48824000 {
694 compatible = "ti,omap5430-timer";
695 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530696 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530697 ti,hwmods = "timer7";
698 ti,timer-dsp;
699 };
700
701 timer8: timer@48826000 {
702 compatible = "ti,omap5430-timer";
703 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530704 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530705 ti,hwmods = "timer8";
706 ti,timer-dsp;
707 ti,timer-pwm;
708 };
709
710 timer9: timer@4803e000 {
711 compatible = "ti,omap5430-timer";
712 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530713 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530714 ti,hwmods = "timer9";
715 };
716
717 timer10: timer@48086000 {
718 compatible = "ti,omap5430-timer";
719 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530720 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530721 ti,hwmods = "timer10";
722 };
723
724 timer11: timer@48088000 {
725 compatible = "ti,omap5430-timer";
726 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530727 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530728 ti,hwmods = "timer11";
729 ti,timer-pwm;
730 };
731
732 timer13: timer@48828000 {
733 compatible = "ti,omap5430-timer";
734 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530735 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530736 ti,hwmods = "timer13";
737 status = "disabled";
738 };
739
740 timer14: timer@4882a000 {
741 compatible = "ti,omap5430-timer";
742 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530743 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530744 ti,hwmods = "timer14";
745 status = "disabled";
746 };
747
748 timer15: timer@4882c000 {
749 compatible = "ti,omap5430-timer";
750 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530751 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530752 ti,hwmods = "timer15";
753 status = "disabled";
754 };
755
756 timer16: timer@4882e000 {
757 compatible = "ti,omap5430-timer";
758 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530759 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530760 ti,hwmods = "timer16";
761 status = "disabled";
762 };
763
764 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +0530765 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530766 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530767 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530768 ti,hwmods = "wd_timer2";
769 };
770
Suman Annadbd7c192014-01-13 18:26:46 -0600771 hwspinlock: spinlock@4a0f6000 {
772 compatible = "ti,omap4-hwspinlock";
773 reg = <0x4a0f6000 0x1000>;
774 ti,hwmods = "spinlock";
775 #hwlock-cells = <1>;
776 };
777
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530778 dmm@4e000000 {
779 compatible = "ti,omap5-dmm";
780 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +0530781 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +0530782 ti,hwmods = "dmm";
783 };
784
R Sricharan6e58b8f2013-08-14 19:08:20 +0530785 i2c1: i2c@48070000 {
786 compatible = "ti,omap4-i2c";
787 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530788 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530789 #address-cells = <1>;
790 #size-cells = <0>;
791 ti,hwmods = "i2c1";
792 status = "disabled";
793 };
794
795 i2c2: i2c@48072000 {
796 compatible = "ti,omap4-i2c";
797 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530798 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530799 #address-cells = <1>;
800 #size-cells = <0>;
801 ti,hwmods = "i2c2";
802 status = "disabled";
803 };
804
805 i2c3: i2c@48060000 {
806 compatible = "ti,omap4-i2c";
807 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530808 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530809 #address-cells = <1>;
810 #size-cells = <0>;
811 ti,hwmods = "i2c3";
812 status = "disabled";
813 };
814
815 i2c4: i2c@4807a000 {
816 compatible = "ti,omap4-i2c";
817 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530818 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530819 #address-cells = <1>;
820 #size-cells = <0>;
821 ti,hwmods = "i2c4";
822 status = "disabled";
823 };
824
825 i2c5: i2c@4807c000 {
826 compatible = "ti,omap4-i2c";
827 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +0530828 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530829 #address-cells = <1>;
830 #size-cells = <0>;
831 ti,hwmods = "i2c5";
832 status = "disabled";
833 };
834
835 mmc1: mmc@4809c000 {
836 compatible = "ti,omap4-hsmmc";
837 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530838 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530839 ti,hwmods = "mmc1";
840 ti,dual-volt;
841 ti,needs-special-reset;
842 dmas = <&sdma 61>, <&sdma 62>;
843 dma-names = "tx", "rx";
844 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +0530845 pbias-supply = <&pbias_mmc_reg>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530846 };
847
848 mmc2: mmc@480b4000 {
849 compatible = "ti,omap4-hsmmc";
850 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530851 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530852 ti,hwmods = "mmc2";
853 ti,needs-special-reset;
854 dmas = <&sdma 47>, <&sdma 48>;
855 dma-names = "tx", "rx";
856 status = "disabled";
857 };
858
859 mmc3: mmc@480ad000 {
860 compatible = "ti,omap4-hsmmc";
861 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530862 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530863 ti,hwmods = "mmc3";
864 ti,needs-special-reset;
865 dmas = <&sdma 77>, <&sdma 78>;
866 dma-names = "tx", "rx";
867 status = "disabled";
868 };
869
870 mmc4: mmc@480d1000 {
871 compatible = "ti,omap4-hsmmc";
872 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +0530873 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530874 ti,hwmods = "mmc4";
875 ti,needs-special-reset;
876 dmas = <&sdma 57>, <&sdma 58>;
877 dma-names = "tx", "rx";
878 status = "disabled";
879 };
880
Nishanth Menona1b8ee12014-03-03 20:20:23 +0530881 abb_mpu: regulator-abb-mpu {
882 compatible = "ti,abb-v3";
883 regulator-name = "abb_mpu";
884 #address-cells = <0>;
885 #size-cells = <0>;
886 clocks = <&sys_clkin1>;
887 ti,settling-time = <50>;
888 ti,clock-cycles = <16>;
889
890 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
891 <0x4ae06014 0x4>, <0x4a003b20 0x8>,
892 <0x4ae0c158 0x4>;
893 reg-names = "setup-address", "control-address",
894 "int-address", "efuse-address",
895 "ldo-address";
896 ti,tranxdone-status-mask = <0x80>;
897 /* LDOVBBMPU_FBB_MUX_CTRL */
898 ti,ldovbb-override-mask = <0x400>;
899 /* LDOVBBMPU_FBB_VSET_OUT */
900 ti,ldovbb-vset-mask = <0x1F>;
901
902 /*
903 * NOTE: only FBB mode used but actual vset will
904 * determine final biasing
905 */
906 ti,abb_info = <
907 /*uV ABB efuse rbb_m fbb_m vset_m*/
908 1060000 0 0x0 0 0x02000000 0x01F00000
909 1160000 0 0x4 0 0x02000000 0x01F00000
910 1210000 0 0x8 0 0x02000000 0x01F00000
911 >;
912 };
913
914 abb_ivahd: regulator-abb-ivahd {
915 compatible = "ti,abb-v3";
916 regulator-name = "abb_ivahd";
917 #address-cells = <0>;
918 #size-cells = <0>;
919 clocks = <&sys_clkin1>;
920 ti,settling-time = <50>;
921 ti,clock-cycles = <16>;
922
923 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
924 <0x4ae06010 0x4>, <0x4a0025cc 0x8>,
925 <0x4a002470 0x4>;
926 reg-names = "setup-address", "control-address",
927 "int-address", "efuse-address",
928 "ldo-address";
929 ti,tranxdone-status-mask = <0x40000000>;
930 /* LDOVBBIVA_FBB_MUX_CTRL */
931 ti,ldovbb-override-mask = <0x400>;
932 /* LDOVBBIVA_FBB_VSET_OUT */
933 ti,ldovbb-vset-mask = <0x1F>;
934
935 /*
936 * NOTE: only FBB mode used but actual vset will
937 * determine final biasing
938 */
939 ti,abb_info = <
940 /*uV ABB efuse rbb_m fbb_m vset_m*/
941 1055000 0 0x0 0 0x02000000 0x01F00000
942 1150000 0 0x4 0 0x02000000 0x01F00000
943 1250000 0 0x8 0 0x02000000 0x01F00000
944 >;
945 };
946
947 abb_dspeve: regulator-abb-dspeve {
948 compatible = "ti,abb-v3";
949 regulator-name = "abb_dspeve";
950 #address-cells = <0>;
951 #size-cells = <0>;
952 clocks = <&sys_clkin1>;
953 ti,settling-time = <50>;
954 ti,clock-cycles = <16>;
955
956 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
957 <0x4ae06010 0x4>, <0x4a0025e0 0x8>,
958 <0x4a00246c 0x4>;
959 reg-names = "setup-address", "control-address",
960 "int-address", "efuse-address",
961 "ldo-address";
962 ti,tranxdone-status-mask = <0x20000000>;
963 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
964 ti,ldovbb-override-mask = <0x400>;
965 /* LDOVBBDSPEVE_FBB_VSET_OUT */
966 ti,ldovbb-vset-mask = <0x1F>;
967
968 /*
969 * NOTE: only FBB mode used but actual vset will
970 * determine final biasing
971 */
972 ti,abb_info = <
973 /*uV ABB efuse rbb_m fbb_m vset_m*/
974 1055000 0 0x0 0 0x02000000 0x01F00000
975 1150000 0 0x4 0 0x02000000 0x01F00000
976 1250000 0 0x8 0 0x02000000 0x01F00000
977 >;
978 };
979
980 abb_gpu: regulator-abb-gpu {
981 compatible = "ti,abb-v3";
982 regulator-name = "abb_gpu";
983 #address-cells = <0>;
984 #size-cells = <0>;
985 clocks = <&sys_clkin1>;
986 ti,settling-time = <50>;
987 ti,clock-cycles = <16>;
988
989 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
990 <0x4ae06010 0x4>, <0x4a003b08 0x8>,
991 <0x4ae0c154 0x4>;
992 reg-names = "setup-address", "control-address",
993 "int-address", "efuse-address",
994 "ldo-address";
995 ti,tranxdone-status-mask = <0x10000000>;
996 /* LDOVBBGPU_FBB_MUX_CTRL */
997 ti,ldovbb-override-mask = <0x400>;
998 /* LDOVBBGPU_FBB_VSET_OUT */
999 ti,ldovbb-vset-mask = <0x1F>;
1000
1001 /*
1002 * NOTE: only FBB mode used but actual vset will
1003 * determine final biasing
1004 */
1005 ti,abb_info = <
1006 /*uV ABB efuse rbb_m fbb_m vset_m*/
1007 1090000 0 0x0 0 0x02000000 0x01F00000
1008 1210000 0 0x4 0 0x02000000 0x01F00000
1009 1280000 0 0x8 0 0x02000000 0x01F00000
1010 >;
1011 };
1012
R Sricharan6e58b8f2013-08-14 19:08:20 +05301013 mcspi1: spi@48098000 {
1014 compatible = "ti,omap4-mcspi";
1015 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301016 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301017 #address-cells = <1>;
1018 #size-cells = <0>;
1019 ti,hwmods = "mcspi1";
1020 ti,spi-num-cs = <4>;
1021 dmas = <&sdma 35>,
1022 <&sdma 36>,
1023 <&sdma 37>,
1024 <&sdma 38>,
1025 <&sdma 39>,
1026 <&sdma 40>,
1027 <&sdma 41>,
1028 <&sdma 42>;
1029 dma-names = "tx0", "rx0", "tx1", "rx1",
1030 "tx2", "rx2", "tx3", "rx3";
1031 status = "disabled";
1032 };
1033
1034 mcspi2: spi@4809a000 {
1035 compatible = "ti,omap4-mcspi";
1036 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301037 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301038 #address-cells = <1>;
1039 #size-cells = <0>;
1040 ti,hwmods = "mcspi2";
1041 ti,spi-num-cs = <2>;
1042 dmas = <&sdma 43>,
1043 <&sdma 44>,
1044 <&sdma 45>,
1045 <&sdma 46>;
1046 dma-names = "tx0", "rx0", "tx1", "rx1";
1047 status = "disabled";
1048 };
1049
1050 mcspi3: spi@480b8000 {
1051 compatible = "ti,omap4-mcspi";
1052 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301053 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301054 #address-cells = <1>;
1055 #size-cells = <0>;
1056 ti,hwmods = "mcspi3";
1057 ti,spi-num-cs = <2>;
1058 dmas = <&sdma 15>, <&sdma 16>;
1059 dma-names = "tx0", "rx0";
1060 status = "disabled";
1061 };
1062
1063 mcspi4: spi@480ba000 {
1064 compatible = "ti,omap4-mcspi";
1065 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301066 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301067 #address-cells = <1>;
1068 #size-cells = <0>;
1069 ti,hwmods = "mcspi4";
1070 ti,spi-num-cs = <1>;
1071 dmas = <&sdma 70>, <&sdma 71>;
1072 dma-names = "tx0", "rx0";
1073 status = "disabled";
1074 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301075
1076 qspi: qspi@4b300000 {
1077 compatible = "ti,dra7xxx-qspi";
1078 reg = <0x4b300000 0x100>;
1079 reg-names = "qspi_base";
1080 #address-cells = <1>;
1081 #size-cells = <0>;
1082 ti,hwmods = "qspi";
1083 clocks = <&qspi_gfclk_div>;
1084 clock-names = "fck";
1085 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301086 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301087 status = "disabled";
1088 };
Balaji T K7be80562014-05-07 14:58:58 +03001089
1090 omap_control_sata: control-phy@4a002374 {
1091 compatible = "ti,control-phy-pipe3";
1092 reg = <0x4a002374 0x4>;
1093 reg-names = "power";
1094 clocks = <&sys_clkin1>;
1095 clock-names = "sysclk";
1096 };
1097
1098 /* OCP2SCP3 */
1099 ocp2scp@4a090000 {
1100 compatible = "ti,omap-ocp2scp";
1101 #address-cells = <1>;
1102 #size-cells = <1>;
1103 ranges;
1104 reg = <0x4a090000 0x20>;
1105 ti,hwmods = "ocp2scp3";
1106 sata_phy: phy@4A096000 {
1107 compatible = "ti,phy-pipe3-sata";
1108 reg = <0x4A096000 0x80>, /* phy_rx */
1109 <0x4A096400 0x64>, /* phy_tx */
1110 <0x4A096800 0x40>; /* pll_ctrl */
1111 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1112 ctrl-module = <&omap_control_sata>;
1113 clocks = <&sys_clkin1>;
1114 clock-names = "sysclk";
1115 #phy-cells = <0>;
1116 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301117
1118 pcie1_phy: pciephy@4a094000 {
1119 compatible = "ti,phy-pipe3-pcie";
1120 reg = <0x4a094000 0x80>, /* phy_rx */
1121 <0x4a094400 0x64>; /* phy_tx */
1122 reg-names = "phy_rx", "phy_tx";
1123 ctrl-module = <&omap_control_pcie1phy>;
1124 clocks = <&dpll_pcie_ref_ck>,
1125 <&dpll_pcie_ref_m2ldo_ck>,
1126 <&optfclk_pciephy1_32khz>,
1127 <&optfclk_pciephy1_clk>,
1128 <&optfclk_pciephy1_div_clk>,
1129 <&optfclk_pciephy_div>;
1130 clock-names = "dpll_ref", "dpll_ref_m2",
1131 "wkupclk", "refclk",
1132 "div-clk", "phy-div";
1133 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301134 ti,hwmods = "pcie1-phy";
1135 };
1136
1137 pcie2_phy: pciephy@4a095000 {
1138 compatible = "ti,phy-pipe3-pcie";
1139 reg = <0x4a095000 0x80>, /* phy_rx */
1140 <0x4a095400 0x64>; /* phy_tx */
1141 reg-names = "phy_rx", "phy_tx";
1142 ctrl-module = <&omap_control_pcie2phy>;
1143 clocks = <&dpll_pcie_ref_ck>,
1144 <&dpll_pcie_ref_m2ldo_ck>,
1145 <&optfclk_pciephy2_32khz>,
1146 <&optfclk_pciephy2_clk>,
1147 <&optfclk_pciephy2_div_clk>,
1148 <&optfclk_pciephy_div>;
1149 clock-names = "dpll_ref", "dpll_ref_m2",
1150 "wkupclk", "refclk",
1151 "div-clk", "phy-div";
1152 #phy-cells = <0>;
1153 ti,hwmods = "pcie2-phy";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301154 status = "disabled";
1155 };
Balaji T K7be80562014-05-07 14:58:58 +03001156 };
1157
1158 sata: sata@4a141100 {
1159 compatible = "snps,dwc-ahci";
1160 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301161 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001162 phys = <&sata_phy>;
1163 phy-names = "sata-phy";
1164 clocks = <&sata_ref_clk>;
1165 ti,hwmods = "sata";
1166 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001167
Kishon Vijay Abraham Id1ff66b2014-07-14 16:12:21 +05301168 omap_control_pcie1phy: control-phy@0x4a003c40 {
1169 compatible = "ti,control-phy-pcie";
1170 reg = <0x4a003c40 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1171 reg-names = "power", "control_sma", "pcie_pcs";
1172 clocks = <&sys_clkin1>;
1173 clock-names = "sysclk";
1174 };
1175
1176 omap_control_pcie2phy: control-pcie@0x4a003c44 {
1177 compatible = "ti,control-phy-pcie";
1178 reg = <0x4a003c44 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>;
1179 reg-names = "power", "control_sma", "pcie_pcs";
1180 clocks = <&sys_clkin1>;
1181 clock-names = "sysclk";
1182 status = "disabled";
1183 };
1184
Lokesh Vutlabc078312014-11-19 17:53:08 +05301185 rtc@48838000 {
1186 compatible = "ti,am3352-rtc";
1187 reg = <0x48838000 0x100>;
1188 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1189 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1190 ti,hwmods = "rtcss";
1191 clocks = <&sys_32k_ck>;
1192 };
1193
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001194 omap_control_usb2phy1: control-phy@4a002300 {
1195 compatible = "ti,control-phy-usb2";
1196 reg = <0x4a002300 0x4>;
1197 reg-names = "power";
1198 };
1199
1200 omap_control_usb3phy1: control-phy@4a002370 {
1201 compatible = "ti,control-phy-pipe3";
1202 reg = <0x4a002370 0x4>;
1203 reg-names = "power";
1204 };
1205
1206 omap_control_usb2phy2: control-phy@0x4a002e74 {
1207 compatible = "ti,control-phy-usb2-dra7";
1208 reg = <0x4a002e74 0x4>;
1209 reg-names = "power";
1210 };
1211
1212 /* OCP2SCP1 */
1213 ocp2scp@4a080000 {
1214 compatible = "ti,omap-ocp2scp";
1215 #address-cells = <1>;
1216 #size-cells = <1>;
1217 ranges;
1218 reg = <0x4a080000 0x20>;
1219 ti,hwmods = "ocp2scp1";
1220
1221 usb2_phy1: phy@4a084000 {
1222 compatible = "ti,omap-usb2";
1223 reg = <0x4a084000 0x400>;
1224 ctrl-module = <&omap_control_usb2phy1>;
1225 clocks = <&usb_phy1_always_on_clk32k>,
1226 <&usb_otg_ss1_refclk960m>;
1227 clock-names = "wkupclk",
1228 "refclk";
1229 #phy-cells = <0>;
1230 };
1231
1232 usb2_phy2: phy@4a085000 {
1233 compatible = "ti,omap-usb2";
1234 reg = <0x4a085000 0x400>;
1235 ctrl-module = <&omap_control_usb2phy2>;
1236 clocks = <&usb_phy2_always_on_clk32k>,
1237 <&usb_otg_ss2_refclk960m>;
1238 clock-names = "wkupclk",
1239 "refclk";
1240 #phy-cells = <0>;
1241 };
1242
1243 usb3_phy1: phy@4a084400 {
1244 compatible = "ti,omap-usb3";
1245 reg = <0x4a084400 0x80>,
1246 <0x4a084800 0x64>,
1247 <0x4a084c00 0x40>;
1248 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
1249 ctrl-module = <&omap_control_usb3phy1>;
1250 clocks = <&usb_phy3_always_on_clk32k>,
1251 <&sys_clkin1>,
1252 <&usb_otg_ss1_refclk960m>;
1253 clock-names = "wkupclk",
1254 "sysclk",
1255 "refclk";
1256 #phy-cells = <0>;
1257 };
1258 };
1259
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001260 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001261 compatible = "ti,dwc3";
1262 ti,hwmods = "usb_otg_ss1";
1263 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301264 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001265 #address-cells = <1>;
1266 #size-cells = <1>;
1267 utmi-mode = <2>;
1268 ranges;
1269 usb1: usb@48890000 {
1270 compatible = "snps,dwc3";
1271 reg = <0x48890000 0x17000>;
R Sricharana46631c2014-06-26 12:55:31 +05301272 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001273 phys = <&usb2_phy1>, <&usb3_phy1>;
1274 phy-names = "usb2-phy", "usb3-phy";
1275 tx-fifo-resize;
1276 maximum-speed = "super-speed";
1277 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001278 snps,dis_u3_susphy_quirk;
1279 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001280 };
1281 };
1282
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001283 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001284 compatible = "ti,dwc3";
1285 ti,hwmods = "usb_otg_ss2";
1286 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301287 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001288 #address-cells = <1>;
1289 #size-cells = <1>;
1290 utmi-mode = <2>;
1291 ranges;
1292 usb2: usb@488d0000 {
1293 compatible = "snps,dwc3";
1294 reg = <0x488d0000 0x17000>;
R Sricharana46631c2014-06-26 12:55:31 +05301295 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001296 phys = <&usb2_phy2>;
1297 phy-names = "usb2-phy";
1298 tx-fifo-resize;
1299 maximum-speed = "high-speed";
1300 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001301 snps,dis_u3_susphy_quirk;
1302 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001303 };
1304 };
1305
1306 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001307 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001308 compatible = "ti,dwc3";
1309 ti,hwmods = "usb_otg_ss3";
1310 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301311 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001312 #address-cells = <1>;
1313 #size-cells = <1>;
1314 utmi-mode = <2>;
1315 ranges;
1316 status = "disabled";
1317 usb3: usb@48910000 {
1318 compatible = "snps,dwc3";
1319 reg = <0x48910000 0x17000>;
R Sricharana46631c2014-06-26 12:55:31 +05301320 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001321 tx-fifo-resize;
1322 maximum-speed = "high-speed";
1323 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001324 snps,dis_u3_susphy_quirk;
1325 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001326 };
1327 };
1328
Minal Shahff66a3c2014-05-19 14:45:47 +05301329 elm: elm@48078000 {
1330 compatible = "ti,am3352-elm";
1331 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301332 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301333 ti,hwmods = "elm";
1334 status = "disabled";
1335 };
1336
1337 gpmc: gpmc@50000000 {
1338 compatible = "ti,am3352-gpmc";
1339 ti,hwmods = "gpmc";
1340 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301341 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301342 gpmc,num-cs = <8>;
1343 gpmc,num-waitpins = <2>;
1344 #address-cells = <2>;
1345 #size-cells = <1>;
1346 status = "disabled";
1347 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001348
1349 atl: atl@4843c000 {
1350 compatible = "ti,dra7-atl";
1351 reg = <0x4843c000 0x3ff>;
1352 ti,hwmods = "atl";
1353 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1354 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
1355 clocks = <&atl_gfclk_mux>;
1356 clock-names = "fck";
1357 status = "disabled";
1358 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001359
R Sricharana46631c2014-06-26 12:55:31 +05301360 crossbar_mpu: crossbar@4a020000 {
1361 compatible = "ti,irq-crossbar";
1362 reg = <0x4a002a48 0x130>;
1363 ti,max-irqs = <160>;
1364 ti,max-crossbar-sources = <MAX_SOURCES>;
1365 ti,reg-size = <2>;
1366 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1367 ti,irqs-skip = <10 133 139 140>;
1368 ti,irqs-safe-map = <0>;
1369 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301370
1371 mac: ethernet@4a100000 {
1372 compatible = "ti,cpsw";
1373 ti,hwmods = "gmac";
1374 clocks = <&dpll_gmac_ck>, <&gmac_gmii_ref_clk_div>;
1375 clock-names = "fck", "cpts";
1376 cpdma_channels = <8>;
1377 ale_entries = <1024>;
1378 bd_ram_size = <0x2000>;
1379 no_bd_ram = <0>;
1380 rx_descs = <64>;
1381 mac_control = <0x20>;
1382 slaves = <2>;
1383 active_slave = <0>;
1384 cpts_clock_mult = <0x80000000>;
1385 cpts_clock_shift = <29>;
1386 reg = <0x48484000 0x1000
1387 0x48485200 0x2E00>;
1388 #address-cells = <1>;
1389 #size-cells = <1>;
1390 /*
1391 * rx_thresh_pend
1392 * rx_pend
1393 * tx_pend
1394 * misc_pend
1395 */
1396 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1397 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1398 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1399 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1400 ranges;
1401 status = "disabled";
1402
1403 davinci_mdio: mdio@48485000 {
1404 compatible = "ti,davinci_mdio";
1405 #address-cells = <1>;
1406 #size-cells = <0>;
1407 ti,hwmods = "davinci_mdio";
1408 bus_freq = <1000000>;
1409 reg = <0x48485000 0x100>;
1410 };
1411
1412 cpsw_emac0: slave@48480200 {
1413 /* Filled in by U-Boot */
1414 mac-address = [ 00 00 00 00 00 00 ];
1415 };
1416
1417 cpsw_emac1: slave@48480300 {
1418 /* Filled in by U-Boot */
1419 mac-address = [ 00 00 00 00 00 00 ];
1420 };
1421
1422 phy_sel: cpsw-phy-sel@4a002554 {
1423 compatible = "ti,dra7xx-cpsw-phy-sel";
1424 reg= <0x4a002554 0x4>;
1425 reg-names = "gmii-sel";
1426 };
1427 };
1428
Roger Quadros9ec49b92014-08-15 16:08:36 +03001429 dcan1: can@481cc000 {
1430 compatible = "ti,dra7-d_can";
1431 ti,hwmods = "dcan1";
1432 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001433 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001434 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
1435 clocks = <&dcan1_sys_clk_mux>;
1436 status = "disabled";
1437 };
1438
1439 dcan2: can@481d0000 {
1440 compatible = "ti,dra7-d_can";
1441 ti,hwmods = "dcan2";
1442 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001443 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001444 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1445 clocks = <&sys_clkin1>;
1446 status = "disabled";
1447 };
R Sricharan6e58b8f2013-08-14 19:08:20 +05301448 };
1449};
Tero Kristoee6c7502013-07-18 17:18:33 +03001450
1451/include/ "dra7xx-clocks.dtsi"