1/* 2 * SAMSUNG SMDK2416 board device tree source 3 * 4 * Copyright (c) 2013 Heiko Stuebner <heiko@sntech.de> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 */ 10 11/dts-v1/; 12#include "s3c2416.dtsi" 13 14/ { 15 model = "SMDK2416"; 16 compatible = "samsung,s3c2416"; 17 18 memory { 19 reg = <0x30000000 0x4000000>; 20 }; 21 22 clocks { 23 compatible = "simple-bus"; 24 #address-cells = <1>; 25 #size-cells = <1>; 26 27 xti: xti { 28 compatible = "fixed-clock"; 29 clock-frequency = <12000000>; 30 clock-output-names = "xti"; 31 #clock-cells = <0>; 32 }; 33 }; 34 35 serial@50000000 { 36 status = "okay"; 37 pinctrl-names = "default"; 38 pinctrl-0 = <&uart0_data>, <&uart0_fctl>; 39 }; 40 41 serial@50004000 { 42 status = "okay"; 43 pinctrl-names = "default"; 44 pinctrl-0 = <&uart1_data>, <&uart1_fctl>; 45 }; 46 47 serial@50008000 { 48 status = "okay"; 49 pinctrl-names = "default"; 50 pinctrl-0 = <&uart2_data>; 51 }; 52 53 serial@5000C000 { 54 status = "okay"; 55 pinctrl-names = "default"; 56 pinctrl-0 = <&uart3_data>; 57 }; 58 59 watchdog@53000000 { 60 status = "okay"; 61 }; 62 63 rtc@57000000 { 64 status = "okay"; 65 }; 66 67 sdhci@4AC00000 { 68 pinctrl-names = "default"; 69 pinctrl-0 = <&sd0_clk>, <&sd0_cmd>, 70 <&sd0_bus1>, <&sd0_bus4>; 71 bus-width = <4>; 72 cd-gpios = <&gpf 1 0>; 73 cd-inverted; 74 status = "okay"; 75 }; 76 77 sdhci@4A800000 { 78 pinctrl-names = "default"; 79 pinctrl-0 = <&sd1_clk>, <&sd1_cmd>, 80 <&sd1_bus1>, <&sd1_bus4>; 81 bus-width = <4>; 82 broken-cd; 83 status = "okay"; 84 }; 85}; 86