blob: f8c9964f367c95fffecea0160068d36fe0387144 [file] [log] [blame]
Kukjin Kimb074abb2012-02-10 13:12:21 +09001/*
2 * SAMSUNG EXYNOS5250 SoC device tree source
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 *
7 * SAMSUNG EXYNOS5250 SoC device nodes are listed in this file.
8 * EXYNOS5250 based board files can include this file and provide
9 * values for board specfic bindings.
10 *
11 * Note: This file does not include device nodes for all the controllers in
12 * EXYNOS5250 SoC. As device tree coverage for EXYNOS5250 increases,
13 * additional nodes can be added to this file.
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License version 2 as
17 * published by the Free Software Foundation.
18*/
19
20/include/ "skeleton.dtsi"
21
22/ {
23 compatible = "samsung,exynos5250";
24 interrupt-parent = <&gic>;
25
Thomas Abraham79989ba2012-07-14 10:45:36 +090026 aliases {
27 spi0 = &spi_0;
28 spi1 = &spi_1;
29 spi2 = &spi_2;
Shaik Ameer Basha11286582012-09-07 14:13:08 +090030 gsc0 = &gsc_0;
31 gsc1 = &gsc_1;
32 gsc2 = &gsc_2;
33 gsc3 = &gsc_3;
Doug Andersonde0f42b2012-11-21 13:31:32 +090034 mshc0 = &dwmmc_0;
35 mshc1 = &dwmmc_1;
36 mshc2 = &dwmmc_2;
37 mshc3 = &dwmmc_3;
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +090038 i2c0 = &i2c_0;
39 i2c1 = &i2c_1;
40 i2c2 = &i2c_2;
41 i2c3 = &i2c_3;
42 i2c4 = &i2c_4;
43 i2c5 = &i2c_5;
44 i2c6 = &i2c_6;
45 i2c7 = &i2c_7;
46 i2c8 = &i2c_8;
Thomas Abraham79989ba2012-07-14 10:45:36 +090047 };
48
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -080049 pd_gsc: gsc-power-domain@0x10044000 {
50 compatible = "samsung,exynos4210-pd";
51 reg = <0x10044000 0x20>;
52 };
53
54 pd_mfc: mfc-power-domain@0x10044040 {
55 compatible = "samsung,exynos4210-pd";
56 reg = <0x10044040 0x20>;
57 };
58
Thomas Abrahamd8bafc82013-03-09 17:11:33 +090059 clock: clock-controller@0x10010000 {
60 compatible = "samsung,exynos5250-clock";
61 reg = <0x10010000 0x30000>;
62 #clock-cells = <1>;
63 };
64
Thomas Abraham009f7c92012-05-15 23:47:53 +090065 gic:interrupt-controller@10481000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +090066 compatible = "arm,cortex-a9-gic";
67 #interrupt-cells = <3>;
68 interrupt-controller;
Thomas Abraham009f7c92012-05-15 23:47:53 +090069 reg = <0x10481000 0x1000>, <0x10482000 0x2000>;
Kukjin Kimb074abb2012-02-10 13:12:21 +090070 };
71
Thomas Abrahamfe84cdf2012-05-18 09:29:35 +053072 combiner:interrupt-controller@10440000 {
73 compatible = "samsung,exynos4210-combiner";
74 #interrupt-cells = <2>;
75 interrupt-controller;
76 samsung,combiner-nr = <32>;
77 reg = <0x10440000 0x1000>;
78 interrupts = <0 0 0>, <0 1 0>, <0 2 0>, <0 3 0>,
79 <0 4 0>, <0 5 0>, <0 6 0>, <0 7 0>,
80 <0 8 0>, <0 9 0>, <0 10 0>, <0 11 0>,
81 <0 12 0>, <0 13 0>, <0 14 0>, <0 15 0>,
82 <0 16 0>, <0 17 0>, <0 18 0>, <0 19 0>,
83 <0 20 0>, <0 21 0>, <0 22 0>, <0 23 0>,
84 <0 24 0>, <0 25 0>, <0 26 0>, <0 27 0>,
85 <0 28 0>, <0 29 0>, <0 30 0>, <0 31 0>;
86 };
87
Thomas Abrahambbd97002013-03-09 16:12:35 +090088 mct@101C0000 {
89 compatible = "samsung,exynos4210-mct";
90 reg = <0x101C0000 0x800>;
91 interrupt-controller;
92 #interrups-cells = <2>;
93 interrupt-parent = <&mct_map>;
94 interrupts = <0 0>, <1 0>, <2 0>, <3 0>,
95 <4 0>, <5 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +090096 clocks = <&clock 1>, <&clock 335>;
97 clock-names = "fin_pll", "mct";
Thomas Abrahambbd97002013-03-09 16:12:35 +090098
99 mct_map: mct-map {
100 #interrupt-cells = <2>;
101 #address-cells = <0>;
102 #size-cells = <0>;
103 interrupt-map = <0x0 0 &combiner 23 3>,
104 <0x1 0 &combiner 23 4>,
105 <0x2 0 &combiner 25 2>,
106 <0x3 0 &combiner 25 3>,
107 <0x4 0 &gic 0 120 0>,
108 <0x5 0 &gic 0 121 0>;
109 };
110 };
111
Kukjin Kimb074abb2012-02-10 13:12:21 +0900112 watchdog {
113 compatible = "samsung,s3c2410-wdt";
114 reg = <0x101D0000 0x100>;
115 interrupts = <0 42 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900116 clocks = <&clock 336>;
117 clock-names = "watchdog";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900118 };
119
Arun Kumar K2eae6132012-10-23 22:51:33 +0900120 codec@11000000 {
121 compatible = "samsung,mfc-v6";
122 reg = <0x11000000 0x10000>;
123 interrupts = <0 96 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800124 samsung,power-domain = <&pd_mfc>;
Arun Kumar K2eae6132012-10-23 22:51:33 +0900125 };
126
Kukjin Kimb074abb2012-02-10 13:12:21 +0900127 rtc {
128 compatible = "samsung,s3c6410-rtc";
129 reg = <0x101E0000 0x100>;
130 interrupts = <0 43 0>, <0 44 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900131 clocks = <&clock 337>;
132 clock-names = "rtc";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900133 };
134
Amit Daniel Kachhapef405e02012-10-29 21:23:29 +0900135 tmu@10060000 {
136 compatible = "samsung,exynos5250-tmu";
137 reg = <0x10060000 0x100>;
138 interrupts = <0 65 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900139 clocks = <&clock 338>;
140 clock-names = "tmu_apbif";
Amit Daniel Kachhapef405e02012-10-29 21:23:29 +0900141 };
142
Kukjin Kimb074abb2012-02-10 13:12:21 +0900143 serial@12C00000 {
144 compatible = "samsung,exynos4210-uart";
145 reg = <0x12C00000 0x100>;
146 interrupts = <0 51 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900147 clocks = <&clock 289>, <&clock 146>;
148 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900149 };
150
151 serial@12C10000 {
152 compatible = "samsung,exynos4210-uart";
153 reg = <0x12C10000 0x100>;
154 interrupts = <0 52 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900155 clocks = <&clock 290>, <&clock 147>;
156 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900157 };
158
159 serial@12C20000 {
160 compatible = "samsung,exynos4210-uart";
161 reg = <0x12C20000 0x100>;
162 interrupts = <0 53 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900163 clocks = <&clock 291>, <&clock 148>;
164 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900165 };
166
167 serial@12C30000 {
168 compatible = "samsung,exynos4210-uart";
169 reg = <0x12C30000 0x100>;
170 interrupts = <0 54 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900171 clocks = <&clock 292>, <&clock 149>;
172 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900173 };
174
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900175 sata@122F0000 {
176 compatible = "samsung,exynos5-sata-ahci";
177 reg = <0x122F0000 0x1ff>;
178 interrupts = <0 115 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900179 clocks = <&clock 277>, <&clock 143>;
180 clock-names = "sata", "sclk_sata";
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900181 };
182
183 sata-phy@12170000 {
184 compatible = "samsung,exynos5-sata-phy";
185 reg = <0x12170000 0x1ff>;
186 };
187
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900188 i2c_0: i2c@12C60000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900189 compatible = "samsung,s3c2440-i2c";
190 reg = <0x12C60000 0x100>;
191 interrupts = <0 56 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900192 #address-cells = <1>;
193 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900194 clocks = <&clock 294>;
195 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900196 };
197
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900198 i2c_1: i2c@12C70000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900199 compatible = "samsung,s3c2440-i2c";
200 reg = <0x12C70000 0x100>;
201 interrupts = <0 57 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900202 #address-cells = <1>;
203 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900204 clocks = <&clock 295>;
205 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900206 };
207
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900208 i2c_2: i2c@12C80000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900209 compatible = "samsung,s3c2440-i2c";
210 reg = <0x12C80000 0x100>;
211 interrupts = <0 58 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900212 #address-cells = <1>;
213 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900214 clocks = <&clock 296>;
215 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900216 };
217
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900218 i2c_3: i2c@12C90000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900219 compatible = "samsung,s3c2440-i2c";
220 reg = <0x12C90000 0x100>;
221 interrupts = <0 59 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900222 #address-cells = <1>;
223 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900224 clocks = <&clock 297>;
225 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900226 };
227
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900228 i2c_4: i2c@12CA0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900229 compatible = "samsung,s3c2440-i2c";
230 reg = <0x12CA0000 0x100>;
231 interrupts = <0 60 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900232 #address-cells = <1>;
233 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900234 clocks = <&clock 298>;
235 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900236 };
237
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900238 i2c_5: i2c@12CB0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900239 compatible = "samsung,s3c2440-i2c";
240 reg = <0x12CB0000 0x100>;
241 interrupts = <0 61 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900242 #address-cells = <1>;
243 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900244 clocks = <&clock 299>;
245 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900246 };
247
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900248 i2c_6: i2c@12CC0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900249 compatible = "samsung,s3c2440-i2c";
250 reg = <0x12CC0000 0x100>;
251 interrupts = <0 62 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900252 #address-cells = <1>;
253 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900254 clocks = <&clock 300>;
255 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900256 };
257
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900258 i2c_7: i2c@12CD0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900259 compatible = "samsung,s3c2440-i2c";
260 reg = <0x12CD0000 0x100>;
261 interrupts = <0 63 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900262 #address-cells = <1>;
263 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900264 clocks = <&clock 301>;
265 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900266 };
267
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900268 i2c_8: i2c@12CE0000 {
Rahul Sharma3e3e9ce2012-10-29 21:51:42 +0900269 compatible = "samsung,s3c2440-hdmiphy-i2c";
270 reg = <0x12CE0000 0x1000>;
271 interrupts = <0 64 0>;
272 #address-cells = <1>;
273 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900274 clocks = <&clock 302>;
275 clock-names = "i2c";
Rahul Sharma3e3e9ce2012-10-29 21:51:42 +0900276 };
277
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900278 i2c@121D0000 {
279 compatible = "samsung,exynos5-sata-phy-i2c";
280 reg = <0x121D0000 0x100>;
281 #address-cells = <1>;
282 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900283 clocks = <&clock 288>;
284 clock-names = "i2c";
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900285 };
286
Thomas Abraham79989ba2012-07-14 10:45:36 +0900287 spi_0: spi@12d20000 {
288 compatible = "samsung,exynos4210-spi";
289 reg = <0x12d20000 0x100>;
290 interrupts = <0 66 0>;
Padmavathi Vennaa4a8a9d2013-01-18 17:17:07 +0530291 dmas = <&pdma0 5
292 &pdma0 4>;
293 dma-names = "tx", "rx";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900294 #address-cells = <1>;
295 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900296 clocks = <&clock 304>, <&clock 154>;
297 clock-names = "spi", "spi_busclk0";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900298 };
299
300 spi_1: spi@12d30000 {
301 compatible = "samsung,exynos4210-spi";
302 reg = <0x12d30000 0x100>;
303 interrupts = <0 67 0>;
Padmavathi Vennaa4a8a9d2013-01-18 17:17:07 +0530304 dmas = <&pdma1 5
305 &pdma1 4>;
306 dma-names = "tx", "rx";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900307 #address-cells = <1>;
308 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900309 clocks = <&clock 305>, <&clock 155>;
310 clock-names = "spi", "spi_busclk0";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900311 };
312
313 spi_2: spi@12d40000 {
314 compatible = "samsung,exynos4210-spi";
315 reg = <0x12d40000 0x100>;
316 interrupts = <0 68 0>;
Padmavathi Vennaa4a8a9d2013-01-18 17:17:07 +0530317 dmas = <&pdma0 7
318 &pdma0 6>;
319 dma-names = "tx", "rx";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900320 #address-cells = <1>;
321 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900322 clocks = <&clock 306>, <&clock 156>;
323 clock-names = "spi", "spi_busclk0";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900324 };
325
Doug Andersonde0f42b2012-11-21 13:31:32 +0900326 dwmmc_0: dwmmc0@12200000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900327 compatible = "samsung,exynos5250-dw-mshc";
328 reg = <0x12200000 0x1000>;
329 interrupts = <0 75 0>;
330 #address-cells = <1>;
331 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900332 clocks = <&clock 280>, <&clock 139>;
333 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900334 };
335
Doug Andersonde0f42b2012-11-21 13:31:32 +0900336 dwmmc_1: dwmmc1@12210000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900337 compatible = "samsung,exynos5250-dw-mshc";
338 reg = <0x12210000 0x1000>;
339 interrupts = <0 76 0>;
340 #address-cells = <1>;
341 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900342 clocks = <&clock 281>, <&clock 140>;
343 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900344 };
345
Doug Andersonde0f42b2012-11-21 13:31:32 +0900346 dwmmc_2: dwmmc2@12220000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900347 compatible = "samsung,exynos5250-dw-mshc";
348 reg = <0x12220000 0x1000>;
349 interrupts = <0 77 0>;
350 #address-cells = <1>;
351 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900352 clocks = <&clock 282>, <&clock 141>;
353 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900354 };
355
Doug Andersonde0f42b2012-11-21 13:31:32 +0900356 dwmmc_3: dwmmc3@12230000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900357 compatible = "samsung,exynos5250-dw-mshc";
358 reg = <0x12230000 0x1000>;
359 interrupts = <0 78 0>;
360 #address-cells = <1>;
361 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900362 clocks = <&clock 283>, <&clock 142>;
363 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900364 };
365
Padmavathi Venna28a48052013-01-18 17:17:06 +0530366 i2s0: i2s@03830000 {
Padmavathi Venna4c4c7462013-01-18 17:17:04 +0530367 compatible = "samsung,i2s-v5";
368 reg = <0x03830000 0x100>;
369 dmas = <&pdma0 10
370 &pdma0 9
371 &pdma0 8>;
372 dma-names = "tx", "rx", "tx-sec";
373 samsung,supports-6ch;
374 samsung,supports-rstclr;
375 samsung,supports-secdai;
376 samsung,idma-addr = <0x03000000>;
377 };
378
Padmavathi Venna28a48052013-01-18 17:17:06 +0530379 i2s1: i2s@12D60000 {
Padmavathi Venna4c4c7462013-01-18 17:17:04 +0530380 compatible = "samsung,i2s-v5";
381 reg = <0x12D60000 0x100>;
382 dmas = <&pdma1 12
383 &pdma1 11>;
384 dma-names = "tx", "rx";
385 };
386
Padmavathi Venna28a48052013-01-18 17:17:06 +0530387 i2s2: i2s@12D70000 {
Padmavathi Venna4c4c7462013-01-18 17:17:04 +0530388 compatible = "samsung,i2s-v5";
389 reg = <0x12D70000 0x100>;
390 dmas = <&pdma0 12
391 &pdma0 11>;
392 dma-names = "tx", "rx";
393 };
394
Vivek Gautam13cbd1e2013-02-12 15:24:15 -0800395 usb@12110000 {
396 compatible = "samsung,exynos4210-ehci";
397 reg = <0x12110000 0x100>;
398 interrupts = <0 71 0>;
399 };
400
Vivek Gautam7d40d862013-02-12 15:24:19 -0800401 usb@12120000 {
402 compatible = "samsung,exynos4210-ohci";
403 reg = <0x12120000 0x100>;
404 interrupts = <0 71 0>;
405 };
406
Kukjin Kimb074abb2012-02-10 13:12:21 +0900407 amba {
408 #address-cells = <1>;
409 #size-cells = <1>;
410 compatible = "arm,amba-bus";
411 interrupt-parent = <&gic>;
412 ranges;
413
414 pdma0: pdma@121A0000 {
415 compatible = "arm,pl330", "arm,primecell";
416 reg = <0x121A0000 0x1000>;
417 interrupts = <0 34 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900418 clocks = <&clock 275>;
419 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530420 #dma-cells = <1>;
421 #dma-channels = <8>;
422 #dma-requests = <32>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900423 };
424
425 pdma1: pdma@121B0000 {
426 compatible = "arm,pl330", "arm,primecell";
427 reg = <0x121B0000 0x1000>;
428 interrupts = <0 35 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900429 clocks = <&clock 276>;
430 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530431 #dma-cells = <1>;
432 #dma-channels = <8>;
433 #dma-requests = <32>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900434 };
435
Thomas Abraham009f7c92012-05-15 23:47:53 +0900436 mdma0: mdma@10800000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900437 compatible = "arm,pl330", "arm,primecell";
438 reg = <0x10800000 0x1000>;
439 interrupts = <0 33 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900440 clocks = <&clock 271>;
441 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530442 #dma-cells = <1>;
443 #dma-channels = <8>;
444 #dma-requests = <1>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900445 };
446
Thomas Abraham009f7c92012-05-15 23:47:53 +0900447 mdma1: mdma@11C10000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900448 compatible = "arm,pl330", "arm,primecell";
449 reg = <0x11C10000 0x1000>;
450 interrupts = <0 124 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900451 clocks = <&clock 271>;
452 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530453 #dma-cells = <1>;
454 #dma-channels = <8>;
455 #dma-requests = <1>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900456 };
457 };
458
459 gpio-controllers {
460 #address-cells = <1>;
461 #size-cells = <1>;
462 gpio-controller;
463 ranges;
464
465 gpa0: gpio-controller@11400000 {
466 compatible = "samsung,exynos4-gpio";
467 reg = <0x11400000 0x20>;
468 #gpio-cells = <4>;
469 };
470
471 gpa1: gpio-controller@11400020 {
472 compatible = "samsung,exynos4-gpio";
473 reg = <0x11400020 0x20>;
474 #gpio-cells = <4>;
475 };
476
477 gpa2: gpio-controller@11400040 {
478 compatible = "samsung,exynos4-gpio";
479 reg = <0x11400040 0x20>;
480 #gpio-cells = <4>;
481 };
482
483 gpb0: gpio-controller@11400060 {
484 compatible = "samsung,exynos4-gpio";
485 reg = <0x11400060 0x20>;
486 #gpio-cells = <4>;
487 };
488
489 gpb1: gpio-controller@11400080 {
490 compatible = "samsung,exynos4-gpio";
491 reg = <0x11400080 0x20>;
492 #gpio-cells = <4>;
493 };
494
495 gpb2: gpio-controller@114000A0 {
496 compatible = "samsung,exynos4-gpio";
497 reg = <0x114000A0 0x20>;
498 #gpio-cells = <4>;
499 };
500
501 gpb3: gpio-controller@114000C0 {
502 compatible = "samsung,exynos4-gpio";
503 reg = <0x114000C0 0x20>;
504 #gpio-cells = <4>;
505 };
506
507 gpc0: gpio-controller@114000E0 {
508 compatible = "samsung,exynos4-gpio";
509 reg = <0x114000E0 0x20>;
510 #gpio-cells = <4>;
511 };
512
513 gpc1: gpio-controller@11400100 {
514 compatible = "samsung,exynos4-gpio";
515 reg = <0x11400100 0x20>;
516 #gpio-cells = <4>;
517 };
518
519 gpc2: gpio-controller@11400120 {
520 compatible = "samsung,exynos4-gpio";
521 reg = <0x11400120 0x20>;
522 #gpio-cells = <4>;
523 };
524
525 gpc3: gpio-controller@11400140 {
526 compatible = "samsung,exynos4-gpio";
527 reg = <0x11400140 0x20>;
528 #gpio-cells = <4>;
529 };
530
Thomas Abraham009f7c92012-05-15 23:47:53 +0900531 gpc4: gpio-controller@114002E0 {
532 compatible = "samsung,exynos4-gpio";
533 reg = <0x114002E0 0x20>;
534 #gpio-cells = <4>;
535 };
536
Kukjin Kimb074abb2012-02-10 13:12:21 +0900537 gpd0: gpio-controller@11400160 {
538 compatible = "samsung,exynos4-gpio";
539 reg = <0x11400160 0x20>;
540 #gpio-cells = <4>;
541 };
542
543 gpd1: gpio-controller@11400180 {
544 compatible = "samsung,exynos4-gpio";
545 reg = <0x11400180 0x20>;
546 #gpio-cells = <4>;
547 };
548
549 gpy0: gpio-controller@114001A0 {
550 compatible = "samsung,exynos4-gpio";
551 reg = <0x114001A0 0x20>;
552 #gpio-cells = <4>;
553 };
554
555 gpy1: gpio-controller@114001C0 {
556 compatible = "samsung,exynos4-gpio";
557 reg = <0x114001C0 0x20>;
558 #gpio-cells = <4>;
559 };
560
561 gpy2: gpio-controller@114001E0 {
562 compatible = "samsung,exynos4-gpio";
563 reg = <0x114001E0 0x20>;
564 #gpio-cells = <4>;
565 };
566
567 gpy3: gpio-controller@11400200 {
568 compatible = "samsung,exynos4-gpio";
569 reg = <0x11400200 0x20>;
570 #gpio-cells = <4>;
571 };
572
573 gpy4: gpio-controller@11400220 {
574 compatible = "samsung,exynos4-gpio";
575 reg = <0x11400220 0x20>;
576 #gpio-cells = <4>;
577 };
578
579 gpy5: gpio-controller@11400240 {
580 compatible = "samsung,exynos4-gpio";
581 reg = <0x11400240 0x20>;
582 #gpio-cells = <4>;
583 };
584
585 gpy6: gpio-controller@11400260 {
586 compatible = "samsung,exynos4-gpio";
587 reg = <0x11400260 0x20>;
588 #gpio-cells = <4>;
589 };
590
591 gpx0: gpio-controller@11400C00 {
592 compatible = "samsung,exynos4-gpio";
593 reg = <0x11400C00 0x20>;
594 #gpio-cells = <4>;
595 };
596
597 gpx1: gpio-controller@11400C20 {
598 compatible = "samsung,exynos4-gpio";
599 reg = <0x11400C20 0x20>;
600 #gpio-cells = <4>;
601 };
602
603 gpx2: gpio-controller@11400C40 {
604 compatible = "samsung,exynos4-gpio";
605 reg = <0x11400C40 0x20>;
606 #gpio-cells = <4>;
607 };
608
609 gpx3: gpio-controller@11400C60 {
610 compatible = "samsung,exynos4-gpio";
611 reg = <0x11400C60 0x20>;
612 #gpio-cells = <4>;
613 };
614
615 gpe0: gpio-controller@13400000 {
616 compatible = "samsung,exynos4-gpio";
617 reg = <0x13400000 0x20>;
618 #gpio-cells = <4>;
619 };
620
621 gpe1: gpio-controller@13400020 {
622 compatible = "samsung,exynos4-gpio";
623 reg = <0x13400020 0x20>;
624 #gpio-cells = <4>;
625 };
626
627 gpf0: gpio-controller@13400040 {
628 compatible = "samsung,exynos4-gpio";
629 reg = <0x13400040 0x20>;
630 #gpio-cells = <4>;
631 };
632
633 gpf1: gpio-controller@13400060 {
634 compatible = "samsung,exynos4-gpio";
635 reg = <0x13400060 0x20>;
636 #gpio-cells = <4>;
637 };
638
639 gpg0: gpio-controller@13400080 {
640 compatible = "samsung,exynos4-gpio";
641 reg = <0x13400080 0x20>;
642 #gpio-cells = <4>;
643 };
644
645 gpg1: gpio-controller@134000A0 {
646 compatible = "samsung,exynos4-gpio";
647 reg = <0x134000A0 0x20>;
648 #gpio-cells = <4>;
649 };
650
651 gpg2: gpio-controller@134000C0 {
652 compatible = "samsung,exynos4-gpio";
653 reg = <0x134000C0 0x20>;
654 #gpio-cells = <4>;
655 };
656
657 gph0: gpio-controller@134000E0 {
658 compatible = "samsung,exynos4-gpio";
659 reg = <0x134000E0 0x20>;
660 #gpio-cells = <4>;
661 };
662
663 gph1: gpio-controller@13400100 {
664 compatible = "samsung,exynos4-gpio";
665 reg = <0x13400100 0x20>;
666 #gpio-cells = <4>;
667 };
668
669 gpv0: gpio-controller@10D10000 {
670 compatible = "samsung,exynos4-gpio";
671 reg = <0x10D10000 0x20>;
672 #gpio-cells = <4>;
673 };
674
675 gpv1: gpio-controller@10D10020 {
676 compatible = "samsung,exynos4-gpio";
677 reg = <0x10D10020 0x20>;
678 #gpio-cells = <4>;
679 };
680
681 gpv2: gpio-controller@10D10040 {
682 compatible = "samsung,exynos4-gpio";
Thomas Abraham009f7c92012-05-15 23:47:53 +0900683 reg = <0x10D10060 0x20>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900684 #gpio-cells = <4>;
685 };
686
687 gpv3: gpio-controller@10D10060 {
688 compatible = "samsung,exynos4-gpio";
Thomas Abraham009f7c92012-05-15 23:47:53 +0900689 reg = <0x10D10080 0x20>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900690 #gpio-cells = <4>;
691 };
692
693 gpv4: gpio-controller@10D10080 {
694 compatible = "samsung,exynos4-gpio";
Thomas Abraham009f7c92012-05-15 23:47:53 +0900695 reg = <0x10D100C0 0x20>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900696 #gpio-cells = <4>;
697 };
698
699 gpz: gpio-controller@03860000 {
700 compatible = "samsung,exynos4-gpio";
701 reg = <0x03860000 0x20>;
702 #gpio-cells = <4>;
703 };
704 };
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900705
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800706
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900707 gsc_0: gsc@0x13e00000 {
708 compatible = "samsung,exynos5-gsc";
709 reg = <0x13e00000 0x1000>;
710 interrupts = <0 85 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800711 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900712 clocks = <&clock 256>;
713 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900714 };
715
716 gsc_1: gsc@0x13e10000 {
717 compatible = "samsung,exynos5-gsc";
718 reg = <0x13e10000 0x1000>;
719 interrupts = <0 86 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800720 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900721 clocks = <&clock 257>;
722 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900723 };
724
725 gsc_2: gsc@0x13e20000 {
726 compatible = "samsung,exynos5-gsc";
727 reg = <0x13e20000 0x1000>;
728 interrupts = <0 87 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800729 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900730 clocks = <&clock 258>;
731 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900732 };
733
734 gsc_3: gsc@0x13e30000 {
735 compatible = "samsung,exynos5-gsc";
736 reg = <0x13e30000 0x1000>;
737 interrupts = <0 88 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800738 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900739 clocks = <&clock 259>;
740 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900741 };
Rahul Sharma566cf8e2012-10-29 21:48:43 +0900742
743 hdmi {
744 compatible = "samsung,exynos5-hdmi";
Sean Paul101250c2012-12-27 10:35:51 -0800745 reg = <0x14530000 0x70000>;
Rahul Sharma566cf8e2012-10-29 21:48:43 +0900746 interrupts = <0 95 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900747 clocks = <&clock 333>, <&clock 136>, <&clock 137>,
748 <&clock 333>, <&clock 333>;
749 clock-names = "hdmi", "sclk_hdmi", "sclk_pixel",
750 "sclk_hdmiphy", "hdmiphy";
Rahul Sharma566cf8e2012-10-29 21:48:43 +0900751 };
Rahul Sharma5af0d8a2012-10-29 21:51:36 +0900752
753 mixer {
754 compatible = "samsung,exynos5-mixer";
755 reg = <0x14450000 0x10000>;
756 interrupts = <0 94 0>;
757 };
Jingoo Hanad4aebe2013-02-12 11:11:58 -0800758
759 dp-controller {
760 compatible = "samsung,exynos5-dp";
761 reg = <0x145b0000 0x1000>;
762 interrupts = <10 3>;
763 interrupt-parent = <&combiner>;
764 #address-cells = <1>;
765 #size-cells = <0>;
766
767 dptx-phy {
768 reg = <0x10040720>;
769 samsung,enable-mask = <1>;
770 };
771 };
Kukjin Kimb074abb2012-02-10 13:12:21 +0900772};