blob: 4cd8acf32c6f84c584f5292d67e53302095c6757 [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";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200107 reg = <0x4ae10000 0x200>;
108 interrupts = <0 29 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530109 ti,hwmods = "gpio1";
110 gpio-controller;
111 #gpio-cells = <2>;
112 interrupt-controller;
113 #interrupt-cells = <1>;
114 };
115
116 gpio2: gpio@48055000 {
117 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200118 reg = <0x48055000 0x200>;
119 interrupts = <0 30 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530120 ti,hwmods = "gpio2";
121 gpio-controller;
122 #gpio-cells = <2>;
123 interrupt-controller;
124 #interrupt-cells = <1>;
125 };
126
127 gpio3: gpio@48057000 {
128 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200129 reg = <0x48057000 0x200>;
130 interrupts = <0 31 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530131 ti,hwmods = "gpio3";
132 gpio-controller;
133 #gpio-cells = <2>;
134 interrupt-controller;
135 #interrupt-cells = <1>;
136 };
137
138 gpio4: gpio@48059000 {
139 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200140 reg = <0x48059000 0x200>;
141 interrupts = <0 32 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530142 ti,hwmods = "gpio4";
143 gpio-controller;
144 #gpio-cells = <2>;
145 interrupt-controller;
146 #interrupt-cells = <1>;
147 };
148
149 gpio5: gpio@4805b000 {
150 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200151 reg = <0x4805b000 0x200>;
152 interrupts = <0 33 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530153 ti,hwmods = "gpio5";
154 gpio-controller;
155 #gpio-cells = <2>;
156 interrupt-controller;
157 #interrupt-cells = <1>;
158 };
159
160 gpio6: gpio@4805d000 {
161 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200162 reg = <0x4805d000 0x200>;
163 interrupts = <0 34 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530164 ti,hwmods = "gpio6";
165 gpio-controller;
166 #gpio-cells = <2>;
167 interrupt-controller;
168 #interrupt-cells = <1>;
169 };
170
171 gpio7: gpio@48051000 {
172 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200173 reg = <0x48051000 0x200>;
174 interrupts = <0 35 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530175 ti,hwmods = "gpio7";
176 gpio-controller;
177 #gpio-cells = <2>;
178 interrupt-controller;
179 #interrupt-cells = <1>;
180 };
181
182 gpio8: gpio@48053000 {
183 compatible = "ti,omap4-gpio";
Sebastien Guiriecf4b224f2012-10-23 10:37:09 +0200184 reg = <0x48053000 0x200>;
185 interrupts = <0 121 0x4>;
R Sricharan6b5de092012-05-10 19:46:00 +0530186 ti,hwmods = "gpio8";
187 gpio-controller;
188 #gpio-cells = <2>;
189 interrupt-controller;
190 #interrupt-cells = <1>;
191 };
192
Sourav Poddar6e6a9a52012-07-25 10:57:58 +0530193 i2c1: i2c@48070000 {
194 compatible = "ti,omap4-i2c";
195 #address-cells = <1>;
196 #size-cells = <0>;
197 ti,hwmods = "i2c1";
198 };
199
200 i2c2: i2c@48072000 {
201 compatible = "ti,omap4-i2c";
202 #address-cells = <1>;
203 #size-cells = <0>;
204 ti,hwmods = "i2c2";
205 };
206
207 i2c3: i2c@48060000 {
208 compatible = "ti,omap4-i2c";
209 #address-cells = <1>;
210 #size-cells = <0>;
211 ti,hwmods = "i2c3";
212 };
213
214 i2c4: i2c@4807A000 {
215 compatible = "ti,omap4-i2c";
216 #address-cells = <1>;
217 #size-cells = <0>;
218 ti,hwmods = "i2c4";
219 };
220
221 i2c5: i2c@4807C000 {
222 compatible = "ti,omap4-i2c";
223 #address-cells = <1>;
224 #size-cells = <0>;
225 ti,hwmods = "i2c5";
226 };
227
R Sricharan6b5de092012-05-10 19:46:00 +0530228 uart1: serial@4806a000 {
229 compatible = "ti,omap4-uart";
230 ti,hwmods = "uart1";
231 clock-frequency = <48000000>;
232 };
233
234 uart2: serial@4806c000 {
235 compatible = "ti,omap4-uart";
236 ti,hwmods = "uart2";
237 clock-frequency = <48000000>;
238 };
239
240 uart3: serial@48020000 {
241 compatible = "ti,omap4-uart";
242 ti,hwmods = "uart3";
243 clock-frequency = <48000000>;
244 };
245
246 uart4: serial@4806e000 {
247 compatible = "ti,omap4-uart";
248 ti,hwmods = "uart4";
249 clock-frequency = <48000000>;
250 };
251
252 uart5: serial@48066000 {
253 compatible = "ti,omap5-uart";
254 ti,hwmods = "uart5";
255 clock-frequency = <48000000>;
256 };
257
258 uart6: serial@48068000 {
259 compatible = "ti,omap6-uart";
260 ti,hwmods = "uart6";
261 clock-frequency = <48000000>;
262 };
Balaji T K5dd18b02012-08-07 12:48:21 +0530263
264 mmc1: mmc@4809c000 {
265 compatible = "ti,omap4-hsmmc";
266 ti,hwmods = "mmc1";
267 ti,dual-volt;
268 ti,needs-special-reset;
269 };
270
271 mmc2: mmc@480b4000 {
272 compatible = "ti,omap4-hsmmc";
273 ti,hwmods = "mmc2";
274 ti,needs-special-reset;
275 };
276
277 mmc3: mmc@480ad000 {
278 compatible = "ti,omap4-hsmmc";
279 ti,hwmods = "mmc3";
280 ti,needs-special-reset;
281 };
282
283 mmc4: mmc@480d1000 {
284 compatible = "ti,omap4-hsmmc";
285 ti,hwmods = "mmc4";
286 ti,needs-special-reset;
287 };
288
289 mmc5: mmc@480d5000 {
290 compatible = "ti,omap4-hsmmc";
291 ti,hwmods = "mmc5";
292 ti,needs-special-reset;
293 };
Sourav Poddar5449fbc2012-07-25 11:03:27 +0530294
295 keypad: keypad@4ae1c000 {
296 compatible = "ti,omap4-keypad";
297 ti,hwmods = "kbd";
298 };
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300299
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300300 mcpdm: mcpdm@40132000 {
301 compatible = "ti,omap4-mcpdm";
302 reg = <0x40132000 0x7f>, /* MPU private access */
303 <0x49032000 0x7f>; /* L3 Interconnect */
304 reg-names = "mpu", "dma";
305 interrupts = <0 112 0x4>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300306 ti,hwmods = "mcpdm";
307 };
308
309 dmic: dmic@4012e000 {
310 compatible = "ti,omap4-dmic";
311 reg = <0x4012e000 0x7f>, /* MPU private access */
312 <0x4902e000 0x7f>; /* L3 Interconnect */
313 reg-names = "mpu", "dma";
314 interrupts = <0 114 0x4>;
Peter Ujfalusicbb57f02012-08-29 16:31:07 +0300315 ti,hwmods = "dmic";
316 };
317
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300318 mcbsp1: mcbsp@40122000 {
319 compatible = "ti,omap4-mcbsp";
320 reg = <0x40122000 0xff>, /* MPU private access */
321 <0x49022000 0xff>; /* L3 Interconnect */
322 reg-names = "mpu", "dma";
323 interrupts = <0 17 0x4>;
324 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300325 ti,buffer-size = <128>;
326 ti,hwmods = "mcbsp1";
327 };
328
329 mcbsp2: mcbsp@40124000 {
330 compatible = "ti,omap4-mcbsp";
331 reg = <0x40124000 0xff>, /* MPU private access */
332 <0x49024000 0xff>; /* L3 Interconnect */
333 reg-names = "mpu", "dma";
334 interrupts = <0 22 0x4>;
335 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300336 ti,buffer-size = <128>;
337 ti,hwmods = "mcbsp2";
338 };
339
340 mcbsp3: mcbsp@40126000 {
341 compatible = "ti,omap4-mcbsp";
342 reg = <0x40126000 0xff>, /* MPU private access */
343 <0x49026000 0xff>; /* L3 Interconnect */
344 reg-names = "mpu", "dma";
345 interrupts = <0 23 0x4>;
346 interrupt-names = "common";
Peter Ujfalusiffd5db22012-08-29 16:31:04 +0300347 ti,buffer-size = <128>;
348 ti,hwmods = "mcbsp3";
349 };
R Sricharan6b5de092012-05-10 19:46:00 +0530350 };
351};