1269369Sbr/*-
2269369Sbr * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com>
3269369Sbr * All rights reserved.
4269369Sbr *
5269369Sbr * Redistribution and use in source and binary forms, with or without
6269369Sbr * modification, are permitted provided that the following conditions
7269369Sbr * are met:
8269369Sbr * 1. Redistributions of source code must retain the above copyright
9269369Sbr *    notice, this list of conditions and the following disclaimer.
10269369Sbr * 2. Redistributions in binary form must reproduce the above copyright
11269369Sbr *    notice, this list of conditions and the following disclaimer in the
12269369Sbr *    documentation and/or other materials provided with the distribution.
13269369Sbr *
14269369Sbr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15269369Sbr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16269369Sbr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17269369Sbr * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18269369Sbr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19269369Sbr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20269369Sbr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21269369Sbr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22269369Sbr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23269369Sbr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24269369Sbr * SUCH DAMAGE.
25269369Sbr *
26269369Sbr * $FreeBSD$
27269369Sbr */
28269369Sbr
29269369Sbr/dts-v1/;
30269369Sbr
31269369Sbr/include/ "exynos5420.dtsi"
32269369Sbr
33269369Sbr/ {
34269369Sbr	model = "Chromebook Peach Pit";
35269369Sbr
36269369Sbr	memory {
37269369Sbr		device_type = "memory";
38269369Sbr		reg = < 0x20000000 0xdf000000 >; /* 3.5G */
39269369Sbr	};
40269369Sbr
41269369Sbr	SOC: Exynos5@0 {
42269369Sbr
43269369Sbr		fimd0: fimd@14400000 {
44269369Sbr			status = "okay";
45269369Sbr
46269369Sbr			panel-size = < 1366 768 >;
47269369Sbr			panel-hsync = < 80 32 48 >;
48269369Sbr			panel-vsync = < 14 5 3 >;
49269369Sbr			panel-clk-div = < 17 >;
50269369Sbr			panel-backlight-pin = < 25 >;
51269369Sbr		};
52269369Sbr
53269369Sbr		spi2: spi@12d40000 {
54269369Sbr			status = "okay";
55269369Sbr		};
56269369Sbr
57269369Sbr		keyboard-controller {
58269369Sbr			compatible = "google,mkbp-keyb";
59269369Sbr			google,key-rows = <8>;
60269369Sbr			google,key-columns = <13>;
61269369Sbr			freebsd,intr-gpio = < 21 >;
62269369Sbr		};
63269369Sbr
64269369Sbr		usbdrd_phy0: phy@12100000 {
65269369Sbr			vbus-supply = < 217 >;
66269369Sbr		};
67269369Sbr
68269369Sbr		usbdrd_phy1: phy@12500000 {
69269369Sbr			vbus-supply = < 218 >;
70269369Sbr		};
71272712Sbr
72272712Sbr		mmc2: dwmmc@12220000 {
73272712Sbr			status = "okay";
74272712Sbr			num-slots = <1>;
75272712Sbr			supports-highspeed;
76272712Sbr			samsung,dw-mshc-ciu-div = <3>;
77272712Sbr			samsung,dw-mshc-sdr-timing = <2 3>;
78272712Sbr			samsung,dw-mshc-ddr-timing = <1 2>;
79272712Sbr			bus-frequency = <50000000>;
80272712Sbr
81272712Sbr			slot@0 {
82272712Sbr				reg = <0>;
83272712Sbr				bus-width = <4>;
84272712Sbr			};
85272712Sbr		};
86269369Sbr	};
87269369Sbr};
88