1266943Sbr/*-
2266943Sbr * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com>
3266943Sbr * All rights reserved.
4266943Sbr *
5266943Sbr * Redistribution and use in source and binary forms, with or without
6266943Sbr * modification, are permitted provided that the following conditions
7266943Sbr * are met:
8266943Sbr * 1. Redistributions of source code must retain the above copyright
9266943Sbr *    notice, this list of conditions and the following disclaimer.
10266943Sbr * 2. Redistributions in binary form must reproduce the above copyright
11266943Sbr *    notice, this list of conditions and the following disclaimer in the
12266943Sbr *    documentation and/or other materials provided with the distribution.
13266943Sbr *
14266943Sbr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15266943Sbr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16266943Sbr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17266943Sbr * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18266943Sbr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19266943Sbr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20266943Sbr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21266943Sbr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22266943Sbr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23266943Sbr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24266943Sbr * SUCH DAMAGE.
25266943Sbr *
26266943Sbr * $FreeBSD: releng/11.0/sys/boot/fdt/dts/arm/exynos5420-arndale-octa.dts 272712 2014-10-07 17:39:30Z br $
27266943Sbr */
28266943Sbr
29266943Sbr/dts-v1/;
30266943Sbr
31266943Sbr/include/ "exynos5420.dtsi"
32266943Sbr
33266943Sbr/ {
34266943Sbr	model = "Arndale Octa Board";
35266943Sbr
36266943Sbr	memory {
37266943Sbr		device_type = "memory";
38269369Sbr		reg = < 0x20000000 0x7f200000 >;  /* 2G */
39266943Sbr	};
40266943Sbr
41266943Sbr	SOC: Exynos5@0 {
42266943Sbr		serial3: serial@12C30000 {
43266943Sbr			status = "okay";
44266943Sbr		};
45269369Sbr
46269369Sbr		usb@12110000 {
47269369Sbr			status = "okay";
48269369Sbr		};
49269369Sbr
50272712Sbr		mmc2: dwmmc@12220000 {
51272712Sbr			status = "okay";
52272712Sbr			num-slots = <1>;
53272712Sbr			supports-highspeed;
54272712Sbr			samsung,dw-mshc-ciu-div = <3>;
55272712Sbr			samsung,dw-mshc-sdr-timing = <2 3>;
56272712Sbr			samsung,dw-mshc-ddr-timing = <1 2>;
57272712Sbr			bus-frequency = <50000000>;
58272712Sbr
59272712Sbr			slot@0 {
60272712Sbr				reg = <0>;
61272712Sbr				bus-width = <4>;
62272712Sbr			};
63269369Sbr		};
64266943Sbr	};
65266943Sbr
66266943Sbr	chosen {
67266943Sbr		stdin = &serial3;
68266943Sbr		stdout = &serial3;
69266943Sbr	};
70266943Sbr};
71