Deleted Added
full compact
exynos4412-odroidx.dts (279385) exynos4412-odroidx.dts (295436)
1/*
2 * Hardkernel's Exynos4412 based ODROID-X board device tree source
3 *
4 * Copyright (c) 2012 Dongjin Kim <tobetter@gmail.com>
5 *
6 * Device tree source file for Hardkernel's ODROID-X board which is based
7 * on Samsung's Exynos4412 SoC.
8 *

--- 12 unchanged lines hidden (view full) ---

21 memory {
22 reg = <0x40000000 0x3FF00000>;
23 };
24
25 leds {
26 compatible = "gpio-leds";
27 led1 {
28 label = "led1:heart";
1/*
2 * Hardkernel's Exynos4412 based ODROID-X board device tree source
3 *
4 * Copyright (c) 2012 Dongjin Kim <tobetter@gmail.com>
5 *
6 * Device tree source file for Hardkernel's ODROID-X board which is based
7 * on Samsung's Exynos4412 SoC.
8 *

--- 12 unchanged lines hidden (view full) ---

21 memory {
22 reg = <0x40000000 0x3FF00000>;
23 };
24
25 leds {
26 compatible = "gpio-leds";
27 led1 {
28 label = "led1:heart";
29 gpios = <&gpc1 0 1>;
29 gpios = <&gpc1 0 GPIO_ACTIVE_LOW>;
30 default-state = "on";
31 linux,default-trigger = "heartbeat";
32 };
33 led2 {
34 label = "led2:mmc0";
30 default-state = "on";
31 linux,default-trigger = "heartbeat";
32 };
33 led2 {
34 label = "led2:mmc0";
35 gpios = <&gpc1 2 1>;
35 gpios = <&gpc1 2 GPIO_ACTIVE_LOW>;
36 default-state = "on";
37 linux,default-trigger = "mmc0";
38 };
39 };
40
36 default-state = "on";
37 linux,default-trigger = "mmc0";
38 };
39 };
40
41 serial@13820000 {
42 status = "okay";
43 };
44
45 serial@13830000 {
46 status = "okay";
47 };
48
49 gpio_keys {
50 pinctrl-0 = <&gpio_power_key &gpio_home_key>;
51
52 home_key {
53 interrupt-parent = <&gpx2>;
54 interrupts = <2 0>;
41 gpio_keys {
42 pinctrl-0 = <&gpio_power_key &gpio_home_key>;
43
44 home_key {
45 interrupt-parent = <&gpx2>;
46 interrupts = <2 0>;
55 gpios = <&gpx2 2 0>;
47 gpios = <&gpx2 2 GPIO_ACTIVE_HIGH>;
56 linux,code = <KEY_HOME>;
57 label = "home key";
58 debounce-interval = <10>;
59 gpio-key,wakeup;
60 };
61 };
62
63 regulator_p3v3 {
64 compatible = "regulator-fixed";
65 regulator-name = "p3v3_en";
66 regulator-min-microvolt = <3300000>;
67 regulator-max-microvolt = <3300000>;
48 linux,code = <KEY_HOME>;
49 label = "home key";
50 debounce-interval = <10>;
51 gpio-key,wakeup;
52 };
53 };
54
55 regulator_p3v3 {
56 compatible = "regulator-fixed";
57 regulator-name = "p3v3_en";
58 regulator-min-microvolt = <3300000>;
59 regulator-max-microvolt = <3300000>;
68 gpio = <&gpa1 1 1>;
60 gpio = <&gpa1 1 GPIO_ACTIVE_LOW>;
69 enable-active-high;
70 regulator-always-on;
71 };
72};
73
74&ehci {
75 port@1 {
76 status = "okay";
77 };
78};
79
80&pinctrl_1 {
81 gpio_home_key: home_key {
82 samsung,pins = "gpx2-2";
83 samsung,pin-pud = <0>;
84 };
85};
61 enable-active-high;
62 regulator-always-on;
63 };
64};
65
66&ehci {
67 port@1 {
68 status = "okay";
69 };
70};
71
72&pinctrl_1 {
73 gpio_home_key: home_key {
74 samsung,pins = "gpx2-2";
75 samsung,pin-pud = <0>;
76 };
77};
78
79&serial_2 {
80 status = "okay";
81};
82
83&serial_3 {
84 status = "okay";
85};