blob: cb1cfe7239c44373a764cf14a739738807325961 [file] [log] [blame]
Dongjin Kim800974a2013-01-10 17:12:50 -08001/*
2 * Hardkernel's Exynos4412 based ODROID-X board device tree source
3 *
4 * Copyright (c) 2012 Dongjin Kim <tobetter@gmail.com>
5 *
Marek Szyprowskiec601ff2014-07-16 02:54:07 +09006 * Device tree source file for Hardkernel's ODROID-X board which is based
7 * on Samsung's Exynos4412 SoC.
Dongjin Kim800974a2013-01-10 17:12:50 -08008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12*/
13
14/dts-v1/;
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090015#include "exynos4412-odroid-common.dtsi"
Dongjin Kim800974a2013-01-10 17:12:50 -080016
17/ {
18 model = "Hardkernel ODROID-X board based on Exynos4412";
Sachin Kamat8bdb31b2014-03-21 02:17:22 +090019 compatible = "hardkernel,odroid-x", "samsung,exynos4412", "samsung,exynos4";
Dongjin Kim800974a2013-01-10 17:12:50 -080020
21 memory {
Marek Szyprowskif9e45a62014-07-16 02:54:06 +090022 reg = <0x40000000 0x3FF00000>;
Dongjin Kim800974a2013-01-10 17:12:50 -080023 };
24
25 leds {
26 compatible = "gpio-leds";
27 led1 {
28 label = "led1:heart";
29 gpios = <&gpc1 0 1>;
30 default-state = "on";
31 linux,default-trigger = "heartbeat";
32 };
33 led2 {
34 label = "led2:mmc0";
35 gpios = <&gpc1 2 1>;
36 default-state = "on";
37 linux,default-trigger = "mmc0";
38 };
39 };
40
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090041 serial@13820000 {
Dongjin Kim800974a2013-01-10 17:12:50 -080042 status = "okay";
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090043 };
Dongjin Kim800974a2013-01-10 17:12:50 -080044
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090045 serial@13830000 {
46 status = "okay";
Dongjin Kim800974a2013-01-10 17:12:50 -080047 };
48
Marek Szyprowski081a15e2014-07-16 02:54:07 +090049 gpio_keys {
50 pinctrl-0 = <&gpio_power_key &gpio_home_key>;
51
52 home_key {
53 interrupt-parent = <&gpx2>;
54 interrupts = <2 0>;
55 gpios = <&gpx2 2 0>;
56 linux,code = <KEY_HOME>;
57 label = "home key";
58 debounce-interval = <10>;
59 gpio-key,wakeup;
60 };
61 };
62
Dongjin Kim800974a2013-01-10 17:12:50 -080063 regulator_p3v3 {
64 compatible = "regulator-fixed";
65 regulator-name = "p3v3_en";
66 regulator-min-microvolt = <3300000>;
67 regulator-max-microvolt = <3300000>;
68 gpio = <&gpa1 1 1>;
69 enable-active-high;
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090070 regulator-always-on;
Dongjin Kim800974a2013-01-10 17:12:50 -080071 };
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090072};
Dongjin Kim800974a2013-01-10 17:12:50 -080073
Marek Szyprowskiec601ff2014-07-16 02:54:07 +090074&ehci {
75 port@1 {
Marek Szyprowski0c802442014-07-16 02:54:06 +090076 status = "okay";
77 };
Dongjin Kim800974a2013-01-10 17:12:50 -080078};
Marek Szyprowski081a15e2014-07-16 02:54:07 +090079
80&pinctrl_1 {
81 gpio_home_key: home_key {
82 samsung,pins = "gpx2-2";
83 samsung,pin-pud = <0>;
84 };
85};