blob: 7dfe36262d7f6446bc9d048b8d2e3e8810fd59d5 [file] [log] [blame]
R Sricharan6b5de092012-05-10 19:46:00 +05301/*
2 * Copyright (C) 2012 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
Florian Vaussard6d624ea2013-05-31 14:32:56 +020010#include <dt-bindings/gpio/gpio.h>
Florian Vaussard8fea7d52013-05-31 14:32:57 +020011#include <dt-bindings/interrupt-controller/arm-gic.h>
Florian Vaussardbcd3cca2013-05-31 14:32:59 +020012#include <dt-bindings/pinctrl/omap.h>
R Sricharan6b5de092012-05-10 19:46:00 +053013
Florian Vaussard98ef79572013-05-31 14:32:55 +020014#include "skeleton.dtsi"
R Sricharan6b5de092012-05-10 19:46:00 +053015
16/ {
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053017 #address-cells = <1>;
18 #size-cells = <1>;
19
R Sricharan6b5de092012-05-10 19:46:00 +053020 compatible = "ti,omap5";
21 interrupt-parent = <&gic>;
22
23 aliases {
Nishanth Menon20b80942013-10-16 15:21:03 -050024 i2c0 = &i2c1;
25 i2c1 = &i2c2;
26 i2c2 = &i2c3;
27 i2c3 = &i2c4;
28 i2c4 = &i2c5;
R Sricharan6b5de092012-05-10 19:46:00 +053029 serial0 = &uart1;
30 serial1 = &uart2;
31 serial2 = &uart3;
32 serial3 = &uart4;
33 serial4 = &uart5;
34 serial5 = &uart6;
35 };
36
37 cpus {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010038 #address-cells = <1>;
39 #size-cells = <0>;
40
Nishanth Menonb8981d72013-10-16 10:39:04 -050041 cpu0: cpu@0 {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010042 device_type = "cpu";
R Sricharan6b5de092012-05-10 19:46:00 +053043 compatible = "arm,cortex-a15";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010044 reg = <0x0>;
J Keerthy6c248942013-10-16 10:39:06 -050045
46 operating-points = <
47 /* kHz uV */
48 500000 880000
49 1000000 1060000
50 1500000 1250000
51 >;
R Sricharan6b5de092012-05-10 19:46:00 +053052 };
53 cpu@1 {
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010054 device_type = "cpu";
R Sricharan6b5de092012-05-10 19:46:00 +053055 compatible = "arm,cortex-a15";
Lorenzo Pieralisieeb25fd2013-04-18 18:35:59 +010056 reg = <0x1>;
R Sricharan6b5de092012-05-10 19:46:00 +053057 };
58 };
59
Eduardo Valentin1b761fc52013-08-16 12:01:02 -040060 thermal-zones {
61 #include "omap4-cpu-thermal.dtsi"
62 #include "omap5-gpu-thermal.dtsi"
63 #include "omap5-core-thermal.dtsi"
64 };
65
Santosh Shilimkarb45ccc42013-02-10 21:40:19 +053066 timer {
67 compatible = "arm,armv7-timer";
Florian Vaussard8fea7d52013-05-31 14:32:57 +020068 /* PPI secure/nonsecure IRQ */
69 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
70 <GIC_PPI 14 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
71 <GIC_PPI 11 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
72 <GIC_PPI 10 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>;
Santosh Shilimkarb45ccc42013-02-10 21:40:19 +053073 };
74
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053075 gic: interrupt-controller@48211000 {
76 compatible = "arm,cortex-a15-gic";
77 interrupt-controller;
78 #interrupt-cells = <3>;
79 reg = <0x48211000 0x1000>,
Santosh Shilimkar0129c162013-02-19 17:29:24 +053080 <0x48212000 0x1000>,
81 <0x48214000 0x2000>,
82 <0x48216000 0x2000>;
Santosh Shilimkarba1829b2013-02-12 15:57:55 +053083 };
84
R Sricharan6b5de092012-05-10 19:46:00 +053085 /*
86 * The soc node represents the soc top level view. It is uses for IPs
87 * that are not memory mapped in the MPU view or for the MPU itself.
88 */
89 soc {
90 compatible = "ti,omap-infra";
91 mpu {
92 compatible = "ti,omap5-mpu";
93 ti,hwmods = "mpu";
94 };
95 };
96
97 /*
98 * XXX: Use a flat representation of the OMAP3 interconnect.
99 * The real OMAP interconnect network is quite complex.
100 * Since that will not bring real advantage to represent that in DT for
101 * the moment, just use a fake OCP bus entry to represent the whole bus
102 * hierarchy.
103 */
104 ocp {
105 compatible = "ti,omap4-l3-noc", "simple-bus";
106 #address-cells = <1>;
107 #size-cells = <1>;
108 ranges;
109 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
Santosh Shilimkar20a60ea2013-02-26 17:36:14 +0530110 reg = <0x44000000 0x2000>,
111 <0x44800000 0x3000>,
112 <0x45000000 0x4000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200113 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
114 <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530115
Jon Hunter3b3132f2012-11-01 09:12:23 -0500116 counter32k: counter@4ae04000 {
117 compatible = "ti,omap-counter32k";
118 reg = <0x4ae04000 0x40>;
119 ti,hwmods = "counter_32k";
120 };
121
Peter Ujfalusi5da6a2d2012-10-04 14:57:27 +0300122 omap5_pmx_core: pinmux@4a002840 {
123 compatible = "ti,omap4-padconf", "pinctrl-single";
124 reg = <0x4a002840 0x01b6>;
125 #address-cells = <1>;
126 #size-cells = <0>;
127 pinctrl-single,register-width = <16>;
128 pinctrl-single,function-mask = <0x7fff>;
129 };
130 omap5_pmx_wkup: pinmux@4ae0c840 {
131 compatible = "ti,omap4-padconf", "pinctrl-single";
132 reg = <0x4ae0c840 0x0038>;
133 #address-cells = <1>;
134 #size-cells = <0>;
135 pinctrl-single,register-width = <16>;
136 pinctrl-single,function-mask = <0x7fff>;
137 };
138
Jon Hunter2c2dc542012-04-26 13:47:59 -0500139 sdma: dma-controller@4a056000 {
140 compatible = "ti,omap4430-sdma";
141 reg = <0x4a056000 0x1000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200142 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
143 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
144 <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
145 <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500146 #dma-cells = <1>;
147 #dma-channels = <32>;
148 #dma-requests = <127>;
149 };
150
R Sricharan6b5de092012-05-10 19:46:00 +0530151 gpio1: gpio@4ae10000 {
152 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200153 reg = <0x4ae10000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200154 interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530155 ti,hwmods = "gpio1";
Jon Huntere4b9b9f2013-04-04 15:16:16 -0500156 ti,gpio-always-on;
R Sricharan6b5de092012-05-10 19:46:00 +0530157 gpio-controller;
158 #gpio-cells = <2>;
159 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600160 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530161 };
162
163 gpio2: gpio@48055000 {
164 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200165 reg = <0x48055000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200166 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530167 ti,hwmods = "gpio2";
168 gpio-controller;
169 #gpio-cells = <2>;
170 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600171 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530172 };
173
174 gpio3: gpio@48057000 {
175 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200176 reg = <0x48057000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200177 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530178 ti,hwmods = "gpio3";
179 gpio-controller;
180 #gpio-cells = <2>;
181 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600182 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530183 };
184
185 gpio4: gpio@48059000 {
186 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200187 reg = <0x48059000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200188 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530189 ti,hwmods = "gpio4";
190 gpio-controller;
191 #gpio-cells = <2>;
192 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600193 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530194 };
195
196 gpio5: gpio@4805b000 {
197 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200198 reg = <0x4805b000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200199 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530200 ti,hwmods = "gpio5";
201 gpio-controller;
202 #gpio-cells = <2>;
203 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600204 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530205 };
206
207 gpio6: gpio@4805d000 {
208 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200209 reg = <0x4805d000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200210 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530211 ti,hwmods = "gpio6";
212 gpio-controller;
213 #gpio-cells = <2>;
214 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600215 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530216 };
217
218 gpio7: gpio@48051000 {
219 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200220 reg = <0x48051000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200221 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530222 ti,hwmods = "gpio7";
223 gpio-controller;
224 #gpio-cells = <2>;
225 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600226 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530227 };
228
229 gpio8: gpio@48053000 {
230 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200231 reg = <0x48053000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200232 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530233 ti,hwmods = "gpio8";
234 gpio-controller;
235 #gpio-cells = <2>;
236 interrupt-controller;
Jon Hunterff5c9052013-03-07 15:44:39 -0600237 #interrupt-cells = <2>;
R Sricharan6b5de092012-05-10 19:46:00 +0530238 };
239
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600240 gpmc: gpmc@50000000 {
241 compatible = "ti,omap4430-gpmc";
242 reg = <0x50000000 0x1000>;
243 #address-cells = <2>;
244 #size-cells = <1>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200245 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunter1c7dbb52013-02-22 15:33:31 -0600246 gpmc,num-cs = <8>;
247 gpmc,num-waitpins = <4>;
248 ti,hwmods = "gpmc";
249 };
250
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530251 i2c1: i2c@48070000 {
252 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200253 reg = <0x48070000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200254 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530255 #address-cells = <1>;
256 #size-cells = <0>;
257 ti,hwmods = "i2c1";
258 };
259
260 i2c2: i2c@48072000 {
261 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200262 reg = <0x48072000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200263 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530264 #address-cells = <1>;
265 #size-cells = <0>;
266 ti,hwmods = "i2c2";
267 };
268
269 i2c3: i2c@48060000 {
270 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200271 reg = <0x48060000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200272 interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530273 #address-cells = <1>;
274 #size-cells = <0>;
275 ti,hwmods = "i2c3";
276 };
277
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200278 i2c4: i2c@4807a000 {
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530279 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200280 reg = <0x4807a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200281 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530282 #address-cells = <1>;
283 #size-cells = <0>;
284 ti,hwmods = "i2c4";
285 };
286
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200287 i2c5: i2c@4807c000 {
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530288 compatible = "ti,omap4-i2c";
Sebastien Guiriecd7118bb2012-10-23 10:37:10 +0200289 reg = <0x4807c000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200290 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530291 #address-cells = <1>;
292 #size-cells = <0>;
293 ti,hwmods = "i2c5";
294 };
295
Suman Annafe0e09e2013-10-10 16:15:34 -0500296 hwspinlock: spinlock@4a0f6000 {
297 compatible = "ti,omap4-hwspinlock";
298 reg = <0x4a0f6000 0x1000>;
299 ti,hwmods = "spinlock";
300 };
301
Felipe Balbi43286b12013-02-13 14:58:36 +0530302 mcspi1: spi@48098000 {
303 compatible = "ti,omap4-mcspi";
304 reg = <0x48098000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200305 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530306 #address-cells = <1>;
307 #size-cells = <0>;
308 ti,hwmods = "mcspi1";
309 ti,spi-num-cs = <4>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500310 dmas = <&sdma 35>,
311 <&sdma 36>,
312 <&sdma 37>,
313 <&sdma 38>,
314 <&sdma 39>,
315 <&sdma 40>,
316 <&sdma 41>,
317 <&sdma 42>;
318 dma-names = "tx0", "rx0", "tx1", "rx1",
319 "tx2", "rx2", "tx3", "rx3";
Felipe Balbi43286b12013-02-13 14:58:36 +0530320 };
321
322 mcspi2: spi@4809a000 {
323 compatible = "ti,omap4-mcspi";
324 reg = <0x4809a000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200325 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530326 #address-cells = <1>;
327 #size-cells = <0>;
328 ti,hwmods = "mcspi2";
329 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500330 dmas = <&sdma 43>,
331 <&sdma 44>,
332 <&sdma 45>,
333 <&sdma 46>;
334 dma-names = "tx0", "rx0", "tx1", "rx1";
Felipe Balbi43286b12013-02-13 14:58:36 +0530335 };
336
337 mcspi3: spi@480b8000 {
338 compatible = "ti,omap4-mcspi";
339 reg = <0x480b8000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200340 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530341 #address-cells = <1>;
342 #size-cells = <0>;
343 ti,hwmods = "mcspi3";
344 ti,spi-num-cs = <2>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500345 dmas = <&sdma 15>, <&sdma 16>;
346 dma-names = "tx0", "rx0";
Felipe Balbi43286b12013-02-13 14:58:36 +0530347 };
348
349 mcspi4: spi@480ba000 {
350 compatible = "ti,omap4-mcspi";
351 reg = <0x480ba000 0x200>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200352 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
Felipe Balbi43286b12013-02-13 14:58:36 +0530353 #address-cells = <1>;
354 #size-cells = <0>;
355 ti,hwmods = "mcspi4";
356 ti,spi-num-cs = <1>;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500357 dmas = <&sdma 70>, <&sdma 71>;
358 dma-names = "tx0", "rx0";
Felipe Balbi43286b12013-02-13 14:58:36 +0530359 };
360
R Sricharan6b5de092012-05-10 19:46:00 +0530361 uart1: serial@4806a000 {
362 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200363 reg = <0x4806a000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200364 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530365 ti,hwmods = "uart1";
366 clock-frequency = <48000000>;
367 };
368
369 uart2: serial@4806c000 {
370 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200371 reg = <0x4806c000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200372 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530373 ti,hwmods = "uart2";
374 clock-frequency = <48000000>;
375 };
376
377 uart3: serial@48020000 {
378 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200379 reg = <0x48020000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200380 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530381 ti,hwmods = "uart3";
382 clock-frequency = <48000000>;
383 };
384
385 uart4: serial@4806e000 {
386 compatible = "ti,omap4-uart";
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200387 reg = <0x4806e000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200388 interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530389 ti,hwmods = "uart4";
390 clock-frequency = <48000000>;
391 };
392
393 uart5: serial@48066000 {
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200394 compatible = "ti,omap4-uart";
395 reg = <0x48066000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200396 interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530397 ti,hwmods = "uart5";
398 clock-frequency = <48000000>;
399 };
400
401 uart6: serial@48068000 {
Sebastien Guiriec8e80f662012-10-23 10:37:11 +0200402 compatible = "ti,omap4-uart";
403 reg = <0x48068000 0x100>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200404 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
R Sricharan6b5de092012-05-10 19:46:00 +0530405 ti,hwmods = "uart6";
406 clock-frequency = <48000000>;
407 };
Balaji T K5dd18b02012-08-07 12:48:21 +0530408
409 mmc1: mmc@4809c000 {
410 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200411 reg = <0x4809c000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200412 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530413 ti,hwmods = "mmc1";
414 ti,dual-volt;
415 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500416 dmas = <&sdma 61>, <&sdma 62>;
417 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530418 };
419
420 mmc2: mmc@480b4000 {
421 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200422 reg = <0x480b4000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200423 interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530424 ti,hwmods = "mmc2";
425 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500426 dmas = <&sdma 47>, <&sdma 48>;
427 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530428 };
429
430 mmc3: mmc@480ad000 {
431 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200432 reg = <0x480ad000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200433 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530434 ti,hwmods = "mmc3";
435 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500436 dmas = <&sdma 77>, <&sdma 78>;
437 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530438 };
439
440 mmc4: mmc@480d1000 {
441 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200442 reg = <0x480d1000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200443 interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530444 ti,hwmods = "mmc4";
445 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500446 dmas = <&sdma 57>, <&sdma 58>;
447 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530448 };
449
450 mmc5: mmc@480d5000 {
451 compatible = "ti,omap4-hsmmc";
Sebastien Guiriec9a642362012-10-23 10:37:12 +0200452 reg = <0x480d5000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200453 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
Balaji T K5dd18b02012-08-07 12:48:21 +0530454 ti,hwmods = "mmc5";
455 ti,needs-special-reset;
Jon Hunter2c2dc542012-04-26 13:47:59 -0500456 dmas = <&sdma 59>, <&sdma 60>;
457 dma-names = "tx", "rx";
Balaji T K5dd18b02012-08-07 12:48:21 +0530458 };
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530459
460 keypad: keypad@4ae1c000 {
461 compatible = "ti,omap4-keypad";
Santosh Shilimkar8cc8b892013-01-23 19:53:30 +0530462 reg = <0x4ae1c000 0x400>;
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530463 ti,hwmods = "kbd";
464 };
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300465
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300466 mcpdm: mcpdm@40132000 {
467 compatible = "ti,omap4-mcpdm";
468 reg = <0x40132000 0x7f>, /* MPU private access */
469 <0x49032000 0x7f>; /* L3 Interconnect */
470 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200471 interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300472 ti,hwmods = "mcpdm";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100473 dmas = <&sdma 65>,
474 <&sdma 66>;
475 dma-names = "up_link", "dn_link";
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300476 };
477
478 dmic: dmic@4012e000 {
479 compatible = "ti,omap4-dmic";
480 reg = <0x4012e000 0x7f>, /* MPU private access */
481 <0x4902e000 0x7f>; /* L3 Interconnect */
482 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200483 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300484 ti,hwmods = "dmic";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100485 dmas = <&sdma 67>;
486 dma-names = "up_link";
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300487 };
488
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300489 mcbsp1: mcbsp@40122000 {
490 compatible = "ti,omap4-mcbsp";
491 reg = <0x40122000 0xff>, /* MPU private access */
492 <0x49022000 0xff>; /* L3 Interconnect */
493 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200494 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300495 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300496 ti,buffer-size = <128>;
497 ti,hwmods = "mcbsp1";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100498 dmas = <&sdma 33>,
499 <&sdma 34>;
500 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300501 };
502
503 mcbsp2: mcbsp@40124000 {
504 compatible = "ti,omap4-mcbsp";
505 reg = <0x40124000 0xff>, /* MPU private access */
506 <0x49024000 0xff>; /* L3 Interconnect */
507 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200508 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300509 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300510 ti,buffer-size = <128>;
511 ti,hwmods = "mcbsp2";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100512 dmas = <&sdma 17>,
513 <&sdma 18>;
514 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300515 };
516
517 mcbsp3: mcbsp@40126000 {
518 compatible = "ti,omap4-mcbsp";
519 reg = <0x40126000 0xff>, /* MPU private access */
520 <0x49026000 0xff>; /* L3 Interconnect */
521 reg-names = "mpu", "dma";
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200522 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300523 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300524 ti,buffer-size = <128>;
525 ti,hwmods = "mcbsp3";
Sebastien Guiriec4e4ead72013-03-11 08:50:21 +0100526 dmas = <&sdma 19>,
527 <&sdma 20>;
528 dma-names = "tx", "rx";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300529 };
Jon Hunterdf692a92012-11-01 09:09:51 -0500530
531 timer1: timer@4ae18000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500532 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500533 reg = <0x4ae18000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200534 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500535 ti,hwmods = "timer1";
536 ti,timer-alwon;
537 };
538
539 timer2: timer@48032000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500540 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500541 reg = <0x48032000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200542 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500543 ti,hwmods = "timer2";
544 };
545
546 timer3: timer@48034000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500547 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500548 reg = <0x48034000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200549 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500550 ti,hwmods = "timer3";
551 };
552
553 timer4: timer@48036000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500554 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500555 reg = <0x48036000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200556 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500557 ti,hwmods = "timer4";
558 };
559
560 timer5: timer@40138000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500561 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500562 reg = <0x40138000 0x80>,
563 <0x49038000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200564 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500565 ti,hwmods = "timer5";
566 ti,timer-dsp;
Suman Anna83416132013-04-17 18:23:15 -0500567 ti,timer-pwm;
Jon Hunterdf692a92012-11-01 09:09:51 -0500568 };
569
570 timer6: timer@4013a000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500571 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500572 reg = <0x4013a000 0x80>,
573 <0x4903a000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200574 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500575 ti,hwmods = "timer6";
576 ti,timer-dsp;
577 ti,timer-pwm;
578 };
579
580 timer7: timer@4013c000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500581 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500582 reg = <0x4013c000 0x80>,
583 <0x4903c000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200584 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500585 ti,hwmods = "timer7";
586 ti,timer-dsp;
587 };
588
589 timer8: timer@4013e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500590 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500591 reg = <0x4013e000 0x80>,
592 <0x4903e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200593 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500594 ti,hwmods = "timer8";
595 ti,timer-dsp;
596 ti,timer-pwm;
597 };
598
599 timer9: timer@4803e000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500600 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500601 reg = <0x4803e000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200602 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500603 ti,hwmods = "timer9";
Suman Anna83416132013-04-17 18:23:15 -0500604 ti,timer-pwm;
Jon Hunterdf692a92012-11-01 09:09:51 -0500605 };
606
607 timer10: timer@48086000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500608 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500609 reg = <0x48086000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200610 interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500611 ti,hwmods = "timer10";
Suman Anna83416132013-04-17 18:23:15 -0500612 ti,timer-pwm;
Jon Hunterdf692a92012-11-01 09:09:51 -0500613 };
614
615 timer11: timer@48088000 {
Jon Hunter002e1ec2013-03-19 12:38:18 -0500616 compatible = "ti,omap5430-timer";
Jon Hunterdf692a92012-11-01 09:09:51 -0500617 reg = <0x48088000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200618 interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
Jon Hunterdf692a92012-11-01 09:09:51 -0500619 ti,hwmods = "timer11";
620 ti,timer-pwm;
621 };
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530622
Lokesh Vutla55452192013-02-27 11:54:45 +0530623 wdt2: wdt@4ae14000 {
624 compatible = "ti,omap5-wdt", "ti,omap3-wdt";
625 reg = <0x4ae14000 0x80>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200626 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Lokesh Vutla55452192013-02-27 11:54:45 +0530627 ti,hwmods = "wd_timer2";
628 };
629
Lee Jones8906d652013-07-22 11:52:37 +0100630 emif1: emif@4c000000 {
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530631 compatible = "ti,emif-4d5";
632 ti,hwmods = "emif1";
Rajendra Nayakf12ecbe2013-10-15 12:37:50 +0530633 ti,no-idle-on-init;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530634 phy-type = <2>; /* DDR PHY type: Intelli PHY */
635 reg = <0x4c000000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200636 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530637 hw-caps-read-idle-ctrl;
638 hw-caps-ll-interface;
639 hw-caps-temp-alert;
640 };
641
Lee Jones8906d652013-07-22 11:52:37 +0100642 emif2: emif@4d000000 {
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530643 compatible = "ti,emif-4d5";
644 ti,hwmods = "emif2";
Rajendra Nayakf12ecbe2013-10-15 12:37:50 +0530645 ti,no-idle-on-init;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530646 phy-type = <2>; /* DDR PHY type: Intelli PHY */
647 reg = <0x4d000000 0x400>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200648 interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
Lokesh Vutlae6900dd2012-11-05 18:22:51 +0530649 hw-caps-read-idle-ctrl;
650 hw-caps-ll-interface;
651 hw-caps-temp-alert;
652 };
Kishon Vijay Abraham Ifedc4282013-03-07 19:05:17 +0530653
Roger Quadrosb297c292013-10-03 18:12:37 +0300654 omap_control_usb2phy: control-phy@4a002300 {
655 compatible = "ti,control-phy-usb2";
656 reg = <0x4a002300 0x4>;
657 reg-names = "power";
658 };
659
660 omap_control_usb3phy: control-phy@4a002370 {
661 compatible = "ti,control-phy-pipe3";
662 reg = <0x4a002370 0x4>;
663 reg-names = "power";
Kishon Vijay Abraham Ifedc4282013-03-07 19:05:17 +0530664 };
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530665
Felipe Balbie3a412c2013-08-21 20:01:32 +0530666 usb3: omap_dwc3@4a020000 {
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530667 compatible = "ti,dwc3";
668 ti,hwmods = "usb_otg_ss";
Felipe Balbi6f61ee22013-08-21 20:01:30 +0530669 reg = <0x4a020000 0x10000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200670 interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530671 #address-cells = <1>;
672 #size-cells = <1>;
673 utmi-mode = <2>;
674 ranges;
675 dwc3@4a030000 {
Felipe Balbi22a5aa12013-07-02 21:20:24 +0300676 compatible = "snps,dwc3";
Felipe Balbi6f61ee22013-08-21 20:01:30 +0530677 reg = <0x4a030000 0x10000>;
Florian Vaussard8fea7d52013-05-31 14:32:57 +0200678 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530679 usb-phy = <&usb2_phy>, <&usb3_phy>;
George Cherianc47ee6e2013-10-10 16:19:54 +0530680 dr_mode = "peripheral";
Kishon Vijay Abraham I72f6f952013-03-07 19:05:20 +0530681 tx-fifo-resize;
682 };
683 };
684
Felipe Balbib6731f72013-08-21 20:01:31 +0530685 ocp2scp@4a080000 {
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530686 compatible = "ti,omap-ocp2scp";
687 #address-cells = <1>;
688 #size-cells = <1>;
Felipe Balbib6731f72013-08-21 20:01:31 +0530689 reg = <0x4a080000 0x20>;
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530690 ranges;
691 ti,hwmods = "ocp2scp1";
Kishon Vijay Abraham Iae6a32d2013-03-07 19:05:19 +0530692 usb2_phy: usb2phy@4a084000 {
693 compatible = "ti,omap-usb2";
694 reg = <0x4a084000 0x7c>;
Roger Quadrosb297c292013-10-03 18:12:37 +0300695 ctrl-module = <&omap_control_usb2phy>;
Kishon Vijay Abraham Iae6a32d2013-03-07 19:05:19 +0530696 };
697
698 usb3_phy: usb3phy@4a084400 {
699 compatible = "ti,omap-usb3";
700 reg = <0x4a084400 0x80>,
701 <0x4a084800 0x64>,
702 <0x4a084c00 0x40>;
703 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
Roger Quadrosb297c292013-10-03 18:12:37 +0300704 ctrl-module = <&omap_control_usb3phy>;
Kishon Vijay Abraham Iae6a32d2013-03-07 19:05:19 +0530705 };
Kishon Vijay Abraham Ie9831962013-03-07 19:05:18 +0530706 };
Roger Quadrosed7f8e82013-06-07 18:52:48 +0530707
708 usbhstll: usbhstll@4a062000 {
709 compatible = "ti,usbhs-tll";
710 reg = <0x4a062000 0x1000>;
711 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
712 ti,hwmods = "usb_tll_hs";
713 };
714
715 usbhshost: usbhshost@4a064000 {
716 compatible = "ti,usbhs-host";
717 reg = <0x4a064000 0x800>;
718 ti,hwmods = "usb_host_hs";
719 #address-cells = <1>;
720 #size-cells = <1>;
721 ranges;
722
723 usbhsohci: ohci@4a064800 {
724 compatible = "ti,ohci-omap3", "usb-ohci";
725 reg = <0x4a064800 0x400>;
726 interrupt-parent = <&gic>;
727 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
728 };
729
730 usbhsehci: ehci@4a064c00 {
731 compatible = "ti,ehci-omap", "usb-ehci";
732 reg = <0x4a064c00 0x400>;
733 interrupt-parent = <&gic>;
734 interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
735 };
736 };
Eduardo Valentincbad26d2013-06-18 22:36:38 -0400737
Eduardo Valentin1b761fc52013-08-16 12:01:02 -0400738 bandgap: bandgap@4a0021e0 {
Eduardo Valentincbad26d2013-06-18 22:36:38 -0400739 reg = <0x4a0021e0 0xc
740 0x4a00232c 0xc
741 0x4a002380 0x2c
742 0x4a0023C0 0x3c>;
743 interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
744 compatible = "ti,omap5430-bandgap";
Eduardo Valentin1b761fc52013-08-16 12:01:02 -0400745
746 #thermal-sensor-cells = <1>;
Eduardo Valentincbad26d2013-06-18 22:36:38 -0400747 };
R Sricharan6b5de092012-05-10 19:46:00 +0530748 };
749};