blob: f4ddd86f2c774a452cb4d711c434fa0f283310d6 [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
Tony Lindgrene14d7e52018-01-11 16:04:03 -080010#include <dt-bindings/bus/ti-sysc.h>
11#include <dt-bindings/clock/dra7.h>
R Sricharan6e58b8f2013-08-14 19:08:20 +053012#include <dt-bindings/interrupt-controller/arm-gic.h>
13#include <dt-bindings/pinctrl/dra.h>
Tero Kristo18395332017-12-08 17:17:29 +020014#include <dt-bindings/clock/dra7.h>
R Sricharan6e58b8f2013-08-14 19:08:20 +053015
R Sricharana46631c2014-06-26 12:55:31 +053016#define MAX_SOURCES 400
R Sricharana46631c2014-06-26 12:55:31 +053017
R Sricharan6e58b8f2013-08-14 19:08:20 +053018/ {
Lokesh Vutladae320e2016-02-24 15:41:04 +053019 #address-cells = <2>;
20 #size-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053021
22 compatible = "ti,dra7xx";
Marc Zyngier783d3182015-03-11 15:43:44 +000023 interrupt-parent = <&crossbar_mpu>;
Javier Martinez Canillas7f6c8572016-12-19 11:44:41 -030024 chosen { };
R Sricharan6e58b8f2013-08-14 19:08:20 +053025
26 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050027 i2c0 = &i2c1;
28 i2c1 = &i2c2;
29 i2c2 = &i2c3;
30 i2c3 = &i2c4;
31 i2c4 = &i2c5;
R Sricharan6e58b8f2013-08-14 19:08:20 +053032 serial0 = &uart1;
33 serial1 = &uart2;
34 serial2 = &uart3;
35 serial3 = &uart4;
36 serial4 = &uart5;
37 serial5 = &uart6;
Nishanth Menon065bd7f2014-10-21 11:18:15 -050038 serial6 = &uart7;
39 serial7 = &uart8;
40 serial8 = &uart9;
41 serial9 = &uart10;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +053042 ethernet0 = &cpsw_emac0;
43 ethernet1 = &cpsw_emac1;
Roger Quadros9ec49b92014-08-15 16:08:36 +030044 d_can0 = &dcan1;
45 d_can1 = &dcan2;
Mugunthan V N480b2b32015-11-19 12:31:01 +053046 spi0 = &qspi;
R Sricharan6e58b8f2013-08-14 19:08:20 +053047 };
48
R Sricharan6e58b8f2013-08-14 19:08:20 +053049 timer {
50 compatible = "arm,armv7-timer";
51 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
52 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
53 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
54 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000055 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053056 };
57
58 gic: interrupt-controller@48211000 {
59 compatible = "arm,cortex-a15-gic";
60 interrupt-controller;
61 #interrupt-cells = <3>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053062 reg = <0x0 0x48211000 0x0 0x1000>,
Marc Zyngier387720c2017-01-18 09:27:28 +000063 <0x0 0x48212000 0x0 0x2000>,
Lokesh Vutladae320e2016-02-24 15:41:04 +053064 <0x0 0x48214000 0x0 0x2000>,
65 <0x0 0x48216000 0x0 0x2000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053066 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>;
Marc Zyngier783d3182015-03-11 15:43:44 +000067 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053068 };
69
Marc Zyngier7136d452015-03-11 15:43:49 +000070 wakeupgen: interrupt-controller@48281000 {
71 compatible = "ti,omap5-wugen-mpu", "ti,omap4-wugen-mpu";
72 interrupt-controller;
73 #interrupt-cells = <3>;
Lokesh Vutladae320e2016-02-24 15:41:04 +053074 reg = <0x0 0x48281000 0x0 0x1000>;
Marc Zyngier7136d452015-03-11 15:43:49 +000075 interrupt-parent = <&gic>;
R Sricharan6e58b8f2013-08-14 19:08:20 +053076 };
77
Dave Gerlachb82ffb32016-05-18 18:36:32 -050078 cpus {
79 #address-cells = <1>;
80 #size-cells = <0>;
81
82 cpu0: cpu@0 {
83 device_type = "cpu";
84 compatible = "arm,cortex-a15";
85 reg = <0>;
86
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -060087 operating-points-v2 = <&cpu0_opp_table>;
Dave Gerlachb82ffb32016-05-18 18:36:32 -050088
89 clocks = <&dpll_mpu_ck>;
90 clock-names = "cpu";
91
92 clock-latency = <300000>; /* From omap-cpufreq driver */
93
94 /* cooling options */
Dave Gerlachb82ffb32016-05-18 18:36:32 -050095 #cooling-cells = <2>; /* min followed by max */
Dave Gerlach000fb7a2017-12-19 09:24:19 -060096
97 vbb-supply = <&abb_mpu>;
Dave Gerlachb82ffb32016-05-18 18:36:32 -050098 };
99 };
100
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -0600101 cpu0_opp_table: opp-table {
102 compatible = "operating-points-v2-ti-cpu";
103 syscon = <&scm_wkup>;
104
Viresh Kumarb9cb2ba2017-04-20 16:25:06 +0530105 opp_nom-1000000000 {
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -0600106 opp-hz = /bits/ 64 <1000000000>;
Dave Gerlach000fb7a2017-12-19 09:24:19 -0600107 opp-microvolt = <1060000 850000 1150000>,
108 <1060000 850000 1150000>;
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -0600109 opp-supported-hw = <0xFF 0x01>;
110 opp-suspend;
111 };
112
Viresh Kumarb9cb2ba2017-04-20 16:25:06 +0530113 opp_od-1176000000 {
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -0600114 opp-hz = /bits/ 64 <1176000000>;
Dave Gerlach000fb7a2017-12-19 09:24:19 -0600115 opp-microvolt = <1160000 885000 1160000>,
116 <1160000 885000 1160000>;
117
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -0600118 opp-supported-hw = <0xFF 0x02>;
119 };
Dave Gerlachbc69fed2017-12-19 09:24:21 -0600120
121 opp_high@1500000000 {
122 opp-hz = /bits/ 64 <1500000000>;
123 opp-microvolt = <1210000 950000 1250000>,
124 <1210000 950000 1250000>;
125 opp-supported-hw = <0xFF 0x04>;
126 };
Dave Gerlacha4e5e9f2017-03-06 09:23:41 -0600127 };
128
R Sricharan6e58b8f2013-08-14 19:08:20 +0530129 /*
Geert Uytterhoeven5c5be9d2014-03-28 11:11:37 +0100130 * The soc node represents the soc top level view. It is used for IPs
R Sricharan6e58b8f2013-08-14 19:08:20 +0530131 * that are not memory mapped in the MPU view or for the MPU itself.
132 */
133 soc {
134 compatible = "ti,omap-infra";
135 mpu {
136 compatible = "ti,omap5-mpu";
137 ti,hwmods = "mpu";
138 };
139 };
140
141 /*
142 * XXX: Use a flat representation of the SOC interconnect.
143 * The real OMAP interconnect network is quite complex.
Geert Uytterhoevenb7ab5242014-03-28 11:11:39 +0100144 * Since it will not bring real advantage to represent that in DT for
R Sricharan6e58b8f2013-08-14 19:08:20 +0530145 * the moment, just use a fake OCP bus entry to represent the whole bus
146 * hierarchy.
147 */
148 ocp {
Rajendra Nayakfba387a2014-04-10 11:34:32 -0500149 compatible = "ti,dra7-l3-noc", "simple-bus";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530150 #address-cells = <1>;
151 #size-cells = <1>;
Lokesh Vutladae320e2016-02-24 15:41:04 +0530152 ranges = <0x0 0x0 0x0 0xc0000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530153 ti,hwmods = "l3_main_1", "l3_main_2";
Lokesh Vutladae320e2016-02-24 15:41:04 +0530154 reg = <0x0 0x44000000 0x0 0x1000000>,
155 <0x0 0x45000000 0x0 0x1000>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000156 interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>,
Marc Zyngier7136d452015-03-11 15:43:49 +0000157 <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530158
Tero Kristod9195012015-02-12 11:37:13 +0200159 l4_cfg: l4@4a000000 {
160 compatible = "ti,dra7-l4-cfg", "simple-bus";
161 #address-cells = <1>;
162 #size-cells = <1>;
163 ranges = <0 0x4a000000 0x22c000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300164
Tero Kristod9195012015-02-12 11:37:13 +0200165 scm: scm@2000 {
166 compatible = "ti,dra7-scm-core", "simple-bus";
167 reg = <0x2000 0x2000>;
Tero Kristoee6c7502013-07-18 17:18:33 +0300168 #address-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200169 #size-cells = <1>;
170 ranges = <0 0x2000 0x2000>;
171
172 scm_conf: scm_conf@0 {
Kishon Vijay Abraham Icd455672015-07-27 17:46:41 +0530173 compatible = "syscon", "simple-bus";
Tero Kristod9195012015-02-12 11:37:13 +0200174 reg = <0x0 0x1400>;
175 #address-cells = <1>;
176 #size-cells = <1>;
Kishon Vijay Abraham I9a5e3f22015-09-04 17:38:24 +0530177 ranges = <0 0x0 0x1400>;
Tero Kristod9195012015-02-12 11:37:13 +0200178
Javier Martinez Canillas308cfda2016-04-01 16:20:18 -0400179 pbias_regulator: pbias_regulator@e00 {
Kishon Vijay Abraham I737f1462015-09-04 17:30:25 +0530180 compatible = "ti,pbias-dra7", "ti,pbias-omap";
Tero Kristod9195012015-02-12 11:37:13 +0200181 reg = <0xe00 0x4>;
182 syscon = <&scm_conf>;
183 pbias_mmc_reg: pbias_mmc_omap5 {
184 regulator-name = "pbias_mmc_omap5";
185 regulator-min-microvolt = <1800000>;
Ravikumar Kattekolafa40d422017-10-09 11:23:11 +0530186 regulator-max-microvolt = <3300000>;
Tero Kristod9195012015-02-12 11:37:13 +0200187 };
188 };
Tomi Valkeinen2d5a3c82015-02-23 12:53:56 +0200189
190 scm_conf_clocks: clocks {
191 #address-cells = <1>;
192 #size-cells = <0>;
193 };
Tero Kristod9195012015-02-12 11:37:13 +0200194 };
195
196 dra7_pmx_core: pinmux@1400 {
197 compatible = "ti,dra7-padconf",
198 "pinctrl-single";
Roger Quadros1c5cb6f2015-07-27 13:27:29 +0300199 reg = <0x1400 0x0468>;
Tero Kristod9195012015-02-12 11:37:13 +0200200 #address-cells = <1>;
201 #size-cells = <0>;
Tony Lindgrenbe76fd32016-11-07 08:27:49 -0700202 #pinctrl-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200203 #interrupt-cells = <1>;
204 interrupt-controller;
205 pinctrl-single,register-width = <32>;
206 pinctrl-single,function-mask = <0x3fffffff>;
207 };
Roger Quadros33cb3a12015-08-04 12:10:14 +0300208
209 scm_conf1: scm_conf@1c04 {
210 compatible = "syscon";
211 reg = <0x1c04 0x0020>;
Kishon Vijay Abraham Id23f3832017-08-08 11:10:24 +0530212 #syscon-cells = <2>;
Roger Quadros33cb3a12015-08-04 12:10:14 +0300213 };
Kishon Vijay Abraham I43acf162015-12-21 14:43:18 +0530214
215 scm_conf_pcie: scm_conf@1c24 {
216 compatible = "syscon";
217 reg = <0x1c24 0x0024>;
218 };
Peter Ujfalusi3d2a58b2016-03-07 17:17:28 +0200219
220 sdma_xbar: dma-router@b78 {
221 compatible = "ti,dra7-dma-crossbar";
222 reg = <0xb78 0xfc>;
223 #dma-cells = <1>;
224 dma-requests = <205>;
225 ti,dma-safe-map = <0>;
226 dma-masters = <&sdma>;
227 };
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200228
229 edma_xbar: dma-router@c78 {
230 compatible = "ti,dra7-dma-crossbar";
231 reg = <0xc78 0x7c>;
232 #dma-cells = <2>;
233 dma-requests = <204>;
234 ti,dma-safe-map = <0>;
235 dma-masters = <&edma>;
236 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300237 };
238
Tero Kristod9195012015-02-12 11:37:13 +0200239 cm_core_aon: cm_core_aon@5000 {
Tero Kristoaa29e3a2017-12-07 10:46:43 +0200240 compatible = "ti,dra7-cm-core-aon",
241 "simple-bus";
242 #address-cells = <1>;
243 #size-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200244 reg = <0x5000 0x2000>;
Tero Kristoaa29e3a2017-12-07 10:46:43 +0200245 ranges = <0 0x5000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +0200246
247 cm_core_aon_clocks: clocks {
248 #address-cells = <1>;
249 #size-cells = <0>;
250 };
251
252 cm_core_aon_clockdomains: clockdomains {
253 };
254 };
255
256 cm_core: cm_core@8000 {
Tero Kristoaa29e3a2017-12-07 10:46:43 +0200257 compatible = "ti,dra7-cm-core", "simple-bus";
258 #address-cells = <1>;
259 #size-cells = <1>;
Tero Kristod9195012015-02-12 11:37:13 +0200260 reg = <0x8000 0x3000>;
Tero Kristoaa29e3a2017-12-07 10:46:43 +0200261 ranges = <0 0x8000 0x3000>;
Tero Kristod9195012015-02-12 11:37:13 +0200262
263 cm_core_clocks: clocks {
264 #address-cells = <1>;
265 #size-cells = <0>;
266 };
267
268 cm_core_clockdomains: clockdomains {
269 };
270 };
271 };
272
273 l4_wkup: l4@4ae00000 {
274 compatible = "ti,dra7-l4-wkup", "simple-bus";
275 #address-cells = <1>;
276 #size-cells = <1>;
277 ranges = <0 0x4ae00000 0x3f000>;
278
279 counter32k: counter@4000 {
280 compatible = "ti,omap-counter32k";
281 reg = <0x4000 0x40>;
282 ti,hwmods = "counter_32k";
283 };
284
285 prm: prm@6000 {
Tero Kristoaa29e3a2017-12-07 10:46:43 +0200286 compatible = "ti,dra7-prm", "simple-bus";
Tero Kristod9195012015-02-12 11:37:13 +0200287 reg = <0x6000 0x3000>;
288 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
Tero Kristoaa29e3a2017-12-07 10:46:43 +0200289 #address-cells = <1>;
290 #size-cells = <1>;
291 ranges = <0 0x6000 0x3000>;
Tero Kristod9195012015-02-12 11:37:13 +0200292
293 prm_clocks: clocks {
294 #address-cells = <1>;
295 #size-cells = <0>;
296 };
297
298 prm_clockdomains: clockdomains {
299 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300300 };
Dave Gerlach62e4fee2016-05-18 18:36:31 -0500301
302 scm_wkup: scm_conf@c000 {
303 compatible = "syscon";
304 reg = <0xc000 0x1000>;
305 };
Tero Kristoee6c7502013-07-18 17:18:33 +0300306 };
307
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530308 axi@0 {
309 compatible = "simple-bus";
310 #size-cells = <1>;
311 #address-cells = <1>;
312 ranges = <0x51000000 0x51000000 0x3000
313 0x0 0x20000000 0x10000000>;
Kishon Vijay Abraham Id23f3832017-08-08 11:10:24 +0530314 /**
315 * To enable PCI endpoint mode, disable the pcie1_rc
316 * node and enable pcie1_ep mode.
317 */
318 pcie1_rc: pcie@51000000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530319 reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>;
320 reg-names = "rc_dbics", "ti_conf", "config";
321 interrupts = <0 232 0x4>, <0 233 0x4>;
322 #address-cells = <3>;
323 #size-cells = <2>;
324 device_type = "pci";
325 ranges = <0x81000000 0 0 0x03000 0 0x00010000
326 0x82000000 0 0x20013000 0x13000 0 0xffed000>;
Rob Herring7d79f602017-03-21 21:03:01 -0500327 bus-range = <0x00 0xff>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530328 #interrupt-cells = <1>;
329 num-lanes = <1>;
Kishon Vijay Abraham Ibed596d2016-08-10 18:03:18 +0530330 linux,pci-domain = <0>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530331 ti,hwmods = "pcie1";
332 phys = <&pcie1_phy>;
333 phy-names = "pcie-phy0";
334 interrupt-map-mask = <0 0 0 7>;
335 interrupt-map = <0 0 0 1 &pcie1_intc 1>,
336 <0 0 0 2 &pcie1_intc 2>,
337 <0 0 0 3 &pcie1_intc 3>,
338 <0 0 0 4 &pcie1_intc 4>;
Kishon Vijay Abraham Id23f3832017-08-08 11:10:24 +0530339 status = "disabled";
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530340 pcie1_intc: interrupt-controller {
341 interrupt-controller;
342 #address-cells = <0>;
343 #interrupt-cells = <1>;
344 };
345 };
Kishon Vijay Abraham Id23f3832017-08-08 11:10:24 +0530346
347 pcie1_ep: pcie_ep@51000000 {
Kishon Vijay Abraham Id23f3832017-08-08 11:10:24 +0530348 reg = <0x51000000 0x28>, <0x51002000 0x14c>, <0x51001000 0x28>, <0x1000 0x10000000>;
349 reg-names = "ep_dbics", "ti_conf", "ep_dbics2", "addr_space";
350 interrupts = <0 232 0x4>;
351 num-lanes = <1>;
352 num-ib-windows = <4>;
353 num-ob-windows = <16>;
354 ti,hwmods = "pcie1";
355 phys = <&pcie1_phy>;
356 phy-names = "pcie-phy0";
357 ti,syscon-unaligned-access = <&scm_conf1 0x14 2>;
358 status = "disabled";
359 };
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530360 };
361
362 axi@1 {
363 compatible = "simple-bus";
364 #size-cells = <1>;
365 #address-cells = <1>;
366 ranges = <0x51800000 0x51800000 0x3000
367 0x0 0x30000000 0x10000000>;
368 status = "disabled";
Kishon Vijay Abraham I1ac19c82017-12-19 15:01:28 +0530369 pcie2_rc: pcie@51800000 {
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530370 reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>;
371 reg-names = "rc_dbics", "ti_conf", "config";
372 interrupts = <0 355 0x4>, <0 356 0x4>;
373 #address-cells = <3>;
374 #size-cells = <2>;
375 device_type = "pci";
376 ranges = <0x81000000 0 0 0x03000 0 0x00010000
377 0x82000000 0 0x30013000 0x13000 0 0xffed000>;
Rob Herring7d79f602017-03-21 21:03:01 -0500378 bus-range = <0x00 0xff>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530379 #interrupt-cells = <1>;
380 num-lanes = <1>;
Kishon Vijay Abraham Ibed596d2016-08-10 18:03:18 +0530381 linux,pci-domain = <1>;
Kishon Vijay Abraham I18dcd792014-07-14 16:12:23 +0530382 ti,hwmods = "pcie2";
383 phys = <&pcie2_phy>;
384 phy-names = "pcie-phy0";
385 interrupt-map-mask = <0 0 0 7>;
386 interrupt-map = <0 0 0 1 &pcie2_intc 1>,
387 <0 0 0 2 &pcie2_intc 2>,
388 <0 0 0 3 &pcie2_intc 3>,
389 <0 0 0 4 &pcie2_intc 4>;
390 pcie2_intc: interrupt-controller {
391 interrupt-controller;
392 #address-cells = <0>;
393 #interrupt-cells = <1>;
394 };
395 };
396 };
397
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500398 ocmcram1: ocmcram@40300000 {
399 compatible = "mmio-sram";
400 reg = <0x40300000 0x80000>;
401 ranges = <0x0 0x40300000 0x80000>;
402 #address-cells = <1>;
403 #size-cells = <1>;
Dave Gerlachfae3a9f2016-05-10 14:49:42 -0500404 /*
405 * This is a placeholder for an optional reserved
406 * region for use by secure software. The size
407 * of this region is not known until runtime so it
408 * is set as zero to either be updated to reserve
409 * space or left unchanged to leave all SRAM for use.
410 * On HS parts that that require the reserved region
411 * either the bootloader can update the size to
412 * the required amount or the node can be overridden
413 * from the board dts file for the secure platform.
414 */
415 sram-hs@0 {
416 compatible = "ti,secure-ram";
417 reg = <0x0 0x0>;
418 };
Dave Gerlacha5fa09b2016-05-10 14:49:41 -0500419 };
420
421 /*
422 * NOTE: ocmcram2 and ocmcram3 are not available on all
423 * DRA7xx and AM57xx variants. Confirm availability in
424 * the data manual for the exact part number in use
425 * before enabling these nodes in the board dts file.
426 */
427 ocmcram2: ocmcram@40400000 {
428 status = "disabled";
429 compatible = "mmio-sram";
430 reg = <0x40400000 0x100000>;
431 ranges = <0x0 0x40400000 0x100000>;
432 #address-cells = <1>;
433 #size-cells = <1>;
434 };
435
436 ocmcram3: ocmcram@40500000 {
437 status = "disabled";
438 compatible = "mmio-sram";
439 reg = <0x40500000 0x100000>;
440 ranges = <0x0 0x40500000 0x100000>;
441 #address-cells = <1>;
442 #size-cells = <1>;
443 };
444
Keerthyf7397ed2015-03-23 14:39:38 -0500445 bandgap: bandgap@4a0021e0 {
446 reg = <0x4a0021e0 0xc
447 0x4a00232c 0xc
448 0x4a002380 0x2c
449 0x4a0023C0 0x3c
450 0x4a002564 0x8
451 0x4a002574 0x50>;
452 compatible = "ti,dra752-bandgap";
453 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
454 #thermal-sensor-cells = <1>;
455 };
456
Suman Anna99639ac2015-10-02 18:23:22 -0500457 dsp1_system: dsp_system@40d00000 {
458 compatible = "syscon";
459 reg = <0x40d00000 0x100>;
460 };
461
Tony Lindgreneba61302017-06-16 17:24:29 +0530462 dra7_iodelay_core: padconf@4844a000 {
463 compatible = "ti,dra7-iodelay";
464 reg = <0x4844a000 0x0d1c>;
465 #address-cells = <1>;
466 #size-cells = <0>;
467 #pinctrl-cells = <2>;
468 };
469
R Sricharan6e58b8f2013-08-14 19:08:20 +0530470 sdma: dma-controller@4a056000 {
471 compatible = "ti,omap4430-sdma";
472 reg = <0x4a056000 0x1000>;
R Sricharana46631c2014-06-26 12:55:31 +0530473 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
474 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
475 <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
476 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530477 #dma-cells = <1>;
Peter Ujfalusi08d9b322015-02-20 15:42:06 +0200478 dma-channels = <32>;
479 dma-requests = <127>;
Tony Lindgren288cdbbf2017-08-30 08:19:53 -0700480 ti,hwmods = "dma_system";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530481 };
482
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200483 edma: edma@43300000 {
484 compatible = "ti,edma3-tpcc";
485 ti,hwmods = "tpcc";
486 reg = <0x43300000 0x100000>;
487 reg-names = "edma3_cc";
488 interrupts = <GIC_SPI 361 IRQ_TYPE_LEVEL_HIGH>,
489 <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>,
490 <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>;
Robert P. J. Daya5206552016-05-24 17:20:28 -0400491 interrupt-names = "edma3_ccint", "edma3_mperr",
Peter Ujfalusi248948f2016-03-07 17:17:29 +0200492 "edma3_ccerrint";
493 dma-requests = <64>;
494 #dma-cells = <2>;
495
496 ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 0>;
497
498 /*
499 * memcpy is disabled, can be enabled with:
500 * ti,edma-memcpy-channels = <20 21>;
501 * for example. Note that these channels need to be
502 * masked in the xbar as well.
503 */
504 };
505
506 edma_tptc0: tptc@43400000 {
507 compatible = "ti,edma3-tptc";
508 ti,hwmods = "tptc0";
509 reg = <0x43400000 0x100000>;
510 interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
511 interrupt-names = "edma3_tcerrint";
512 };
513
514 edma_tptc1: tptc@43500000 {
515 compatible = "ti,edma3-tptc";
516 ti,hwmods = "tptc1";
517 reg = <0x43500000 0x100000>;
518 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
519 interrupt-names = "edma3_tcerrint";
520 };
521
R Sricharan6e58b8f2013-08-14 19:08:20 +0530522 gpio1: gpio@4ae10000 {
523 compatible = "ti,omap4-gpio";
524 reg = <0x4ae10000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530525 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530526 ti,hwmods = "gpio1";
527 gpio-controller;
528 #gpio-cells = <2>;
529 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700530 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530531 };
532
533 gpio2: gpio@48055000 {
534 compatible = "ti,omap4-gpio";
535 reg = <0x48055000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530536 interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530537 ti,hwmods = "gpio2";
538 gpio-controller;
539 #gpio-cells = <2>;
540 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700541 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530542 };
543
544 gpio3: gpio@48057000 {
545 compatible = "ti,omap4-gpio";
546 reg = <0x48057000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530547 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530548 ti,hwmods = "gpio3";
549 gpio-controller;
550 #gpio-cells = <2>;
551 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700552 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530553 };
554
555 gpio4: gpio@48059000 {
556 compatible = "ti,omap4-gpio";
557 reg = <0x48059000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530558 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530559 ti,hwmods = "gpio4";
560 gpio-controller;
561 #gpio-cells = <2>;
562 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700563 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530564 };
565
566 gpio5: gpio@4805b000 {
567 compatible = "ti,omap4-gpio";
568 reg = <0x4805b000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530569 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530570 ti,hwmods = "gpio5";
571 gpio-controller;
572 #gpio-cells = <2>;
573 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700574 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530575 };
576
577 gpio6: gpio@4805d000 {
578 compatible = "ti,omap4-gpio";
579 reg = <0x4805d000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530580 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530581 ti,hwmods = "gpio6";
582 gpio-controller;
583 #gpio-cells = <2>;
584 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700585 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530586 };
587
588 gpio7: gpio@48051000 {
589 compatible = "ti,omap4-gpio";
590 reg = <0x48051000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530591 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530592 ti,hwmods = "gpio7";
593 gpio-controller;
594 #gpio-cells = <2>;
595 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700596 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530597 };
598
599 gpio8: gpio@48053000 {
600 compatible = "ti,omap4-gpio";
601 reg = <0x48053000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +0530602 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530603 ti,hwmods = "gpio8";
604 gpio-controller;
605 #gpio-cells = <2>;
606 interrupt-controller;
Nishanth Menone49d519c2014-08-25 16:15:34 -0700607 #interrupt-cells = <2>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530608 };
609
610 uart1: serial@4806a000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530611 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530612 reg = <0x4806a000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000613 interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530614 ti,hwmods = "uart1";
615 clock-frequency = <48000000>;
616 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300617 dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200618 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530619 };
620
621 uart2: serial@4806c000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530622 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530623 reg = <0x4806c000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000624 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530625 ti,hwmods = "uart2";
626 clock-frequency = <48000000>;
627 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300628 dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200629 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530630 };
631
632 uart3: serial@48020000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530633 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530634 reg = <0x48020000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000635 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530636 ti,hwmods = "uart3";
637 clock-frequency = <48000000>;
638 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300639 dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200640 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530641 };
642
643 uart4: serial@4806e000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530644 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530645 reg = <0x4806e000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000646 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530647 ti,hwmods = "uart4";
648 clock-frequency = <48000000>;
649 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300650 dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200651 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530652 };
653
654 uart5: serial@48066000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530655 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530656 reg = <0x48066000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000657 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530658 ti,hwmods = "uart5";
659 clock-frequency = <48000000>;
660 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300661 dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200662 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530663 };
664
665 uart6: serial@48068000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530666 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530667 reg = <0x48068000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000668 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530669 ti,hwmods = "uart6";
670 clock-frequency = <48000000>;
671 status = "disabled";
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +0300672 dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
Sebastian Andrzej Siewiorf0199a22014-09-29 20:06:47 +0200673 dma-names = "tx", "rx";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530674 };
675
676 uart7: serial@48420000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530677 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530678 reg = <0x48420000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000679 interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530680 ti,hwmods = "uart7";
681 clock-frequency = <48000000>;
682 status = "disabled";
683 };
684
685 uart8: serial@48422000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530686 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530687 reg = <0x48422000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000688 interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530689 ti,hwmods = "uart8";
690 clock-frequency = <48000000>;
691 status = "disabled";
692 };
693
694 uart9: serial@48424000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530695 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530696 reg = <0x48424000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000697 interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530698 ti,hwmods = "uart9";
699 clock-frequency = <48000000>;
700 status = "disabled";
701 };
702
703 uart10: serial@4ae2b000 {
Sekhar Nori2a0e5ef2015-07-30 18:27:47 +0530704 compatible = "ti,dra742-uart", "ti,omap4-uart";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530705 reg = <0x4ae2b000 0x100>;
Marc Zyngier783d3182015-03-11 15:43:44 +0000706 interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530707 ti,hwmods = "uart10";
708 clock-frequency = <48000000>;
709 status = "disabled";
710 };
711
Suman Anna38baefb2014-07-11 16:44:38 -0500712 mailbox1: mailbox@4a0f4000 {
713 compatible = "ti,omap4-mailbox";
714 reg = <0x4a0f4000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600715 interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
716 <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
717 <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500718 ti,hwmods = "mailbox1";
Suman Anna24df0452014-11-03 17:07:35 -0600719 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500720 ti,mbox-num-users = <3>;
721 ti,mbox-num-fifos = <8>;
722 status = "disabled";
723 };
724
725 mailbox2: mailbox@4883a000 {
726 compatible = "ti,omap4-mailbox";
727 reg = <0x4883a000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600728 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
729 <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
730 <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
731 <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500732 ti,hwmods = "mailbox2";
Suman Anna24df0452014-11-03 17:07:35 -0600733 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500734 ti,mbox-num-users = <4>;
735 ti,mbox-num-fifos = <12>;
736 status = "disabled";
737 };
738
739 mailbox3: mailbox@4883c000 {
740 compatible = "ti,omap4-mailbox";
741 reg = <0x4883c000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600742 interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
743 <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
744 <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
745 <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500746 ti,hwmods = "mailbox3";
Suman Anna24df0452014-11-03 17:07:35 -0600747 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500748 ti,mbox-num-users = <4>;
749 ti,mbox-num-fifos = <12>;
750 status = "disabled";
751 };
752
753 mailbox4: mailbox@4883e000 {
754 compatible = "ti,omap4-mailbox";
755 reg = <0x4883e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600756 interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
757 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
758 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
759 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500760 ti,hwmods = "mailbox4";
Suman Anna24df0452014-11-03 17:07:35 -0600761 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500762 ti,mbox-num-users = <4>;
763 ti,mbox-num-fifos = <12>;
764 status = "disabled";
765 };
766
767 mailbox5: mailbox@48840000 {
768 compatible = "ti,omap4-mailbox";
769 reg = <0x48840000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600770 interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
771 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
772 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
773 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500774 ti,hwmods = "mailbox5";
Suman Anna24df0452014-11-03 17:07:35 -0600775 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500776 ti,mbox-num-users = <4>;
777 ti,mbox-num-fifos = <12>;
778 status = "disabled";
779 };
780
781 mailbox6: mailbox@48842000 {
782 compatible = "ti,omap4-mailbox";
783 reg = <0x48842000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600784 interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
785 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
786 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
787 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500788 ti,hwmods = "mailbox6";
Suman Anna24df0452014-11-03 17:07:35 -0600789 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500790 ti,mbox-num-users = <4>;
791 ti,mbox-num-fifos = <12>;
792 status = "disabled";
793 };
794
795 mailbox7: mailbox@48844000 {
796 compatible = "ti,omap4-mailbox";
797 reg = <0x48844000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600798 interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
799 <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
800 <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
801 <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500802 ti,hwmods = "mailbox7";
Suman Anna24df0452014-11-03 17:07:35 -0600803 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500804 ti,mbox-num-users = <4>;
805 ti,mbox-num-fifos = <12>;
806 status = "disabled";
807 };
808
809 mailbox8: mailbox@48846000 {
810 compatible = "ti,omap4-mailbox";
811 reg = <0x48846000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600812 interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
813 <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
814 <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
815 <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500816 ti,hwmods = "mailbox8";
Suman Anna24df0452014-11-03 17:07:35 -0600817 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500818 ti,mbox-num-users = <4>;
819 ti,mbox-num-fifos = <12>;
820 status = "disabled";
821 };
822
823 mailbox9: mailbox@4885e000 {
824 compatible = "ti,omap4-mailbox";
825 reg = <0x4885e000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600826 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
827 <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
828 <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
829 <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500830 ti,hwmods = "mailbox9";
Suman Anna24df0452014-11-03 17:07:35 -0600831 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500832 ti,mbox-num-users = <4>;
833 ti,mbox-num-fifos = <12>;
834 status = "disabled";
835 };
836
837 mailbox10: mailbox@48860000 {
838 compatible = "ti,omap4-mailbox";
839 reg = <0x48860000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600840 interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
841 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
842 <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
843 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500844 ti,hwmods = "mailbox10";
Suman Anna24df0452014-11-03 17:07:35 -0600845 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500846 ti,mbox-num-users = <4>;
847 ti,mbox-num-fifos = <12>;
848 status = "disabled";
849 };
850
851 mailbox11: mailbox@48862000 {
852 compatible = "ti,omap4-mailbox";
853 reg = <0x48862000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600854 interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
855 <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
856 <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
857 <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500858 ti,hwmods = "mailbox11";
Suman Anna24df0452014-11-03 17:07:35 -0600859 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500860 ti,mbox-num-users = <4>;
861 ti,mbox-num-fifos = <12>;
862 status = "disabled";
863 };
864
865 mailbox12: mailbox@48864000 {
866 compatible = "ti,omap4-mailbox";
867 reg = <0x48864000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600868 interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
869 <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
870 <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
871 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500872 ti,hwmods = "mailbox12";
Suman Anna24df0452014-11-03 17:07:35 -0600873 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500874 ti,mbox-num-users = <4>;
875 ti,mbox-num-fifos = <12>;
876 status = "disabled";
877 };
878
879 mailbox13: mailbox@48802000 {
880 compatible = "ti,omap4-mailbox";
881 reg = <0x48802000 0x200>;
Suman Annab46a6ae2014-11-03 17:07:34 -0600882 interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
883 <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
884 <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
885 <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
Suman Anna38baefb2014-07-11 16:44:38 -0500886 ti,hwmods = "mailbox13";
Suman Anna24df0452014-11-03 17:07:35 -0600887 #mbox-cells = <1>;
Suman Anna38baefb2014-07-11 16:44:38 -0500888 ti,mbox-num-users = <4>;
889 ti,mbox-num-fifos = <12>;
890 status = "disabled";
891 };
892
R Sricharan6e58b8f2013-08-14 19:08:20 +0530893 timer1: timer@4ae18000 {
894 compatible = "ti,omap5430-timer";
895 reg = <0x4ae18000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530896 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530897 ti,hwmods = "timer1";
898 ti,timer-alwon;
Tero Kristo139e9a62017-12-07 10:46:38 +0200899 clock-names = "fck";
Tero Kristo18395332017-12-08 17:17:29 +0200900 clocks = <&wkupaon_clkctrl DRA7_TIMER1_CLKCTRL 24>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530901 };
902
903 timer2: timer@48032000 {
904 compatible = "ti,omap5430-timer";
905 reg = <0x48032000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530906 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530907 ti,hwmods = "timer2";
908 };
909
910 timer3: timer@48034000 {
911 compatible = "ti,omap5430-timer";
912 reg = <0x48034000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530913 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530914 ti,hwmods = "timer3";
915 };
916
917 timer4: timer@48036000 {
918 compatible = "ti,omap5430-timer";
919 reg = <0x48036000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530920 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530921 ti,hwmods = "timer4";
922 };
923
924 timer5: timer@48820000 {
925 compatible = "ti,omap5430-timer";
926 reg = <0x48820000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530927 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530928 ti,hwmods = "timer5";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530929 };
930
931 timer6: timer@48822000 {
932 compatible = "ti,omap5430-timer";
933 reg = <0x48822000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530934 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530935 ti,hwmods = "timer6";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530936 };
937
938 timer7: timer@48824000 {
939 compatible = "ti,omap5430-timer";
940 reg = <0x48824000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530941 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530942 ti,hwmods = "timer7";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530943 };
944
945 timer8: timer@48826000 {
946 compatible = "ti,omap5430-timer";
947 reg = <0x48826000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530948 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530949 ti,hwmods = "timer8";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530950 };
951
952 timer9: timer@4803e000 {
953 compatible = "ti,omap5430-timer";
954 reg = <0x4803e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530955 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530956 ti,hwmods = "timer9";
957 };
958
959 timer10: timer@48086000 {
960 compatible = "ti,omap5430-timer";
961 reg = <0x48086000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530962 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530963 ti,hwmods = "timer10";
964 };
965
966 timer11: timer@48088000 {
967 compatible = "ti,omap5430-timer";
968 reg = <0x48088000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530969 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530970 ti,hwmods = "timer11";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530971 };
972
Suman Annad79852a2016-04-05 16:44:10 -0500973 timer12: timer@4ae20000 {
974 compatible = "ti,omap5430-timer";
975 reg = <0x4ae20000 0x80>;
976 interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
977 ti,hwmods = "timer12";
978 ti,timer-alwon;
979 ti,timer-secure;
980 };
981
R Sricharan6e58b8f2013-08-14 19:08:20 +0530982 timer13: timer@48828000 {
983 compatible = "ti,omap5430-timer";
984 reg = <0x48828000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530985 interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530986 ti,hwmods = "timer13";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530987 };
988
989 timer14: timer@4882a000 {
990 compatible = "ti,omap5430-timer";
991 reg = <0x4882a000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530992 interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +0530993 ti,hwmods = "timer14";
R Sricharan6e58b8f2013-08-14 19:08:20 +0530994 };
995
996 timer15: timer@4882c000 {
997 compatible = "ti,omap5430-timer";
998 reg = <0x4882c000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +0530999 interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301000 ti,hwmods = "timer15";
R Sricharan6e58b8f2013-08-14 19:08:20 +05301001 };
1002
1003 timer16: timer@4882e000 {
1004 compatible = "ti,omap5430-timer";
1005 reg = <0x4882e000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +05301006 interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301007 ti,hwmods = "timer16";
R Sricharan6e58b8f2013-08-14 19:08:20 +05301008 };
1009
1010 wdt2: wdt@4ae14000 {
Lokesh Vutlabe668832014-11-12 10:54:15 +05301011 compatible = "ti,omap3-wdt";
R Sricharan6e58b8f2013-08-14 19:08:20 +05301012 reg = <0x4ae14000 0x80>;
R Sricharana46631c2014-06-26 12:55:31 +05301013 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301014 ti,hwmods = "wd_timer2";
1015 };
1016
Suman Annadbd7c192014-01-13 18:26:46 -06001017 hwspinlock: spinlock@4a0f6000 {
1018 compatible = "ti,omap4-hwspinlock";
1019 reg = <0x4a0f6000 0x1000>;
1020 ti,hwmods = "spinlock";
1021 #hwlock-cells = <1>;
1022 };
1023
Archit Taneja1a5fe3c2013-12-17 15:32:21 +05301024 dmm@4e000000 {
1025 compatible = "ti,omap5-dmm";
1026 reg = <0x4e000000 0x800>;
R Sricharana46631c2014-06-26 12:55:31 +05301027 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
Archit Taneja1a5fe3c2013-12-17 15:32:21 +05301028 ti,hwmods = "dmm";
1029 };
1030
R Sricharan6e58b8f2013-08-14 19:08:20 +05301031 i2c1: i2c@48070000 {
1032 compatible = "ti,omap4-i2c";
1033 reg = <0x48070000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301034 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301035 #address-cells = <1>;
1036 #size-cells = <0>;
1037 ti,hwmods = "i2c1";
1038 status = "disabled";
1039 };
1040
1041 i2c2: i2c@48072000 {
1042 compatible = "ti,omap4-i2c";
1043 reg = <0x48072000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301044 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301045 #address-cells = <1>;
1046 #size-cells = <0>;
1047 ti,hwmods = "i2c2";
1048 status = "disabled";
1049 };
1050
1051 i2c3: i2c@48060000 {
1052 compatible = "ti,omap4-i2c";
1053 reg = <0x48060000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301054 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301055 #address-cells = <1>;
1056 #size-cells = <0>;
1057 ti,hwmods = "i2c3";
1058 status = "disabled";
1059 };
1060
1061 i2c4: i2c@4807a000 {
1062 compatible = "ti,omap4-i2c";
1063 reg = <0x4807a000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301064 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301065 #address-cells = <1>;
1066 #size-cells = <0>;
1067 ti,hwmods = "i2c4";
1068 status = "disabled";
1069 };
1070
1071 i2c5: i2c@4807c000 {
1072 compatible = "ti,omap4-i2c";
1073 reg = <0x4807c000 0x100>;
R Sricharana46631c2014-06-26 12:55:31 +05301074 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301075 #address-cells = <1>;
1076 #size-cells = <0>;
1077 ti,hwmods = "i2c5";
1078 status = "disabled";
1079 };
1080
1081 mmc1: mmc@4809c000 {
1082 compatible = "ti,omap4-hsmmc";
1083 reg = <0x4809c000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301084 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301085 ti,hwmods = "mmc1";
1086 ti,dual-volt;
1087 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001088 dmas = <&sdma_xbar 61>, <&sdma_xbar 62>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301089 dma-names = "tx", "rx";
1090 status = "disabled";
Balaji T Kcd042fe2014-02-19 20:26:40 +05301091 pbias-supply = <&pbias_mmc_reg>;
Kishon Vijay Abraham I866b5e42017-06-07 15:07:47 +05301092 max-frequency = <192000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301093 };
1094
Tony Lindgren288cdbbf2017-08-30 08:19:53 -07001095 hdqw1w: 1w@480b2000 {
1096 compatible = "ti,omap3-1w";
1097 reg = <0x480b2000 0x1000>;
1098 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
1099 ti,hwmods = "hdq1w";
1100 };
1101
R Sricharan6e58b8f2013-08-14 19:08:20 +05301102 mmc2: mmc@480b4000 {
1103 compatible = "ti,omap4-hsmmc";
1104 reg = <0x480b4000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301105 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301106 ti,hwmods = "mmc2";
1107 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001108 dmas = <&sdma_xbar 47>, <&sdma_xbar 48>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301109 dma-names = "tx", "rx";
1110 status = "disabled";
Kishon Vijay Abraham I866b5e42017-06-07 15:07:47 +05301111 max-frequency = <192000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301112 };
1113
1114 mmc3: mmc@480ad000 {
1115 compatible = "ti,omap4-hsmmc";
1116 reg = <0x480ad000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301117 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301118 ti,hwmods = "mmc3";
1119 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001120 dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301121 dma-names = "tx", "rx";
1122 status = "disabled";
Kishon Vijay Abraham I866b5e42017-06-07 15:07:47 +05301123 /* Errata i887 limits max-frequency of MMC3 to 64 MHz */
1124 max-frequency = <64000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301125 };
1126
1127 mmc4: mmc@480d1000 {
1128 compatible = "ti,omap4-hsmmc";
1129 reg = <0x480d1000 0x400>;
R Sricharana46631c2014-06-26 12:55:31 +05301130 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301131 ti,hwmods = "mmc4";
1132 ti,needs-special-reset;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001133 dmas = <&sdma_xbar 57>, <&sdma_xbar 58>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301134 dma-names = "tx", "rx";
1135 status = "disabled";
Kishon Vijay Abraham I866b5e42017-06-07 15:07:47 +05301136 max-frequency = <192000000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301137 };
1138
Suman Anna2c7e07c52015-10-02 18:23:24 -05001139 mmu0_dsp1: mmu@40d01000 {
1140 compatible = "ti,dra7-dsp-iommu";
1141 reg = <0x40d01000 0x100>;
1142 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
1143 ti,hwmods = "mmu0_dsp1";
1144 #iommu-cells = <0>;
1145 ti,syscon-mmuconfig = <&dsp1_system 0x0>;
1146 status = "disabled";
1147 };
1148
1149 mmu1_dsp1: mmu@40d02000 {
1150 compatible = "ti,dra7-dsp-iommu";
1151 reg = <0x40d02000 0x100>;
1152 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
1153 ti,hwmods = "mmu1_dsp1";
1154 #iommu-cells = <0>;
1155 ti,syscon-mmuconfig = <&dsp1_system 0x1>;
1156 status = "disabled";
1157 };
1158
1159 mmu_ipu1: mmu@58882000 {
1160 compatible = "ti,dra7-iommu";
1161 reg = <0x58882000 0x100>;
1162 interrupts = <GIC_SPI 395 IRQ_TYPE_LEVEL_HIGH>;
1163 ti,hwmods = "mmu_ipu1";
1164 #iommu-cells = <0>;
1165 ti,iommu-bus-err-back;
1166 status = "disabled";
1167 };
1168
1169 mmu_ipu2: mmu@55082000 {
1170 compatible = "ti,dra7-iommu";
1171 reg = <0x55082000 0x100>;
1172 interrupts = <GIC_SPI 396 IRQ_TYPE_LEVEL_HIGH>;
1173 ti,hwmods = "mmu_ipu2";
1174 #iommu-cells = <0>;
1175 ti,iommu-bus-err-back;
1176 status = "disabled";
1177 };
1178
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301179 abb_mpu: regulator-abb-mpu {
1180 compatible = "ti,abb-v3";
1181 regulator-name = "abb_mpu";
1182 #address-cells = <0>;
1183 #size-cells = <0>;
1184 clocks = <&sys_clkin1>;
1185 ti,settling-time = <50>;
1186 ti,clock-cycles = <16>;
1187
1188 reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001189 <0x4ae06014 0x4>, <0x4a003b20 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301190 <0x4ae0c158 0x4>;
1191 reg-names = "setup-address", "control-address",
1192 "int-address", "efuse-address",
1193 "ldo-address";
1194 ti,tranxdone-status-mask = <0x80>;
1195 /* LDOVBBMPU_FBB_MUX_CTRL */
1196 ti,ldovbb-override-mask = <0x400>;
1197 /* LDOVBBMPU_FBB_VSET_OUT */
1198 ti,ldovbb-vset-mask = <0x1F>;
1199
1200 /*
1201 * NOTE: only FBB mode used but actual vset will
1202 * determine final biasing
1203 */
1204 ti,abb_info = <
1205 /*uV ABB efuse rbb_m fbb_m vset_m*/
1206 1060000 0 0x0 0 0x02000000 0x01F00000
1207 1160000 0 0x4 0 0x02000000 0x01F00000
1208 1210000 0 0x8 0 0x02000000 0x01F00000
1209 >;
1210 };
1211
1212 abb_ivahd: regulator-abb-ivahd {
1213 compatible = "ti,abb-v3";
1214 regulator-name = "abb_ivahd";
1215 #address-cells = <0>;
1216 #size-cells = <0>;
1217 clocks = <&sys_clkin1>;
1218 ti,settling-time = <50>;
1219 ti,clock-cycles = <16>;
1220
1221 reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001222 <0x4ae06010 0x4>, <0x4a0025cc 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301223 <0x4a002470 0x4>;
1224 reg-names = "setup-address", "control-address",
1225 "int-address", "efuse-address",
1226 "ldo-address";
1227 ti,tranxdone-status-mask = <0x40000000>;
1228 /* LDOVBBIVA_FBB_MUX_CTRL */
1229 ti,ldovbb-override-mask = <0x400>;
1230 /* LDOVBBIVA_FBB_VSET_OUT */
1231 ti,ldovbb-vset-mask = <0x1F>;
1232
1233 /*
1234 * NOTE: only FBB mode used but actual vset will
1235 * determine final biasing
1236 */
1237 ti,abb_info = <
1238 /*uV ABB efuse rbb_m fbb_m vset_m*/
1239 1055000 0 0x0 0 0x02000000 0x01F00000
1240 1150000 0 0x4 0 0x02000000 0x01F00000
1241 1250000 0 0x8 0 0x02000000 0x01F00000
1242 >;
1243 };
1244
1245 abb_dspeve: regulator-abb-dspeve {
1246 compatible = "ti,abb-v3";
1247 regulator-name = "abb_dspeve";
1248 #address-cells = <0>;
1249 #size-cells = <0>;
1250 clocks = <&sys_clkin1>;
1251 ti,settling-time = <50>;
1252 ti,clock-cycles = <16>;
1253
1254 reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001255 <0x4ae06010 0x4>, <0x4a0025e0 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301256 <0x4a00246c 0x4>;
1257 reg-names = "setup-address", "control-address",
1258 "int-address", "efuse-address",
1259 "ldo-address";
1260 ti,tranxdone-status-mask = <0x20000000>;
1261 /* LDOVBBDSPEVE_FBB_MUX_CTRL */
1262 ti,ldovbb-override-mask = <0x400>;
1263 /* LDOVBBDSPEVE_FBB_VSET_OUT */
1264 ti,ldovbb-vset-mask = <0x1F>;
1265
1266 /*
1267 * NOTE: only FBB mode used but actual vset will
1268 * determine final biasing
1269 */
1270 ti,abb_info = <
1271 /*uV ABB efuse rbb_m fbb_m vset_m*/
1272 1055000 0 0x0 0 0x02000000 0x01F00000
1273 1150000 0 0x4 0 0x02000000 0x01F00000
1274 1250000 0 0x8 0 0x02000000 0x01F00000
1275 >;
1276 };
1277
1278 abb_gpu: regulator-abb-gpu {
1279 compatible = "ti,abb-v3";
1280 regulator-name = "abb_gpu";
1281 #address-cells = <0>;
1282 #size-cells = <0>;
1283 clocks = <&sys_clkin1>;
1284 ti,settling-time = <50>;
1285 ti,clock-cycles = <16>;
1286
1287 reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>,
Nishanth Menon18227342015-04-16 16:56:33 -05001288 <0x4ae06010 0x4>, <0x4a003b08 0xc>,
Nishanth Menona1b8ee12014-03-03 20:20:23 +05301289 <0x4ae0c154 0x4>;
1290 reg-names = "setup-address", "control-address",
1291 "int-address", "efuse-address",
1292 "ldo-address";
1293 ti,tranxdone-status-mask = <0x10000000>;
1294 /* LDOVBBGPU_FBB_MUX_CTRL */
1295 ti,ldovbb-override-mask = <0x400>;
1296 /* LDOVBBGPU_FBB_VSET_OUT */
1297 ti,ldovbb-vset-mask = <0x1F>;
1298
1299 /*
1300 * NOTE: only FBB mode used but actual vset will
1301 * determine final biasing
1302 */
1303 ti,abb_info = <
1304 /*uV ABB efuse rbb_m fbb_m vset_m*/
1305 1090000 0 0x0 0 0x02000000 0x01F00000
1306 1210000 0 0x4 0 0x02000000 0x01F00000
1307 1280000 0 0x8 0 0x02000000 0x01F00000
1308 >;
1309 };
1310
R Sricharan6e58b8f2013-08-14 19:08:20 +05301311 mcspi1: spi@48098000 {
1312 compatible = "ti,omap4-mcspi";
1313 reg = <0x48098000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301314 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301315 #address-cells = <1>;
1316 #size-cells = <0>;
1317 ti,hwmods = "mcspi1";
1318 ti,spi-num-cs = <4>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001319 dmas = <&sdma_xbar 35>,
1320 <&sdma_xbar 36>,
1321 <&sdma_xbar 37>,
1322 <&sdma_xbar 38>,
1323 <&sdma_xbar 39>,
1324 <&sdma_xbar 40>,
1325 <&sdma_xbar 41>,
1326 <&sdma_xbar 42>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301327 dma-names = "tx0", "rx0", "tx1", "rx1",
1328 "tx2", "rx2", "tx3", "rx3";
1329 status = "disabled";
1330 };
1331
1332 mcspi2: spi@4809a000 {
1333 compatible = "ti,omap4-mcspi";
1334 reg = <0x4809a000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301335 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301336 #address-cells = <1>;
1337 #size-cells = <0>;
1338 ti,hwmods = "mcspi2";
1339 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001340 dmas = <&sdma_xbar 43>,
1341 <&sdma_xbar 44>,
1342 <&sdma_xbar 45>,
1343 <&sdma_xbar 46>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301344 dma-names = "tx0", "rx0", "tx1", "rx1";
1345 status = "disabled";
1346 };
1347
1348 mcspi3: spi@480b8000 {
1349 compatible = "ti,omap4-mcspi";
1350 reg = <0x480b8000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301351 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301352 #address-cells = <1>;
1353 #size-cells = <0>;
1354 ti,hwmods = "mcspi3";
1355 ti,spi-num-cs = <2>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001356 dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301357 dma-names = "tx0", "rx0";
1358 status = "disabled";
1359 };
1360
1361 mcspi4: spi@480ba000 {
1362 compatible = "ti,omap4-mcspi";
1363 reg = <0x480ba000 0x200>;
R Sricharana46631c2014-06-26 12:55:31 +05301364 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301365 #address-cells = <1>;
1366 #size-cells = <0>;
1367 ti,hwmods = "mcspi4";
1368 ti,spi-num-cs = <1>;
Peter Ujfalusi3a0830d2015-04-09 12:35:54 +03001369 dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05301370 dma-names = "tx0", "rx0";
1371 status = "disabled";
1372 };
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301373
1374 qspi: qspi@4b300000 {
1375 compatible = "ti,dra7xxx-qspi";
Vignesh R1929d0b2015-12-11 09:39:59 +05301376 reg = <0x4b300000 0x100>,
1377 <0x5c000000 0x4000000>;
1378 reg-names = "qspi_base", "qspi_mmap";
1379 syscon-chipselects = <&scm_conf 0x558>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301380 #address-cells = <1>;
1381 #size-cells = <0>;
1382 ti,hwmods = "qspi";
Tero Kristo18395332017-12-08 17:17:29 +02001383 clocks = <&l4per_clkctrl DRA7_QSPI_CLKCTRL 25>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301384 clock-names = "fck";
1385 num-cs = <4>;
R Sricharana46631c2014-06-26 12:55:31 +05301386 interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddardc2dd5b2014-05-06 16:37:24 +05301387 status = "disabled";
1388 };
Balaji T K7be80562014-05-07 14:58:58 +03001389
Balaji T K7be80562014-05-07 14:58:58 +03001390 /* OCP2SCP3 */
1391 ocp2scp@4a090000 {
1392 compatible = "ti,omap-ocp2scp";
1393 #address-cells = <1>;
1394 #size-cells = <1>;
1395 ranges;
1396 reg = <0x4a090000 0x20>;
1397 ti,hwmods = "ocp2scp3";
Mathieu Malaterre9b490b32017-12-15 13:46:51 +01001398 sata_phy: phy@4a096000 {
Balaji T K7be80562014-05-07 14:58:58 +03001399 compatible = "ti,phy-pipe3-sata";
1400 reg = <0x4A096000 0x80>, /* phy_rx */
1401 <0x4A096400 0x64>, /* phy_tx */
1402 <0x4A096800 0x40>; /* pll_ctrl */
1403 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301404 syscon-phy-power = <&scm_conf 0x374>;
Tero Kristo18395332017-12-08 17:17:29 +02001405 clocks = <&sys_clkin1>,
1406 <&l3init_clkctrl DRA7_SATA_CLKCTRL 8>;
Roger Quadros773c5a02015-01-13 14:23:21 +02001407 clock-names = "sysclk", "refclk";
Roger Quadros257d5d9a2015-07-17 16:47:23 +03001408 syscon-pllreset = <&scm_conf 0x3fc>;
Balaji T K7be80562014-05-07 14:58:58 +03001409 #phy-cells = <0>;
1410 };
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301411
1412 pcie1_phy: pciephy@4a094000 {
1413 compatible = "ti,phy-pipe3-pcie";
1414 reg = <0x4a094000 0x80>, /* phy_rx */
1415 <0x4a094400 0x64>; /* phy_tx */
1416 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301417 syscon-phy-power = <&scm_conf_pcie 0x1c>;
1418 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301419 clocks = <&dpll_pcie_ref_ck>,
1420 <&dpll_pcie_ref_m2ldo_ck>,
Tero Kristo18395332017-12-08 17:17:29 +02001421 <&l3init_clkctrl DRA7_PCIE1_CLKCTRL 8>,
1422 <&l3init_clkctrl DRA7_PCIE1_CLKCTRL 9>,
1423 <&l3init_clkctrl DRA7_PCIE1_CLKCTRL 10>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301424 <&optfclk_pciephy_div>,
1425 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301426 clock-names = "dpll_ref", "dpll_ref_m2",
1427 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301428 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301429 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301430 };
1431
1432 pcie2_phy: pciephy@4a095000 {
1433 compatible = "ti,phy-pipe3-pcie";
1434 reg = <0x4a095000 0x80>, /* phy_rx */
1435 <0x4a095400 0x64>; /* phy_tx */
1436 reg-names = "phy_rx", "phy_tx";
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301437 syscon-phy-power = <&scm_conf_pcie 0x20>;
1438 syscon-pcs = <&scm_conf_pcie 0x10>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301439 clocks = <&dpll_pcie_ref_ck>,
1440 <&dpll_pcie_ref_m2ldo_ck>,
Tero Kristo18395332017-12-08 17:17:29 +02001441 <&l3init_clkctrl DRA7_PCIE2_CLKCTRL 8>,
1442 <&l3init_clkctrl DRA7_PCIE2_CLKCTRL 9>,
1443 <&l3init_clkctrl DRA7_PCIE2_CLKCTRL 10>,
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301444 <&optfclk_pciephy_div>,
1445 <&sys_clkin1>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301446 clock-names = "dpll_ref", "dpll_ref_m2",
1447 "wkupclk", "refclk",
Kishon Vijay Abraham I6921e582015-12-21 14:43:19 +05301448 "div-clk", "phy-div", "sysclk";
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301449 #phy-cells = <0>;
Kishon Vijay Abraham I692df0e2014-07-14 16:12:22 +05301450 status = "disabled";
1451 };
Balaji T K7be80562014-05-07 14:58:58 +03001452 };
1453
1454 sata: sata@4a141100 {
1455 compatible = "snps,dwc-ahci";
1456 reg = <0x4a140000 0x1100>, <0x4a141100 0x7>;
R Sricharana46631c2014-06-26 12:55:31 +05301457 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K7be80562014-05-07 14:58:58 +03001458 phys = <&sata_phy>;
1459 phy-names = "sata-phy";
Tero Kristo18395332017-12-08 17:17:29 +02001460 clocks = <&l3init_clkctrl DRA7_SATA_CLKCTRL 8>;
Balaji T K7be80562014-05-07 14:58:58 +03001461 ti,hwmods = "sata";
Jean-Jacques Hiblot87cb1292017-01-09 13:22:15 +01001462 ports-implemented = <0x1>;
Balaji T K7be80562014-05-07 14:58:58 +03001463 };
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001464
Nishanth Menon00edd312015-04-08 18:56:27 -05001465 rtc: rtc@48838000 {
Lokesh Vutlabc078312014-11-19 17:53:08 +05301466 compatible = "ti,am3352-rtc";
1467 reg = <0x48838000 0x100>;
1468 interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
1469 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
1470 ti,hwmods = "rtcss";
1471 clocks = <&sys_32k_ck>;
1472 };
1473
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001474 /* OCP2SCP1 */
1475 ocp2scp@4a080000 {
1476 compatible = "ti,omap-ocp2scp";
1477 #address-cells = <1>;
1478 #size-cells = <1>;
1479 ranges;
1480 reg = <0x4a080000 0x20>;
1481 ti,hwmods = "ocp2scp1";
1482
1483 usb2_phy1: phy@4a084000 {
Sekhar Nori291f1af2016-08-23 11:57:41 +03001484 compatible = "ti,dra7x-usb2", "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001485 reg = <0x4a084000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301486 syscon-phy-power = <&scm_conf 0x300>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001487 clocks = <&usb_phy1_always_on_clk32k>,
Tero Kristo18395332017-12-08 17:17:29 +02001488 <&l3init_clkctrl DRA7_USB_OTG_SS1_CLKCTRL 8>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001489 clock-names = "wkupclk",
1490 "refclk";
1491 #phy-cells = <0>;
1492 };
1493
1494 usb2_phy2: phy@4a085000 {
Kishon Vijay Abraham I4b4f52e2015-12-21 14:43:20 +05301495 compatible = "ti,dra7x-usb2-phy2",
1496 "ti,omap-usb2";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001497 reg = <0x4a085000 0x400>;
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301498 syscon-phy-power = <&scm_conf 0xe74>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001499 clocks = <&usb_phy2_always_on_clk32k>,
Tero Kristo18395332017-12-08 17:17:29 +02001500 <&l3init_clkctrl DRA7_USB_OTG_SS2_CLKCTRL 8>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001501 clock-names = "wkupclk",
1502 "refclk";
1503 #phy-cells = <0>;
1504 };
1505
1506 usb3_phy1: phy@4a084400 {
1507 compatible = "ti,omap-usb3";
1508 reg = <0x4a084400 0x80>,
1509 <0x4a084800 0x64>,
1510 <0x4a084c00 0x40>;
1511 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Kishon Vijay Abraham I2338c762015-12-21 14:43:21 +05301512 syscon-phy-power = <&scm_conf 0x370>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001513 clocks = <&usb_phy3_always_on_clk32k>,
1514 <&sys_clkin1>,
Tero Kristo18395332017-12-08 17:17:29 +02001515 <&l3init_clkctrl DRA7_USB_OTG_SS1_CLKCTRL 8>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001516 clock-names = "wkupclk",
1517 "sysclk",
1518 "refclk";
1519 #phy-cells = <0>;
1520 };
1521 };
1522
Tony Lindgren160ec892017-10-10 14:15:04 -07001523 target-module@4a0dd000 {
Tony Lindgrenfeffce12017-12-13 16:36:47 -08001524 compatible = "ti,sysc-omap4-sr", "ti,sysc";
Tony Lindgren160ec892017-10-10 14:15:04 -07001525 ti,hwmods = "smartreflex_core";
Tony Lindgrene14d7e52018-01-11 16:04:03 -08001526 reg = <0x4a0dd038 0x4>;
1527 reg-names = "sysc";
1528 ti,sysc-mask = <SYSC_OMAP3_SR_ENAWAKEUP>;
1529 ti,sysc-sidle = <SYSC_IDLE_FORCE>,
1530 <SYSC_IDLE_NO>,
1531 <SYSC_IDLE_SMART>,
1532 <SYSC_IDLE_SMART_WKUP>;
1533 clocks = <&coreaon_clkctrl DRA7_SMARTREFLEX_CORE_CLKCTRL 0>;
1534 clock-names = "fck";
Tony Lindgren160ec892017-10-10 14:15:04 -07001535 #address-cells = <1>;
1536 #size-cells = <1>;
1537 ranges = <0 0x4a0dd000 0x001000>;
1538
1539 /* SmartReflex child device marked reserved in TRM */
1540 };
1541
1542 target-module@4a0d9000 {
Tony Lindgrenfeffce12017-12-13 16:36:47 -08001543 compatible = "ti,sysc-omap4-sr", "ti,sysc";
Tony Lindgren160ec892017-10-10 14:15:04 -07001544 ti,hwmods = "smartreflex_mpu";
Tony Lindgrene14d7e52018-01-11 16:04:03 -08001545 reg = <0x4a0d9038 0x4>;
1546 reg-names = "sysc";
1547 ti,sysc-mask = <SYSC_OMAP3_SR_ENAWAKEUP>;
1548 ti,sysc-sidle = <SYSC_IDLE_FORCE>,
1549 <SYSC_IDLE_NO>,
1550 <SYSC_IDLE_SMART>,
1551 <SYSC_IDLE_SMART_WKUP>;
1552 clocks = <&coreaon_clkctrl DRA7_SMARTREFLEX_MPU_CLKCTRL 0>;
1553 clock-names = "fck";
Tony Lindgren160ec892017-10-10 14:15:04 -07001554 #address-cells = <1>;
1555 #size-cells = <1>;
1556 ranges = <0 0x4a0d9000 0x001000>;
1557
1558 /* SmartReflex child device marked reserved in TRM */
1559 };
1560
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001561 omap_dwc3_1: omap_dwc3_1@48880000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001562 compatible = "ti,dwc3";
1563 ti,hwmods = "usb_otg_ss1";
1564 reg = <0x48880000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301565 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001566 #address-cells = <1>;
1567 #size-cells = <1>;
1568 utmi-mode = <2>;
1569 ranges;
1570 usb1: usb@48890000 {
1571 compatible = "snps,dwc3";
1572 reg = <0x48890000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001573 interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1574 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
1575 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1576 interrupt-names = "peripheral",
1577 "host",
1578 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001579 phys = <&usb2_phy1>, <&usb3_phy1>;
1580 phy-names = "usb2-phy", "usb3-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001581 maximum-speed = "super-speed";
1582 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001583 snps,dis_u3_susphy_quirk;
1584 snps,dis_u2_susphy_quirk;
Roger Quadrosb8c9c6f2017-10-31 15:26:00 +02001585 snps,dis_metastability_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001586 };
1587 };
1588
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001589 omap_dwc3_2: omap_dwc3_2@488c0000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001590 compatible = "ti,dwc3";
1591 ti,hwmods = "usb_otg_ss2";
1592 reg = <0x488c0000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301593 interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001594 #address-cells = <1>;
1595 #size-cells = <1>;
1596 utmi-mode = <2>;
1597 ranges;
1598 usb2: usb@488d0000 {
1599 compatible = "snps,dwc3";
1600 reg = <0x488d0000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001601 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1602 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
1603 <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
1604 interrupt-names = "peripheral",
1605 "host",
1606 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001607 phys = <&usb2_phy2>;
1608 phy-names = "usb2-phy";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001609 maximum-speed = "high-speed";
1610 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001611 snps,dis_u3_susphy_quirk;
1612 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001613 };
1614 };
1615
1616 /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */
Felipe Balbi4f6dec72014-11-03 10:28:42 -06001617 omap_dwc3_3: omap_dwc3_3@48900000 {
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001618 compatible = "ti,dwc3";
1619 ti,hwmods = "usb_otg_ss3";
1620 reg = <0x48900000 0x10000>;
R Sricharana46631c2014-06-26 12:55:31 +05301621 interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001622 #address-cells = <1>;
1623 #size-cells = <1>;
1624 utmi-mode = <2>;
1625 ranges;
1626 status = "disabled";
1627 usb3: usb@48910000 {
1628 compatible = "snps,dwc3";
1629 reg = <0x48910000 0x17000>;
Roger Quadros964927f2015-07-08 13:42:32 +03001630 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1631 <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
1632 <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
1633 interrupt-names = "peripheral",
1634 "host",
1635 "otg";
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001636 maximum-speed = "high-speed";
1637 dr_mode = "otg";
Felipe Balbi8c606732015-01-15 09:38:03 -06001638 snps,dis_u3_susphy_quirk;
1639 snps,dis_u2_susphy_quirk;
Roger Quadrosfbf3e552014-05-05 12:54:45 +03001640 };
1641 };
1642
Minal Shahff66a3c2014-05-19 14:45:47 +05301643 elm: elm@48078000 {
1644 compatible = "ti,am3352-elm";
1645 reg = <0x48078000 0xfc0>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301646 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301647 ti,hwmods = "elm";
1648 status = "disabled";
1649 };
1650
1651 gpmc: gpmc@50000000 {
1652 compatible = "ti,am3352-gpmc";
1653 ti,hwmods = "gpmc";
1654 reg = <0x50000000 0x37c>; /* device IO registers */
R Sricharana46631c2014-06-26 12:55:31 +05301655 interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Franklin S Cooper Jr10ce2402016-05-04 12:43:55 -05001656 dmas = <&edma_xbar 4 0>;
1657 dma-names = "rxtx";
Minal Shahff66a3c2014-05-19 14:45:47 +05301658 gpmc,num-cs = <8>;
1659 gpmc,num-waitpins = <2>;
1660 #address-cells = <2>;
1661 #size-cells = <1>;
Roger Quadros488f270d2016-02-23 18:37:17 +02001662 interrupt-controller;
1663 #interrupt-cells = <2>;
Roger Quadros845b1a22016-04-07 13:25:31 +03001664 gpio-controller;
1665 #gpio-cells = <2>;
Minal Shahff66a3c2014-05-19 14:45:47 +05301666 status = "disabled";
1667 };
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001668
1669 atl: atl@4843c000 {
1670 compatible = "ti,dra7-atl";
1671 reg = <0x4843c000 0x3ff>;
1672 ti,hwmods = "atl";
1673 ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
1674 <&atl_clkin2_ck>, <&atl_clkin3_ck>;
Tero Kristo18395332017-12-08 17:17:29 +02001675 clocks = <&atl_clkctrl DRA7_ATL_CLKCTRL 26>;
Peter Ujfalusi2ca09452014-05-07 13:20:48 +03001676 clock-names = "fck";
1677 status = "disabled";
1678 };
Olof Johansson412a9bb2014-07-18 22:16:15 -07001679
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001680 mcasp1: mcasp@48460000 {
1681 compatible = "ti,dra7-mcasp-audio";
1682 ti,hwmods = "mcasp1";
1683 reg = <0x48460000 0x2000>,
1684 <0x45800000 0x1000>;
1685 reg-names = "mpu","dat";
1686 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
1687 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
1688 interrupt-names = "tx", "rx";
1689 dmas = <&edma_xbar 129 1>, <&edma_xbar 128 1>;
1690 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001691 clocks = <&ipu_clkctrl DRA7_MCASP1_CLKCTRL 22>, <&ipu_clkctrl DRA7_MCASP1_CLKCTRL 24>,
1692 <&ipu_clkctrl DRA7_MCASP1_CLKCTRL 28>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001693 clock-names = "fck", "ahclkx", "ahclkr";
1694 status = "disabled";
1695 };
1696
1697 mcasp2: mcasp@48464000 {
1698 compatible = "ti,dra7-mcasp-audio";
1699 ti,hwmods = "mcasp2";
1700 reg = <0x48464000 0x2000>,
1701 <0x45c00000 0x1000>;
1702 reg-names = "mpu","dat";
1703 interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
1704 <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
1705 interrupt-names = "tx", "rx";
1706 dmas = <&edma_xbar 131 1>, <&edma_xbar 130 1>;
1707 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001708 clocks = <&l4per_clkctrl DRA7_MCASP2_CLKCTRL 22>,
1709 <&l4per_clkctrl DRA7_MCASP2_CLKCTRL 24>,
1710 <&l4per_clkctrl DRA7_MCASP2_CLKCTRL 28>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001711 clock-names = "fck", "ahclkx", "ahclkr";
1712 status = "disabled";
1713 };
1714
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001715 mcasp3: mcasp@48468000 {
1716 compatible = "ti,dra7-mcasp-audio";
1717 ti,hwmods = "mcasp3";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001718 reg = <0x48468000 0x2000>,
1719 <0x46000000 0x1000>;
1720 reg-names = "mpu","dat";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001721 interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>,
1722 <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
1723 interrupt-names = "tx", "rx";
Misael Lopez Cruz0c92de22016-03-07 17:17:30 +02001724 dmas = <&edma_xbar 133 1>, <&edma_xbar 132 1>;
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001725 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001726 clocks = <&l4per_clkctrl DRA7_MCASP3_CLKCTRL 22>,
1727 <&l4per_clkctrl DRA7_MCASP3_CLKCTRL 24>;
Peter Ujfalusibf05c2c2015-11-12 09:32:57 +02001728 clock-names = "fck", "ahclkx";
Peter Ujfalusi026d4d62015-08-24 10:19:58 +03001729 status = "disabled";
1730 };
1731
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001732 mcasp4: mcasp@4846c000 {
1733 compatible = "ti,dra7-mcasp-audio";
1734 ti,hwmods = "mcasp4";
1735 reg = <0x4846c000 0x2000>,
1736 <0x48436000 0x1000>;
1737 reg-names = "mpu","dat";
1738 interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
1739 <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
1740 interrupt-names = "tx", "rx";
1741 dmas = <&edma_xbar 135 1>, <&edma_xbar 134 1>;
1742 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001743 clocks = <&l4per_clkctrl DRA7_MCASP4_CLKCTRL 22>,
1744 <&l4per_clkctrl DRA7_MCASP4_CLKCTRL 24>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001745 clock-names = "fck", "ahclkx";
1746 status = "disabled";
1747 };
1748
1749 mcasp5: mcasp@48470000 {
1750 compatible = "ti,dra7-mcasp-audio";
1751 ti,hwmods = "mcasp5";
1752 reg = <0x48470000 0x2000>,
1753 <0x4843a000 0x1000>;
1754 reg-names = "mpu","dat";
1755 interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>,
1756 <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
1757 interrupt-names = "tx", "rx";
1758 dmas = <&edma_xbar 137 1>, <&edma_xbar 136 1>;
1759 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001760 clocks = <&l4per_clkctrl DRA7_MCASP5_CLKCTRL 22>,
1761 <&l4per_clkctrl DRA7_MCASP5_CLKCTRL 24>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001762 clock-names = "fck", "ahclkx";
1763 status = "disabled";
1764 };
1765
1766 mcasp6: mcasp@48474000 {
1767 compatible = "ti,dra7-mcasp-audio";
1768 ti,hwmods = "mcasp6";
1769 reg = <0x48474000 0x2000>,
1770 <0x4844c000 0x1000>;
1771 reg-names = "mpu","dat";
1772 interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
1773 <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
1774 interrupt-names = "tx", "rx";
1775 dmas = <&edma_xbar 139 1>, <&edma_xbar 138 1>;
1776 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001777 clocks = <&l4per_clkctrl DRA7_MCASP6_CLKCTRL 22>,
1778 <&l4per_clkctrl DRA7_MCASP6_CLKCTRL 24>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001779 clock-names = "fck", "ahclkx";
1780 status = "disabled";
1781 };
1782
1783 mcasp7: mcasp@48478000 {
1784 compatible = "ti,dra7-mcasp-audio";
1785 ti,hwmods = "mcasp7";
1786 reg = <0x48478000 0x2000>,
1787 <0x48450000 0x1000>;
1788 reg-names = "mpu","dat";
1789 interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
1790 <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
1791 interrupt-names = "tx", "rx";
1792 dmas = <&edma_xbar 141 1>, <&edma_xbar 140 1>;
1793 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001794 clocks = <&l4per_clkctrl DRA7_MCASP7_CLKCTRL 22>,
1795 <&l4per_clkctrl DRA7_MCASP7_CLKCTRL 24>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001796 clock-names = "fck", "ahclkx";
1797 status = "disabled";
1798 };
1799
1800 mcasp8: mcasp@4847c000 {
1801 compatible = "ti,dra7-mcasp-audio";
1802 ti,hwmods = "mcasp8";
1803 reg = <0x4847c000 0x2000>,
1804 <0x48454000 0x1000>;
1805 reg-names = "mpu","dat";
1806 interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
1807 <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
1808 interrupt-names = "tx", "rx";
1809 dmas = <&edma_xbar 143 1>, <&edma_xbar 142 1>;
1810 dma-names = "tx", "rx";
Tero Kristo18395332017-12-08 17:17:29 +02001811 clocks = <&l4per_clkctrl DRA7_MCASP8_CLKCTRL 22>,
1812 <&l4per_clkctrl DRA7_MCASP8_CLKCTRL 24>;
Peter Ujfalusi296ea972016-03-07 17:17:37 +02001813 clock-names = "fck", "ahclkx";
1814 status = "disabled";
1815 };
1816
Marc Zyngier783d3182015-03-11 15:43:44 +00001817 crossbar_mpu: crossbar@4a002a48 {
R Sricharana46631c2014-06-26 12:55:31 +05301818 compatible = "ti,irq-crossbar";
1819 reg = <0x4a002a48 0x130>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001820 interrupt-controller;
Marc Zyngier7136d452015-03-11 15:43:49 +00001821 interrupt-parent = <&wakeupgen>;
Marc Zyngier783d3182015-03-11 15:43:44 +00001822 #interrupt-cells = <3>;
R Sricharana46631c2014-06-26 12:55:31 +05301823 ti,max-irqs = <160>;
1824 ti,max-crossbar-sources = <MAX_SOURCES>;
1825 ti,reg-size = <2>;
1826 ti,irqs-reserved = <0 1 2 3 5 6 131 132>;
1827 ti,irqs-skip = <10 133 139 140>;
1828 ti,irqs-safe-map = <0>;
1829 };
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301830
Vishal Mahaveerc263a5b2015-08-25 13:57:49 -05001831 mac: ethernet@48484000 {
Mugunthan V Ne2095312015-08-12 15:22:54 +05301832 compatible = "ti,dra7-cpsw","ti,cpsw";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301833 ti,hwmods = "gmac";
Tero Kristo18395332017-12-08 17:17:29 +02001834 clocks = <&gmac_main_clk>, <&l3init_clkctrl DRA7_GMAC_CLKCTRL 25>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301835 clock-names = "fck", "cpts";
1836 cpdma_channels = <8>;
1837 ale_entries = <1024>;
1838 bd_ram_size = <0x2000>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301839 mac_control = <0x20>;
1840 slaves = <2>;
1841 active_slave = <0>;
Grygorii Strashkoc0973382016-08-30 17:58:01 +03001842 cpts_clock_mult = <0x784CFE14>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301843 cpts_clock_shift = <29>;
1844 reg = <0x48484000 0x1000
1845 0x48485200 0x2E00>;
1846 #address-cells = <1>;
1847 #size-cells = <1>;
Mugunthan V N0f514e62016-03-07 01:41:22 -07001848
1849 /*
1850 * Do not allow gating of cpsw clock as workaround
1851 * for errata i877. Keeping internal clock disabled
1852 * causes the device switching characteristics
1853 * to degrade over time and eventually fail to meet
1854 * the data manual delay time/skew specs.
1855 */
1856 ti,no-idle;
1857
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301858 /*
1859 * rx_thresh_pend
1860 * rx_pend
1861 * tx_pend
1862 * misc_pend
1863 */
1864 interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
1865 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
1866 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
1867 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
1868 ranges;
Mugunthan V Na084e132015-09-21 15:56:52 +05301869 syscon = <&scm_conf>;
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301870 status = "disabled";
1871
1872 davinci_mdio: mdio@48485000 {
Grygorii Strashko9efd1a62016-06-24 21:23:55 +03001873 compatible = "ti,cpsw-mdio","ti,davinci_mdio";
Mugunthan V Nef9c5b62014-10-21 15:31:00 +05301874 #address-cells = <1>;
1875 #size-cells = <0>;
1876 ti,hwmods = "davinci_mdio";
1877 bus_freq = <1000000>;
1878 reg = <0x48485000 0x100>;
1879 };
1880
1881 cpsw_emac0: slave@48480200 {
1882 /* Filled in by U-Boot */
1883 mac-address = [ 00 00 00 00 00 00 ];
1884 };
1885
1886 cpsw_emac1: slave@48480300 {
1887 /* Filled in by U-Boot */
1888 mac-address = [ 00 00 00 00 00 00 ];
1889 };
1890
1891 phy_sel: cpsw-phy-sel@4a002554 {
1892 compatible = "ti,dra7xx-cpsw-phy-sel";
1893 reg= <0x4a002554 0x4>;
1894 reg-names = "gmii-sel";
1895 };
1896 };
1897
Roger Quadros9ec49b92014-08-15 16:08:36 +03001898 dcan1: can@481cc000 {
1899 compatible = "ti,dra7-d_can";
1900 ti,hwmods = "dcan1";
1901 reg = <0x4ae3c000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001902 syscon-raminit = <&scm_conf 0x558 0>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001903 interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
Tero Kristo18395332017-12-08 17:17:29 +02001904 clocks = <&wkupaon_clkctrl DRA7_DCAN1_CLKCTRL 24>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001905 status = "disabled";
1906 };
1907
1908 dcan2: can@481d0000 {
1909 compatible = "ti,dra7-d_can";
1910 ti,hwmods = "dcan2";
1911 reg = <0x48480000 0x2000>;
Tero Kristod9195012015-02-12 11:37:13 +02001912 syscon-raminit = <&scm_conf 0x558 1>;
Roger Quadros9ec49b92014-08-15 16:08:36 +03001913 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
1914 clocks = <&sys_clkin1>;
1915 status = "disabled";
1916 };
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301917
1918 dss: dss@58000000 {
1919 compatible = "ti,dra7-dss";
1920 /* 'reg' defined in dra72x.dtsi and dra74x.dtsi */
1921 /* 'clocks' defined in dra72x.dtsi and dra74x.dtsi */
1922 status = "disabled";
1923 ti,hwmods = "dss_core";
1924 /* CTRL_CORE_DSS_PLL_CONTROL */
1925 syscon-pll-ctrl = <&scm_conf 0x538>;
1926 #address-cells = <1>;
1927 #size-cells = <1>;
1928 ranges;
1929
1930 dispc@58001000 {
1931 compatible = "ti,dra7-dispc";
1932 reg = <0x58001000 0x1000>;
1933 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
1934 ti,hwmods = "dss_dispc";
Tero Kristo18395332017-12-08 17:17:29 +02001935 clocks = <&dss_clkctrl DRA7_DSS_CORE_CLKCTRL 8>;
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301936 clock-names = "fck";
1937 /* CTRL_CORE_SMA_SW_1 */
1938 syscon-pol = <&scm_conf 0x534>;
1939 };
1940
1941 hdmi: encoder@58060000 {
1942 compatible = "ti,dra7-hdmi";
1943 reg = <0x58040000 0x200>,
1944 <0x58040200 0x80>,
1945 <0x58040300 0x80>,
1946 <0x58060000 0x19000>;
1947 reg-names = "wp", "pll", "phy", "core";
1948 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
1949 status = "disabled";
1950 ti,hwmods = "dss_hdmi";
Tero Kristo18395332017-12-08 17:17:29 +02001951 clocks = <&dss_clkctrl DRA7_DSS_CORE_CLKCTRL 9>,
1952 <&dss_clkctrl DRA7_DSS_CORE_CLKCTRL 10>;
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301953 clock-names = "fck", "sys_clk";
Peter Ujfalusi12397382017-11-08 14:53:23 +02001954 dmas = <&sdma_xbar 76>;
1955 dma-names = "audio_tx";
Tomi Valkeinen95c1cd12014-07-09 16:15:18 +05301956 };
1957 };
Vignesh R34370142016-05-03 10:56:55 -05001958
1959 epwmss0: epwmss@4843e000 {
1960 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1961 reg = <0x4843e000 0x30>;
1962 ti,hwmods = "epwmss0";
1963 #address-cells = <1>;
1964 #size-cells = <1>;
1965 status = "disabled";
1966 ranges;
1967
1968 ehrpwm0: pwm@4843e200 {
1969 compatible = "ti,dra746-ehrpwm",
1970 "ti,am3352-ehrpwm";
1971 #pwm-cells = <3>;
1972 reg = <0x4843e200 0x80>;
1973 clocks = <&ehrpwm0_tbclk>, <&l4_root_clk_div>;
1974 clock-names = "tbclk", "fck";
1975 status = "disabled";
1976 };
1977
1978 ecap0: ecap@4843e100 {
1979 compatible = "ti,dra746-ecap",
1980 "ti,am3352-ecap";
1981 #pwm-cells = <3>;
1982 reg = <0x4843e100 0x80>;
1983 clocks = <&l4_root_clk_div>;
1984 clock-names = "fck";
1985 status = "disabled";
1986 };
1987 };
1988
1989 epwmss1: epwmss@48440000 {
1990 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
1991 reg = <0x48440000 0x30>;
1992 ti,hwmods = "epwmss1";
1993 #address-cells = <1>;
1994 #size-cells = <1>;
1995 status = "disabled";
1996 ranges;
1997
1998 ehrpwm1: pwm@48440200 {
1999 compatible = "ti,dra746-ehrpwm",
2000 "ti,am3352-ehrpwm";
2001 #pwm-cells = <3>;
2002 reg = <0x48440200 0x80>;
2003 clocks = <&ehrpwm1_tbclk>, <&l4_root_clk_div>;
2004 clock-names = "tbclk", "fck";
2005 status = "disabled";
2006 };
2007
2008 ecap1: ecap@48440100 {
2009 compatible = "ti,dra746-ecap",
2010 "ti,am3352-ecap";
2011 #pwm-cells = <3>;
2012 reg = <0x48440100 0x80>;
2013 clocks = <&l4_root_clk_div>;
2014 clock-names = "fck";
2015 status = "disabled";
2016 };
2017 };
2018
2019 epwmss2: epwmss@48442000 {
2020 compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
2021 reg = <0x48442000 0x30>;
2022 ti,hwmods = "epwmss2";
2023 #address-cells = <1>;
2024 #size-cells = <1>;
2025 status = "disabled";
2026 ranges;
2027
2028 ehrpwm2: pwm@48442200 {
2029 compatible = "ti,dra746-ehrpwm",
2030 "ti,am3352-ehrpwm";
2031 #pwm-cells = <3>;
2032 reg = <0x48442200 0x80>;
2033 clocks = <&ehrpwm2_tbclk>, <&l4_root_clk_div>;
2034 clock-names = "tbclk", "fck";
2035 status = "disabled";
2036 };
2037
2038 ecap2: ecap@48442100 {
2039 compatible = "ti,dra746-ecap",
2040 "ti,am3352-ecap";
2041 #pwm-cells = <3>;
2042 reg = <0x48442100 0x80>;
2043 clocks = <&l4_root_clk_div>;
2044 clock-names = "fck";
2045 status = "disabled";
2046 };
2047 };
Joel Fernandesbac9d0b2016-06-01 12:06:41 +03002048
Joel Fernandese7fd15c2016-06-01 12:06:42 +03002049 aes1: aes@4b500000 {
2050 compatible = "ti,omap4-aes";
2051 ti,hwmods = "aes1";
2052 reg = <0x4b500000 0xa0>;
2053 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
2054 dmas = <&edma_xbar 111 0>, <&edma_xbar 110 0>;
2055 dma-names = "tx", "rx";
2056 clocks = <&l3_iclk_div>;
2057 clock-names = "fck";
2058 };
2059
2060 aes2: aes@4b700000 {
2061 compatible = "ti,omap4-aes";
2062 ti,hwmods = "aes2";
2063 reg = <0x4b700000 0xa0>;
2064 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
2065 dmas = <&edma_xbar 114 0>, <&edma_xbar 113 0>;
2066 dma-names = "tx", "rx";
2067 clocks = <&l3_iclk_div>;
2068 clock-names = "fck";
2069 };
2070
Joel Fernandesbac9d0b2016-06-01 12:06:41 +03002071 des: des@480a5000 {
2072 compatible = "ti,omap4-des";
2073 ti,hwmods = "des";
2074 reg = <0x480a5000 0xa0>;
2075 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
2076 dmas = <&sdma_xbar 117>, <&sdma_xbar 116>;
2077 dma-names = "tx", "rx";
2078 clocks = <&l3_iclk_div>;
2079 clock-names = "fck";
2080 };
Lokesh Vutlada346092016-06-01 12:06:43 +03002081
2082 sham: sham@53100000 {
2083 compatible = "ti,omap5-sham";
2084 ti,hwmods = "sham";
2085 reg = <0x4b101000 0x300>;
2086 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
2087 dmas = <&edma_xbar 119 0>;
2088 dma-names = "rx";
2089 clocks = <&l3_iclk_div>;
2090 clock-names = "fck";
2091 };
Lokesh Vutla610e9c42016-06-01 12:06:44 +03002092
2093 rng: rng@48090000 {
2094 compatible = "ti,omap4-rng";
2095 ti,hwmods = "rng";
2096 reg = <0x48090000 0x2000>;
2097 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
2098 clocks = <&l3_iclk_div>;
2099 clock-names = "fck";
2100 };
Dave Gerlachdbef1962017-12-19 09:24:20 -06002101
2102 opp_supply_mpu: opp-supply@4a003b20 {
2103 compatible = "ti,omap5-opp-supply";
2104 reg = <0x4a003b20 0xc>;
2105 ti,efuse-settings = <
2106 /* uV offset */
2107 1060000 0x0
2108 1160000 0x4
2109 1210000 0x8
2110 >;
2111 ti,absolute-max-voltage-uv = <1500000>;
2112 };
2113
R Sricharan6e58b8f2013-08-14 19:08:20 +05302114 };
Keerthyf7397ed2015-03-23 14:39:38 -05002115
2116 thermal_zones: thermal-zones {
2117 #include "omap4-cpu-thermal.dtsi"
2118 #include "omap5-gpu-thermal.dtsi"
2119 #include "omap5-core-thermal.dtsi"
Keerthy667f2592016-02-08 14:46:30 +05302120 #include "dra7-dspeve-thermal.dtsi"
2121 #include "dra7-iva-thermal.dtsi"
Keerthyf7397ed2015-03-23 14:39:38 -05002122 };
2123
2124};
2125
2126&cpu_thermal {
2127 polling-delay = <500>; /* milliseconds */
Keerthyfb51ae02017-03-09 13:35:56 +05302128 coefficients = <0 2000>;
2129};
2130
2131&gpu_thermal {
2132 coefficients = <0 2000>;
2133};
2134
2135&core_thermal {
2136 coefficients = <0 2000>;
2137};
2138
2139&dspeve_thermal {
2140 coefficients = <0 2000>;
2141};
2142
2143&iva_thermal {
2144 coefficients = <0 2000>;
R Sricharan6e58b8f2013-08-14 19:08:20 +05302145};
Tero Kristoee6c7502013-07-18 17:18:33 +03002146
Ravikumar Kattekolabca52382017-05-17 06:51:38 -07002147&cpu_crit {
2148 temperature = <120000>; /* milli Celsius */
2149};
2150
Tero Kristo18395332017-12-08 17:17:29 +02002151#include "dra7xx-clocks.dtsi"
Arnd Bergmann1585defa2018-01-23 10:19:46 +01002152
Ravikumar Kattekola64c358b2018-01-11 21:45:39 +05302153&core_crit {
2154 temperature = <120000>; /* milli Celsius */
2155};
2156
2157&gpu_crit {
2158 temperature = <120000>; /* milli Celsius */
2159};
2160
2161&dspeve_crit {
2162 temperature = <120000>; /* milli Celsius */
2163};
2164
2165&iva_crit {
2166 temperature = <120000>; /* milli Celsius */
2167};