blob: 24c52e681b58ee91541ad29e41b27257ea95d7dd [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 Abrahambbd9700a2013-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 Abrahambbd9700a2013-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
Chanho Park4f801e52012-12-12 14:03:59 +0900112 pmu {
113 compatible = "arm,cortex-a15-pmu";
114 interrupt-parent = <&combiner>;
115 interrupts = <1 2>, <22 4>;
116 };
117
Kukjin Kimb074abb2012-02-10 13:12:21 +0900118 watchdog {
119 compatible = "samsung,s3c2410-wdt";
120 reg = <0x101D0000 0x100>;
121 interrupts = <0 42 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900122 clocks = <&clock 336>;
123 clock-names = "watchdog";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900124 };
125
Arun Kumar K2eae6132012-10-23 22:51:33 +0900126 codec@11000000 {
127 compatible = "samsung,mfc-v6";
128 reg = <0x11000000 0x10000>;
129 interrupts = <0 96 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800130 samsung,power-domain = <&pd_mfc>;
Arun Kumar K2eae6132012-10-23 22:51:33 +0900131 };
132
Kukjin Kimb074abb2012-02-10 13:12:21 +0900133 rtc {
134 compatible = "samsung,s3c6410-rtc";
135 reg = <0x101E0000 0x100>;
136 interrupts = <0 43 0>, <0 44 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900137 clocks = <&clock 337>;
138 clock-names = "rtc";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900139 };
140
Amit Daniel Kachhapef405e02012-10-29 21:23:29 +0900141 tmu@10060000 {
142 compatible = "samsung,exynos5250-tmu";
143 reg = <0x10060000 0x100>;
144 interrupts = <0 65 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900145 clocks = <&clock 338>;
146 clock-names = "tmu_apbif";
Amit Daniel Kachhapef405e02012-10-29 21:23:29 +0900147 };
148
Kukjin Kimb074abb2012-02-10 13:12:21 +0900149 serial@12C00000 {
150 compatible = "samsung,exynos4210-uart";
151 reg = <0x12C00000 0x100>;
152 interrupts = <0 51 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900153 clocks = <&clock 289>, <&clock 146>;
154 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900155 };
156
157 serial@12C10000 {
158 compatible = "samsung,exynos4210-uart";
159 reg = <0x12C10000 0x100>;
160 interrupts = <0 52 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900161 clocks = <&clock 290>, <&clock 147>;
162 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900163 };
164
165 serial@12C20000 {
166 compatible = "samsung,exynos4210-uart";
167 reg = <0x12C20000 0x100>;
168 interrupts = <0 53 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900169 clocks = <&clock 291>, <&clock 148>;
170 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900171 };
172
173 serial@12C30000 {
174 compatible = "samsung,exynos4210-uart";
175 reg = <0x12C30000 0x100>;
176 interrupts = <0 54 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900177 clocks = <&clock 292>, <&clock 149>;
178 clock-names = "uart", "clk_uart_baud0";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900179 };
180
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900181 sata@122F0000 {
182 compatible = "samsung,exynos5-sata-ahci";
183 reg = <0x122F0000 0x1ff>;
184 interrupts = <0 115 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900185 clocks = <&clock 277>, <&clock 143>;
186 clock-names = "sata", "sclk_sata";
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900187 };
188
189 sata-phy@12170000 {
190 compatible = "samsung,exynos5-sata-phy";
191 reg = <0x12170000 0x1ff>;
192 };
193
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900194 i2c_0: i2c@12C60000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900195 compatible = "samsung,s3c2440-i2c";
196 reg = <0x12C60000 0x100>;
197 interrupts = <0 56 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900198 #address-cells = <1>;
199 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900200 clocks = <&clock 294>;
201 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900202 };
203
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900204 i2c_1: i2c@12C70000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900205 compatible = "samsung,s3c2440-i2c";
206 reg = <0x12C70000 0x100>;
207 interrupts = <0 57 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900208 #address-cells = <1>;
209 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900210 clocks = <&clock 295>;
211 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900212 };
213
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900214 i2c_2: i2c@12C80000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900215 compatible = "samsung,s3c2440-i2c";
216 reg = <0x12C80000 0x100>;
217 interrupts = <0 58 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900218 #address-cells = <1>;
219 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900220 clocks = <&clock 296>;
221 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900222 };
223
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900224 i2c_3: i2c@12C90000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900225 compatible = "samsung,s3c2440-i2c";
226 reg = <0x12C90000 0x100>;
227 interrupts = <0 59 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900228 #address-cells = <1>;
229 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900230 clocks = <&clock 297>;
231 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900232 };
233
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900234 i2c_4: i2c@12CA0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900235 compatible = "samsung,s3c2440-i2c";
236 reg = <0x12CA0000 0x100>;
237 interrupts = <0 60 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900238 #address-cells = <1>;
239 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900240 clocks = <&clock 298>;
241 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900242 };
243
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900244 i2c_5: i2c@12CB0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900245 compatible = "samsung,s3c2440-i2c";
246 reg = <0x12CB0000 0x100>;
247 interrupts = <0 61 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900248 #address-cells = <1>;
249 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900250 clocks = <&clock 299>;
251 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900252 };
253
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900254 i2c_6: i2c@12CC0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900255 compatible = "samsung,s3c2440-i2c";
256 reg = <0x12CC0000 0x100>;
257 interrupts = <0 62 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900258 #address-cells = <1>;
259 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900260 clocks = <&clock 300>;
261 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900262 };
263
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900264 i2c_7: i2c@12CD0000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900265 compatible = "samsung,s3c2440-i2c";
266 reg = <0x12CD0000 0x100>;
267 interrupts = <0 63 0>;
Thomas Abraham009f7c92012-05-15 23:47:53 +0900268 #address-cells = <1>;
269 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900270 clocks = <&clock 301>;
271 clock-names = "i2c";
Kukjin Kimb074abb2012-02-10 13:12:21 +0900272 };
273
Abhilash Kesavanb9fa3e72012-11-20 18:20:40 +0900274 i2c_8: i2c@12CE0000 {
Rahul Sharma3e3e9ce2012-10-29 21:51:42 +0900275 compatible = "samsung,s3c2440-hdmiphy-i2c";
276 reg = <0x12CE0000 0x1000>;
277 interrupts = <0 64 0>;
278 #address-cells = <1>;
279 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900280 clocks = <&clock 302>;
281 clock-names = "i2c";
Rahul Sharma3e3e9ce2012-10-29 21:51:42 +0900282 };
283
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900284 i2c@121D0000 {
285 compatible = "samsung,exynos5-sata-phy-i2c";
286 reg = <0x121D0000 0x100>;
287 #address-cells = <1>;
288 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900289 clocks = <&clock 288>;
290 clock-names = "i2c";
Vasanth Ananthanc47d2442012-11-20 21:02:11 +0900291 };
292
Thomas Abraham79989ba2012-07-14 10:45:36 +0900293 spi_0: spi@12d20000 {
294 compatible = "samsung,exynos4210-spi";
295 reg = <0x12d20000 0x100>;
296 interrupts = <0 66 0>;
Padmavathi Vennaa4a8a9d2013-01-18 17:17:07 +0530297 dmas = <&pdma0 5
298 &pdma0 4>;
299 dma-names = "tx", "rx";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900300 #address-cells = <1>;
301 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900302 clocks = <&clock 304>, <&clock 154>;
303 clock-names = "spi", "spi_busclk0";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900304 };
305
306 spi_1: spi@12d30000 {
307 compatible = "samsung,exynos4210-spi";
308 reg = <0x12d30000 0x100>;
309 interrupts = <0 67 0>;
Padmavathi Vennaa4a8a9d2013-01-18 17:17:07 +0530310 dmas = <&pdma1 5
311 &pdma1 4>;
312 dma-names = "tx", "rx";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900313 #address-cells = <1>;
314 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900315 clocks = <&clock 305>, <&clock 155>;
316 clock-names = "spi", "spi_busclk0";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900317 };
318
319 spi_2: spi@12d40000 {
320 compatible = "samsung,exynos4210-spi";
321 reg = <0x12d40000 0x100>;
322 interrupts = <0 68 0>;
Padmavathi Vennaa4a8a9d2013-01-18 17:17:07 +0530323 dmas = <&pdma0 7
324 &pdma0 6>;
325 dma-names = "tx", "rx";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900326 #address-cells = <1>;
327 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900328 clocks = <&clock 306>, <&clock 156>;
329 clock-names = "spi", "spi_busclk0";
Thomas Abraham79989ba2012-07-14 10:45:36 +0900330 };
331
Doug Andersonde0f42b2012-11-21 13:31:32 +0900332 dwmmc_0: dwmmc0@12200000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900333 compatible = "samsung,exynos5250-dw-mshc";
334 reg = <0x12200000 0x1000>;
335 interrupts = <0 75 0>;
336 #address-cells = <1>;
337 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900338 clocks = <&clock 280>, <&clock 139>;
339 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900340 };
341
Doug Andersonde0f42b2012-11-21 13:31:32 +0900342 dwmmc_1: dwmmc1@12210000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900343 compatible = "samsung,exynos5250-dw-mshc";
344 reg = <0x12210000 0x1000>;
345 interrupts = <0 76 0>;
346 #address-cells = <1>;
347 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900348 clocks = <&clock 281>, <&clock 140>;
349 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900350 };
351
Doug Andersonde0f42b2012-11-21 13:31:32 +0900352 dwmmc_2: dwmmc2@12220000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900353 compatible = "samsung,exynos5250-dw-mshc";
354 reg = <0x12220000 0x1000>;
355 interrupts = <0 77 0>;
356 #address-cells = <1>;
357 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900358 clocks = <&clock 282>, <&clock 141>;
359 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900360 };
361
Doug Andersonde0f42b2012-11-21 13:31:32 +0900362 dwmmc_3: dwmmc3@12230000 {
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900363 compatible = "samsung,exynos5250-dw-mshc";
364 reg = <0x12230000 0x1000>;
365 interrupts = <0 78 0>;
366 #address-cells = <1>;
367 #size-cells = <0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900368 clocks = <&clock 283>, <&clock 142>;
369 clock-names = "biu", "ciu";
Thomas Abraham84bd48a2012-09-26 09:02:59 +0900370 };
371
Padmavathi Venna28a48052013-01-18 17:17:06 +0530372 i2s0: i2s@03830000 {
Padmavathi Venna4c4c7462013-01-18 17:17:04 +0530373 compatible = "samsung,i2s-v5";
374 reg = <0x03830000 0x100>;
375 dmas = <&pdma0 10
376 &pdma0 9
377 &pdma0 8>;
378 dma-names = "tx", "rx", "tx-sec";
379 samsung,supports-6ch;
380 samsung,supports-rstclr;
381 samsung,supports-secdai;
382 samsung,idma-addr = <0x03000000>;
383 };
384
Padmavathi Venna28a48052013-01-18 17:17:06 +0530385 i2s1: i2s@12D60000 {
Padmavathi Venna4c4c7462013-01-18 17:17:04 +0530386 compatible = "samsung,i2s-v5";
387 reg = <0x12D60000 0x100>;
388 dmas = <&pdma1 12
389 &pdma1 11>;
390 dma-names = "tx", "rx";
391 };
392
Padmavathi Venna28a48052013-01-18 17:17:06 +0530393 i2s2: i2s@12D70000 {
Padmavathi Venna4c4c7462013-01-18 17:17:04 +0530394 compatible = "samsung,i2s-v5";
395 reg = <0x12D70000 0x100>;
396 dmas = <&pdma0 12
397 &pdma0 11>;
398 dma-names = "tx", "rx";
399 };
400
Vivek Gautam13cbd1e2013-02-12 15:24:15 -0800401 usb@12110000 {
402 compatible = "samsung,exynos4210-ehci";
403 reg = <0x12110000 0x100>;
404 interrupts = <0 71 0>;
405 };
406
Vivek Gautam7d40d862013-02-12 15:24:19 -0800407 usb@12120000 {
408 compatible = "samsung,exynos4210-ohci";
409 reg = <0x12120000 0x100>;
410 interrupts = <0 71 0>;
411 };
412
Kukjin Kimb074abb2012-02-10 13:12:21 +0900413 amba {
414 #address-cells = <1>;
415 #size-cells = <1>;
416 compatible = "arm,amba-bus";
417 interrupt-parent = <&gic>;
418 ranges;
419
420 pdma0: pdma@121A0000 {
421 compatible = "arm,pl330", "arm,primecell";
422 reg = <0x121A0000 0x1000>;
423 interrupts = <0 34 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900424 clocks = <&clock 275>;
425 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530426 #dma-cells = <1>;
427 #dma-channels = <8>;
428 #dma-requests = <32>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900429 };
430
431 pdma1: pdma@121B0000 {
432 compatible = "arm,pl330", "arm,primecell";
433 reg = <0x121B0000 0x1000>;
434 interrupts = <0 35 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900435 clocks = <&clock 276>;
436 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530437 #dma-cells = <1>;
438 #dma-channels = <8>;
439 #dma-requests = <32>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900440 };
441
Thomas Abraham009f7c92012-05-15 23:47:53 +0900442 mdma0: mdma@10800000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900443 compatible = "arm,pl330", "arm,primecell";
444 reg = <0x10800000 0x1000>;
445 interrupts = <0 33 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900446 clocks = <&clock 271>;
447 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530448 #dma-cells = <1>;
449 #dma-channels = <8>;
450 #dma-requests = <1>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900451 };
452
Thomas Abraham009f7c92012-05-15 23:47:53 +0900453 mdma1: mdma@11C10000 {
Kukjin Kimb074abb2012-02-10 13:12:21 +0900454 compatible = "arm,pl330", "arm,primecell";
455 reg = <0x11C10000 0x1000>;
456 interrupts = <0 124 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900457 clocks = <&clock 271>;
458 clock-names = "apb_pclk";
Padmavathi Venna42cf2092013-02-14 09:10:08 +0530459 #dma-cells = <1>;
460 #dma-channels = <8>;
461 #dma-requests = <1>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900462 };
463 };
464
465 gpio-controllers {
466 #address-cells = <1>;
467 #size-cells = <1>;
468 gpio-controller;
469 ranges;
470
471 gpa0: gpio-controller@11400000 {
472 compatible = "samsung,exynos4-gpio";
473 reg = <0x11400000 0x20>;
474 #gpio-cells = <4>;
475 };
476
477 gpa1: gpio-controller@11400020 {
478 compatible = "samsung,exynos4-gpio";
479 reg = <0x11400020 0x20>;
480 #gpio-cells = <4>;
481 };
482
483 gpa2: gpio-controller@11400040 {
484 compatible = "samsung,exynos4-gpio";
485 reg = <0x11400040 0x20>;
486 #gpio-cells = <4>;
487 };
488
489 gpb0: gpio-controller@11400060 {
490 compatible = "samsung,exynos4-gpio";
491 reg = <0x11400060 0x20>;
492 #gpio-cells = <4>;
493 };
494
495 gpb1: gpio-controller@11400080 {
496 compatible = "samsung,exynos4-gpio";
497 reg = <0x11400080 0x20>;
498 #gpio-cells = <4>;
499 };
500
501 gpb2: gpio-controller@114000A0 {
502 compatible = "samsung,exynos4-gpio";
503 reg = <0x114000A0 0x20>;
504 #gpio-cells = <4>;
505 };
506
507 gpb3: gpio-controller@114000C0 {
508 compatible = "samsung,exynos4-gpio";
509 reg = <0x114000C0 0x20>;
510 #gpio-cells = <4>;
511 };
512
513 gpc0: gpio-controller@114000E0 {
514 compatible = "samsung,exynos4-gpio";
515 reg = <0x114000E0 0x20>;
516 #gpio-cells = <4>;
517 };
518
519 gpc1: gpio-controller@11400100 {
520 compatible = "samsung,exynos4-gpio";
521 reg = <0x11400100 0x20>;
522 #gpio-cells = <4>;
523 };
524
525 gpc2: gpio-controller@11400120 {
526 compatible = "samsung,exynos4-gpio";
527 reg = <0x11400120 0x20>;
528 #gpio-cells = <4>;
529 };
530
531 gpc3: gpio-controller@11400140 {
532 compatible = "samsung,exynos4-gpio";
533 reg = <0x11400140 0x20>;
534 #gpio-cells = <4>;
535 };
536
Thomas Abraham009f7c92012-05-15 23:47:53 +0900537 gpc4: gpio-controller@114002E0 {
538 compatible = "samsung,exynos4-gpio";
539 reg = <0x114002E0 0x20>;
540 #gpio-cells = <4>;
541 };
542
Kukjin Kimb074abb2012-02-10 13:12:21 +0900543 gpd0: gpio-controller@11400160 {
544 compatible = "samsung,exynos4-gpio";
545 reg = <0x11400160 0x20>;
546 #gpio-cells = <4>;
547 };
548
549 gpd1: gpio-controller@11400180 {
550 compatible = "samsung,exynos4-gpio";
551 reg = <0x11400180 0x20>;
552 #gpio-cells = <4>;
553 };
554
555 gpy0: gpio-controller@114001A0 {
556 compatible = "samsung,exynos4-gpio";
557 reg = <0x114001A0 0x20>;
558 #gpio-cells = <4>;
559 };
560
561 gpy1: gpio-controller@114001C0 {
562 compatible = "samsung,exynos4-gpio";
563 reg = <0x114001C0 0x20>;
564 #gpio-cells = <4>;
565 };
566
567 gpy2: gpio-controller@114001E0 {
568 compatible = "samsung,exynos4-gpio";
569 reg = <0x114001E0 0x20>;
570 #gpio-cells = <4>;
571 };
572
573 gpy3: gpio-controller@11400200 {
574 compatible = "samsung,exynos4-gpio";
575 reg = <0x11400200 0x20>;
576 #gpio-cells = <4>;
577 };
578
579 gpy4: gpio-controller@11400220 {
580 compatible = "samsung,exynos4-gpio";
581 reg = <0x11400220 0x20>;
582 #gpio-cells = <4>;
583 };
584
585 gpy5: gpio-controller@11400240 {
586 compatible = "samsung,exynos4-gpio";
587 reg = <0x11400240 0x20>;
588 #gpio-cells = <4>;
589 };
590
591 gpy6: gpio-controller@11400260 {
592 compatible = "samsung,exynos4-gpio";
593 reg = <0x11400260 0x20>;
594 #gpio-cells = <4>;
595 };
596
597 gpx0: gpio-controller@11400C00 {
598 compatible = "samsung,exynos4-gpio";
599 reg = <0x11400C00 0x20>;
600 #gpio-cells = <4>;
601 };
602
603 gpx1: gpio-controller@11400C20 {
604 compatible = "samsung,exynos4-gpio";
605 reg = <0x11400C20 0x20>;
606 #gpio-cells = <4>;
607 };
608
609 gpx2: gpio-controller@11400C40 {
610 compatible = "samsung,exynos4-gpio";
611 reg = <0x11400C40 0x20>;
612 #gpio-cells = <4>;
613 };
614
615 gpx3: gpio-controller@11400C60 {
616 compatible = "samsung,exynos4-gpio";
617 reg = <0x11400C60 0x20>;
618 #gpio-cells = <4>;
619 };
620
621 gpe0: gpio-controller@13400000 {
622 compatible = "samsung,exynos4-gpio";
623 reg = <0x13400000 0x20>;
624 #gpio-cells = <4>;
625 };
626
627 gpe1: gpio-controller@13400020 {
628 compatible = "samsung,exynos4-gpio";
629 reg = <0x13400020 0x20>;
630 #gpio-cells = <4>;
631 };
632
633 gpf0: gpio-controller@13400040 {
634 compatible = "samsung,exynos4-gpio";
635 reg = <0x13400040 0x20>;
636 #gpio-cells = <4>;
637 };
638
639 gpf1: gpio-controller@13400060 {
640 compatible = "samsung,exynos4-gpio";
641 reg = <0x13400060 0x20>;
642 #gpio-cells = <4>;
643 };
644
645 gpg0: gpio-controller@13400080 {
646 compatible = "samsung,exynos4-gpio";
647 reg = <0x13400080 0x20>;
648 #gpio-cells = <4>;
649 };
650
651 gpg1: gpio-controller@134000A0 {
652 compatible = "samsung,exynos4-gpio";
653 reg = <0x134000A0 0x20>;
654 #gpio-cells = <4>;
655 };
656
657 gpg2: gpio-controller@134000C0 {
658 compatible = "samsung,exynos4-gpio";
659 reg = <0x134000C0 0x20>;
660 #gpio-cells = <4>;
661 };
662
663 gph0: gpio-controller@134000E0 {
664 compatible = "samsung,exynos4-gpio";
665 reg = <0x134000E0 0x20>;
666 #gpio-cells = <4>;
667 };
668
669 gph1: gpio-controller@13400100 {
670 compatible = "samsung,exynos4-gpio";
671 reg = <0x13400100 0x20>;
672 #gpio-cells = <4>;
673 };
674
675 gpv0: gpio-controller@10D10000 {
676 compatible = "samsung,exynos4-gpio";
677 reg = <0x10D10000 0x20>;
678 #gpio-cells = <4>;
679 };
680
681 gpv1: gpio-controller@10D10020 {
682 compatible = "samsung,exynos4-gpio";
683 reg = <0x10D10020 0x20>;
684 #gpio-cells = <4>;
685 };
686
687 gpv2: gpio-controller@10D10040 {
688 compatible = "samsung,exynos4-gpio";
Thomas Abraham009f7c92012-05-15 23:47:53 +0900689 reg = <0x10D10060 0x20>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900690 #gpio-cells = <4>;
691 };
692
693 gpv3: gpio-controller@10D10060 {
694 compatible = "samsung,exynos4-gpio";
Thomas Abraham009f7c92012-05-15 23:47:53 +0900695 reg = <0x10D10080 0x20>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900696 #gpio-cells = <4>;
697 };
698
699 gpv4: gpio-controller@10D10080 {
700 compatible = "samsung,exynos4-gpio";
Thomas Abraham009f7c92012-05-15 23:47:53 +0900701 reg = <0x10D100C0 0x20>;
Kukjin Kimb074abb2012-02-10 13:12:21 +0900702 #gpio-cells = <4>;
703 };
704
705 gpz: gpio-controller@03860000 {
706 compatible = "samsung,exynos4-gpio";
707 reg = <0x03860000 0x20>;
708 #gpio-cells = <4>;
709 };
710 };
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900711
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800712
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900713 gsc_0: gsc@0x13e00000 {
714 compatible = "samsung,exynos5-gsc";
715 reg = <0x13e00000 0x1000>;
716 interrupts = <0 85 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800717 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900718 clocks = <&clock 256>;
719 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900720 };
721
722 gsc_1: gsc@0x13e10000 {
723 compatible = "samsung,exynos5-gsc";
724 reg = <0x13e10000 0x1000>;
725 interrupts = <0 86 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800726 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900727 clocks = <&clock 257>;
728 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900729 };
730
731 gsc_2: gsc@0x13e20000 {
732 compatible = "samsung,exynos5-gsc";
733 reg = <0x13e20000 0x1000>;
734 interrupts = <0 87 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800735 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900736 clocks = <&clock 258>;
737 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900738 };
739
740 gsc_3: gsc@0x13e30000 {
741 compatible = "samsung,exynos5-gsc";
742 reg = <0x13e30000 0x1000>;
743 interrupts = <0 88 0>;
Prasanna Kumar6f9e95e2013-02-12 15:27:43 -0800744 samsung,power-domain = <&pd_gsc>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900745 clocks = <&clock 259>;
746 clock-names = "gscl";
Shaik Ameer Basha11286582012-09-07 14:13:08 +0900747 };
Rahul Sharma566cf8e2012-10-29 21:48:43 +0900748
749 hdmi {
750 compatible = "samsung,exynos5-hdmi";
Sean Paul101250c2012-12-27 10:35:51 -0800751 reg = <0x14530000 0x70000>;
Rahul Sharma566cf8e2012-10-29 21:48:43 +0900752 interrupts = <0 95 0>;
Thomas Abraham2de68472013-03-09 17:18:14 +0900753 clocks = <&clock 333>, <&clock 136>, <&clock 137>,
754 <&clock 333>, <&clock 333>;
755 clock-names = "hdmi", "sclk_hdmi", "sclk_pixel",
756 "sclk_hdmiphy", "hdmiphy";
Rahul Sharma566cf8e2012-10-29 21:48:43 +0900757 };
Rahul Sharma5af0d8a2012-10-29 21:51:36 +0900758
759 mixer {
760 compatible = "samsung,exynos5-mixer";
761 reg = <0x14450000 0x10000>;
762 interrupts = <0 94 0>;
763 };
Jingoo Hanad4aebe2013-02-12 11:11:58 -0800764
765 dp-controller {
766 compatible = "samsung,exynos5-dp";
767 reg = <0x145b0000 0x1000>;
768 interrupts = <10 3>;
769 interrupt-parent = <&combiner>;
770 #address-cells = <1>;
771 #size-cells = <0>;
772
773 dptx-phy {
774 reg = <0x10040720>;
775 samsung,enable-mask = <1>;
776 };
777 };
Kukjin Kimb074abb2012-02-10 13:12:21 +0900778};