vybrid-quartz.dts revision 262483
1262456Sbr/*-
2262456Sbr * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com>
3262456Sbr * All rights reserved.
4262456Sbr *
5262456Sbr * Redistribution and use in source and binary forms, with or without
6262456Sbr * modification, are permitted provided that the following conditions
7262456Sbr * are met:
8262456Sbr * 1. Redistributions of source code must retain the above copyright
9262456Sbr *    notice, this list of conditions and the following disclaimer.
10262456Sbr * 2. Redistributions in binary form must reproduce the above copyright
11262456Sbr *    notice, this list of conditions and the following disclaimer in the
12262456Sbr *    documentation and/or other materials provided with the distribution.
13262456Sbr *
14262456Sbr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15262456Sbr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16262456Sbr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17262456Sbr * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18262456Sbr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19262456Sbr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20262456Sbr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21262456Sbr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22262456Sbr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23262456Sbr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24262456Sbr * SUCH DAMAGE.
25262456Sbr *
26262456Sbr * $FreeBSD: head/sys/boot/fdt/dts/vybrid-quartz.dts 262483 2014-02-25 17:02:11Z br $
27262456Sbr */
28262456Sbr
29262456Sbr/dts-v1/;
30262456Sbr
31262456Sbr/include/ "vybrid.dtsi"
32262456Sbr
33262456Sbr/ {
34262456Sbr	model = "Device Solutions Quartz Module";
35262456Sbr
36262456Sbr	memory {
37262456Sbr		device_type = "memory";
38262456Sbr		reg = < 0x80000000 0x10000000 >;	/* 256MB RAM */
39262456Sbr	};
40262456Sbr
41262456Sbr	SOC: vybrid {
42262456Sbr		serial0: serial@40027000 {
43262456Sbr			status = "okay";
44262456Sbr		};
45262456Sbr
46262456Sbr		fec1: ethernet@400D1000 {
47262456Sbr			status = "okay";
48262483Sbr			iomux_config = < 54 0x103192
49262483Sbr					 55 0x103193
50262483Sbr					 56 0x103191
51262483Sbr					 57 0x103191
52262483Sbr					 58 0x103191
53262483Sbr					 59 0x103191
54262483Sbr					 60 0x103192
55262483Sbr					 61 0x103192
56262483Sbr					 62 0x103192
57262483Sbr					  0 0x203191 >;
58262456Sbr		};
59262456Sbr
60262456Sbr		edma1: edma@40098000 {
61262456Sbr			status = "okay";
62262456Sbr		};
63262456Sbr	};
64262456Sbr
65262456Sbr	chosen {
66262456Sbr		bootargs = "-v";
67262456Sbr		stdin = "serial0";
68262456Sbr		stdout = "serial0";
69262456Sbr	};
70262456Sbr};
71