exynos4412-odroidu3.dts revision 279377
1279377Simp/*
2279377Simp * Hardkernel's Exynos4412 based ODROID-U3 board device tree source
3279377Simp *
4279377Simp * Copyright (c) 2014 Marek Szyprowski <m.szyprowski@samsung.com>
5279377Simp *
6279377Simp * Device tree source file for Hardkernel's ODROID-U3 board which is based
7279377Simp * on Samsung's Exynos4412 SoC.
8279377Simp *
9279377Simp * This program is free software; you can redistribute it and/or modify
10279377Simp * it under the terms of the GNU General Public License version 2 as
11279377Simp * published by the Free Software Foundation.
12279377Simp*/
13279377Simp
14279377Simp/dts-v1/;
15279377Simp#include "exynos4412-odroid-common.dtsi"
16279377Simp
17279377Simp/ {
18279377Simp	model = "Hardkernel ODROID-U3 board based on Exynos4412";
19279377Simp	compatible = "hardkernel,odroid-u3", "samsung,exynos4412", "samsung,exynos4";
20279377Simp
21279377Simp	memory {
22279377Simp		reg = <0x40000000 0x7FF00000>;
23279377Simp	};
24279377Simp
25279377Simp	leds {
26279377Simp		compatible = "gpio-leds";
27279377Simp		led1 {
28279377Simp			label = "led1:heart";
29279377Simp			gpios = <&gpc1 0 1>;
30279377Simp			default-state = "on";
31279377Simp			linux,default-trigger = "heartbeat";
32279377Simp		};
33279377Simp	};
34279377Simp};
35279377Simp
36279377Simp&usb3503 {
37279377Simp	clock-names = "refclk";
38279377Simp	clocks = <&pmu_system_controller 0>;
39279377Simp	refclk-frequency = <24000000>;
40279377Simp};
41279377Simp
42279377Simp&ehci {
43279377Simp	port@1 {
44279377Simp		status = "okay";
45279377Simp	};
46279377Simp	port@2 {
47279377Simp		status = "okay";
48279377Simp	};
49279377Simp};
50279377Simp
51279377Simp&sound {
52279377Simp	simple-audio-card,name = "Odroid-U3";
53279377Simp	simple-audio-card,widgets =
54279377Simp		"Headphone", "Headphone Jack",
55279377Simp		"Speakers", "Speakers";
56279377Simp	simple-audio-card,routing =
57279377Simp		"Headphone Jack", "HPL",
58279377Simp		"Headphone Jack", "HPR",
59279377Simp		"Headphone Jack", "MICBIAS",
60279377Simp		"IN1", "Headphone Jack",
61279377Simp		"Speakers", "SPKL",
62279377Simp		"Speakers", "SPKR";
63279377Simp};
64