Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * SAMSUNG SMDK2416 board device tree source
4 *
5 * Copyright (c) 2013 Heiko Stuebner <heiko@sntech.de>
6 */
7
8/dts-v1/;
9#include "s3c2416.dtsi"
10
11/ {
12 model = "SMDK2416";
13 compatible = "samsung,s3c2416";
14
15 memory {
16 reg = <0x30000000 0x4000000>;
17 };
18
19 clocks {
20 compatible = "simple-bus";
21 #address-cells = <1>;
22 #size-cells = <1>;
23
24 xti: xti {
25 compatible = "fixed-clock";
26 clock-frequency = <12000000>;
27 clock-output-names = "xti";
28 #clock-cells = <0>;
29 };
30 };
31};
32
33&rtc {
34 status = "okay";
35};
36
37&sdhci_0 {
38 pinctrl-names = "default";
39 pinctrl-0 = <&sd1_clk>, <&sd1_cmd>,
40 <&sd1_bus1>, <&sd1_bus4>;
41 bus-width = <4>;
42 broken-cd;
43 status = "okay";
44};
45
46&sdhci_1 {
47 pinctrl-names = "default";
48 pinctrl-0 = <&sd0_clk>, <&sd0_cmd>,
49 <&sd0_bus1>, <&sd0_bus4>;
50 bus-width = <4>;
51 cd-gpios = <&gpf 1 0>;
52 cd-inverted;
53 status = "okay";
54};
55
56&uart_0 {
57 status = "okay";
58 pinctrl-names = "default";
59 pinctrl-0 = <&uart0_data>, <&uart0_fctl>;
60};
61
62&uart_1 {
63 status = "okay";
64 pinctrl-names = "default";
65 pinctrl-0 = <&uart1_data>, <&uart1_fctl>;
66};
67
68&uart_2 {
69 status = "okay";
70 pinctrl-names = "default";
71 pinctrl-0 = <&uart2_data>;
72};
73
74&uart_3 {
75 status = "okay";
76 pinctrl-names = "default";
77 pinctrl-0 = <&uart3_data>;
78};
79
80&watchdog {
81 status = "okay";
82};
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 serial@50000000 {
23 status = "okay";
24 pinctrl-names = "default";
25 pinctrl-0 = <&uart0_data>, <&uart0_fctl>;
26 };
27
28 serial@50004000 {
29 status = "okay";
30 pinctrl-names = "default";
31 pinctrl-0 = <&uart1_data>, <&uart1_fctl>;
32 };
33
34 serial@50008000 {
35 status = "okay";
36 pinctrl-names = "default";
37 pinctrl-0 = <&uart2_data>;
38 };
39
40 serial@5000C000 {
41 status = "okay";
42 pinctrl-names = "default";
43 pinctrl-0 = <&uart3_data>;
44 };
45
46 watchdog@53000000 {
47 status = "okay";
48 };
49
50 rtc@57000000 {
51 status = "okay";
52 };
53
54 sdhci@4AC00000 {
55 pinctrl-names = "default";
56 pinctrl-0 = <&sd0_clk>, <&sd0_cmd>,
57 <&sd0_bus1>, <&sd0_bus4>;
58 bus-width = <4>;
59 cd-gpios = <&gpf 1 0>;
60 cd-inverted;
61 status = "okay";
62 };
63
64 sdhci@4A800000 {
65 pinctrl-names = "default";
66 pinctrl-0 = <&sd1_clk>, <&sd1_cmd>,
67 <&sd1_bus1>, <&sd1_bus4>;
68 bus-width = <4>;
69 broken-cd;
70 status = "okay";
71 };
72};