1263427Sbr/*-
2263427Sbr * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com>
3263427Sbr * All rights reserved.
4263427Sbr *
5263427Sbr * Redistribution and use in source and binary forms, with or without
6263427Sbr * modification, are permitted provided that the following conditions
7263427Sbr * are met:
8263427Sbr * 1. Redistributions of source code must retain the above copyright
9263427Sbr *    notice, this list of conditions and the following disclaimer.
10263427Sbr * 2. Redistributions in binary form must reproduce the above copyright
11263427Sbr *    notice, this list of conditions and the following disclaimer in the
12263427Sbr *    documentation and/or other materials provided with the distribution.
13263427Sbr *
14263427Sbr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15263427Sbr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16263427Sbr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17263427Sbr * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18263427Sbr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19263427Sbr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20263427Sbr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21263427Sbr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22263427Sbr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23263427Sbr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24263427Sbr * SUCH DAMAGE.
25263427Sbr *
26263427Sbr * $FreeBSD: releng/10.2/sys/boot/fdt/dts/arm/exynos5250-chromebook.dts 266341 2014-05-17 19:37:04Z ian $
27263427Sbr */
28263427Sbr
29263427Sbr/dts-v1/;
30263427Sbr
31263427Sbr/include/ "exynos5250.dtsi"
32263427Sbr
33263427Sbr/ {
34263427Sbr	model = "Samsung Chromebook";
35263427Sbr
36263427Sbr	memory {
37263427Sbr		device_type = "memory";
38263427Sbr		reg = < 0x40000000 0x80000000 >;  /* 2G */
39263427Sbr	};
40263427Sbr
41263427Sbr	SOC: Exynos5@0 {
42263427Sbr
43266341Sian		pad0: pad@11400000 {
44266341Sian			status = "okay";
45266341Sian		};
46266341Sian
47263427Sbr		fimd0: fimd@14400000 {
48263427Sbr			status = "okay";
49263427Sbr
50263427Sbr			panel-size = < 1366 768 >;
51263427Sbr			panel-hsync = < 80 32 48 >;
52263427Sbr			panel-vsync = < 14 5 3 >;
53263427Sbr			panel-clk-div = < 17 >;
54263427Sbr			panel-backlight-pin = < 25 >;
55263427Sbr		};
56263427Sbr
57266341Sian		i2c4: i2c@12CA0000 {
58266341Sian			status = "okay";
59266341Sian		};
60266341Sian
61266341Sian		keyboard-controller {
62266341Sian			compatible = "google,cros-ec-keyb";
63266341Sian			keypad,num-rows = <8>;
64266341Sian			keypad,num-columns = <13>;
65266341Sian		};
66263427Sbr	};
67263427Sbr
68263427Sbr	chosen {
69263427Sbr		stdin = &serial2;
70263427Sbr		stdout = &serial2;
71263427Sbr	};
72263427Sbr};
73