blob: 42c78beb4fdc84c03c785bf50ac938d5d15063d1 [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
10/*
11 * Carveout for multimedia usecases
12 * It should be the last 48MB of the first 512MB memory part
13 * In theory, it should not even exist. That zone should be reserved
14 * dynamically during the .reserve callback.
15 */
16/memreserve/ 0x9d000000 0x03000000;
17
18/include/ "skeleton.dtsi"
19
20/ {
21 compatible = "ti,omap5";
22 interrupt-parent = <&gic>;
23
24 aliases {
25 serial0 = &uart1;
26 serial1 = &uart2;
27 serial2 = &uart3;
28 serial3 = &uart4;
29 serial4 = &uart5;
30 serial5 = &uart6;
31 };
32
33 cpus {
34 cpu@0 {
35 compatible = "arm,cortex-a15";
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +053036 timer {
37 compatible = "arm,armv7-timer";
38 /* 14th PPI IRQ, active low level-sensitive */
39 interrupts = <1 14 0x308>;
40 clock-frequency = <6144000>;
41 };
R Sricharan6b5de092012-05-10 19:46:00 +053042 };
43 cpu@1 {
44 compatible = "arm,cortex-a15";
Santosh Shilimkar3c7c5da2012-08-13 14:39:03 +053045 timer {
46 compatible = "arm,armv7-timer";
47 /* 14th PPI IRQ, active low level-sensitive */
48 interrupts = <1 14 0x308>;
49 clock-frequency = <6144000>;
50 };
R Sricharan6b5de092012-05-10 19:46:00 +053051 };
52 };
53
54 /*
55 * The soc node represents the soc top level view. It is uses for IPs
56 * that are not memory mapped in the MPU view or for the MPU itself.
57 */
58 soc {
59 compatible = "ti,omap-infra";
60 mpu {
61 compatible = "ti,omap5-mpu";
62 ti,hwmods = "mpu";
63 };
64 };
65
66 /*
67 * XXX: Use a flat representation of the OMAP3 interconnect.
68 * The real OMAP interconnect network is quite complex.
69 * Since that will not bring real advantage to represent that in DT for
70 * the moment, just use a fake OCP bus entry to represent the whole bus
71 * hierarchy.
72 */
73 ocp {
74 compatible = "ti,omap4-l3-noc", "simple-bus";
75 #address-cells = <1>;
76 #size-cells = <1>;
77 ranges;
78 ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
79
Peter Ujfalusi5da6a2d2012-10-04 14:57:27 +030080 omap5_pmx_core: pinmux@4a002840 {
81 compatible = "ti,omap4-padconf", "pinctrl-single";
82 reg = <0x4a002840 0x01b6>;
83 #address-cells = <1>;
84 #size-cells = <0>;
85 pinctrl-single,register-width = <16>;
86 pinctrl-single,function-mask = <0x7fff>;
87 };
88 omap5_pmx_wkup: pinmux@4ae0c840 {
89 compatible = "ti,omap4-padconf", "pinctrl-single";
90 reg = <0x4ae0c840 0x0038>;
91 #address-cells = <1>;
92 #size-cells = <0>;
93 pinctrl-single,register-width = <16>;
94 pinctrl-single,function-mask = <0x7fff>;
95 };
96
R Sricharan6b5de092012-05-10 19:46:00 +053097 gic: interrupt-controller@48211000 {
98 compatible = "arm,cortex-a15-gic";
99 interrupt-controller;
100 #interrupt-cells = <3>;
101 reg = <0x48211000 0x1000>,
102 <0x48212000 0x1000>;
103 };
104
105 gpio1: gpio@4ae10000 {
106 compatible = "ti,omap4-gpio";
107 ti,hwmods = "gpio1";
108 gpio-controller;
109 #gpio-cells = <2>;
110 interrupt-controller;
111 #interrupt-cells = <1>;
112 };
113
114 gpio2: gpio@48055000 {
115 compatible = "ti,omap4-gpio";
116 ti,hwmods = "gpio2";
117 gpio-controller;
118 #gpio-cells = <2>;
119 interrupt-controller;
120 #interrupt-cells = <1>;
121 };
122
123 gpio3: gpio@48057000 {
124 compatible = "ti,omap4-gpio";
125 ti,hwmods = "gpio3";
126 gpio-controller;
127 #gpio-cells = <2>;
128 interrupt-controller;
129 #interrupt-cells = <1>;
130 };
131
132 gpio4: gpio@48059000 {
133 compatible = "ti,omap4-gpio";
134 ti,hwmods = "gpio4";
135 gpio-controller;
136 #gpio-cells = <2>;
137 interrupt-controller;
138 #interrupt-cells = <1>;
139 };
140
141 gpio5: gpio@4805b000 {
142 compatible = "ti,omap4-gpio";
143 ti,hwmods = "gpio5";
144 gpio-controller;
145 #gpio-cells = <2>;
146 interrupt-controller;
147 #interrupt-cells = <1>;
148 };
149
150 gpio6: gpio@4805d000 {
151 compatible = "ti,omap4-gpio";
152 ti,hwmods = "gpio6";
153 gpio-controller;
154 #gpio-cells = <2>;
155 interrupt-controller;
156 #interrupt-cells = <1>;
157 };
158
159 gpio7: gpio@48051000 {
160 compatible = "ti,omap4-gpio";
161 ti,hwmods = "gpio7";
162 gpio-controller;
163 #gpio-cells = <2>;
164 interrupt-controller;
165 #interrupt-cells = <1>;
166 };
167
168 gpio8: gpio@48053000 {
169 compatible = "ti,omap4-gpio";
170 ti,hwmods = "gpio8";
171 gpio-controller;
172 #gpio-cells = <2>;
173 interrupt-controller;
174 #interrupt-cells = <1>;
175 };
176
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530177 i2c1: i2c@48070000 {
178 compatible = "ti,omap4-i2c";
179 #address-cells = <1>;
180 #size-cells = <0>;
181 ti,hwmods = "i2c1";
182 };
183
184 i2c2: i2c@48072000 {
185 compatible = "ti,omap4-i2c";
186 #address-cells = <1>;
187 #size-cells = <0>;
188 ti,hwmods = "i2c2";
189 };
190
191 i2c3: i2c@48060000 {
192 compatible = "ti,omap4-i2c";
193 #address-cells = <1>;
194 #size-cells = <0>;
195 ti,hwmods = "i2c3";
196 };
197
198 i2c4: i2c@4807A000 {
199 compatible = "ti,omap4-i2c";
200 #address-cells = <1>;
201 #size-cells = <0>;
202 ti,hwmods = "i2c4";
203 };
204
205 i2c5: i2c@4807C000 {
206 compatible = "ti,omap4-i2c";
207 #address-cells = <1>;
208 #size-cells = <0>;
209 ti,hwmods = "i2c5";
210 };
211
R Sricharan6b5de092012-05-10 19:46:00 +0530212 uart1: serial@4806a000 {
213 compatible = "ti,omap4-uart";
214 ti,hwmods = "uart1";
215 clock-frequency = <48000000>;
216 };
217
218 uart2: serial@4806c000 {
219 compatible = "ti,omap4-uart";
220 ti,hwmods = "uart2";
221 clock-frequency = <48000000>;
222 };
223
224 uart3: serial@48020000 {
225 compatible = "ti,omap4-uart";
226 ti,hwmods = "uart3";
227 clock-frequency = <48000000>;
228 };
229
230 uart4: serial@4806e000 {
231 compatible = "ti,omap4-uart";
232 ti,hwmods = "uart4";
233 clock-frequency = <48000000>;
234 };
235
236 uart5: serial@48066000 {
237 compatible = "ti,omap5-uart";
238 ti,hwmods = "uart5";
239 clock-frequency = <48000000>;
240 };
241
242 uart6: serial@48068000 {
243 compatible = "ti,omap6-uart";
244 ti,hwmods = "uart6";
245 clock-frequency = <48000000>;
246 };
Balaji T K5dd18b02012-08-07 12:48:21 +0530247
248 mmc1: mmc@4809c000 {
249 compatible = "ti,omap4-hsmmc";
250 ti,hwmods = "mmc1";
251 ti,dual-volt;
252 ti,needs-special-reset;
253 };
254
255 mmc2: mmc@480b4000 {
256 compatible = "ti,omap4-hsmmc";
257 ti,hwmods = "mmc2";
258 ti,needs-special-reset;
259 };
260
261 mmc3: mmc@480ad000 {
262 compatible = "ti,omap4-hsmmc";
263 ti,hwmods = "mmc3";
264 ti,needs-special-reset;
265 };
266
267 mmc4: mmc@480d1000 {
268 compatible = "ti,omap4-hsmmc";
269 ti,hwmods = "mmc4";
270 ti,needs-special-reset;
271 };
272
273 mmc5: mmc@480d5000 {
274 compatible = "ti,omap4-hsmmc";
275 ti,hwmods = "mmc5";
276 ti,needs-special-reset;
277 };
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530278
279 keypad: keypad@4ae1c000 {
280 compatible = "ti,omap4-keypad";
281 ti,hwmods = "kbd";
282 };
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300283
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300284 mcpdm: mcpdm@40132000 {
285 compatible = "ti,omap4-mcpdm";
286 reg = <0x40132000 0x7f>, /* MPU private access */
287 <0x49032000 0x7f>; /* L3 Interconnect */
288 reg-names = "mpu", "dma";
289 interrupts = <0 112 0x4>;
290 interrupt-parent = <&gic>;
291 ti,hwmods = "mcpdm";
292 };
293
294 dmic: dmic@4012e000 {
295 compatible = "ti,omap4-dmic";
296 reg = <0x4012e000 0x7f>, /* MPU private access */
297 <0x4902e000 0x7f>; /* L3 Interconnect */
298 reg-names = "mpu", "dma";
299 interrupts = <0 114 0x4>;
300 interrupt-parent = <&gic>;
301 ti,hwmods = "dmic";
302 };
303
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300304 mcbsp1: mcbsp@40122000 {
305 compatible = "ti,omap4-mcbsp";
306 reg = <0x40122000 0xff>, /* MPU private access */
307 <0x49022000 0xff>; /* L3 Interconnect */
308 reg-names = "mpu", "dma";
309 interrupts = <0 17 0x4>;
310 interrupt-names = "common";
311 interrupt-parent = <&gic>;
312 ti,buffer-size = <128>;
313 ti,hwmods = "mcbsp1";
314 };
315
316 mcbsp2: mcbsp@40124000 {
317 compatible = "ti,omap4-mcbsp";
318 reg = <0x40124000 0xff>, /* MPU private access */
319 <0x49024000 0xff>; /* L3 Interconnect */
320 reg-names = "mpu", "dma";
321 interrupts = <0 22 0x4>;
322 interrupt-names = "common";
323 interrupt-parent = <&gic>;
324 ti,buffer-size = <128>;
325 ti,hwmods = "mcbsp2";
326 };
327
328 mcbsp3: mcbsp@40126000 {
329 compatible = "ti,omap4-mcbsp";
330 reg = <0x40126000 0xff>, /* MPU private access */
331 <0x49026000 0xff>; /* L3 Interconnect */
332 reg-names = "mpu", "dma";
333 interrupts = <0 23 0x4>;
334 interrupt-names = "common";
335 interrupt-parent = <&gic>;
336 ti,buffer-size = <128>;
337 ti,hwmods = "mcbsp3";
338 };
R Sricharan6b5de092012-05-10 19:46:00 +0530339 };
340};