1283276Sgonzo/*-
2283276Sgonzo * Copyright (c) 2015 Oleksandr Tymoshenko <gonzo@freebsd.org>
3283276Sgonzo * All rights reserved.
4283276Sgonzo *
5283276Sgonzo * Redistribution and use in source and binary forms, with or without
6283276Sgonzo * modification, are permitted provided that the following conditions
7283276Sgonzo * are met:
8283276Sgonzo * 1. Redistributions of source code must retain the above copyright
9283276Sgonzo *    notice, this list of conditions and the following disclaimer.
10283276Sgonzo * 2. Redistributions in binary form must reproduce the above copyright
11283276Sgonzo *    notice, this list of conditions and the following disclaimer in the
12283276Sgonzo *    documentation and/or other materials provided with the distribution.
13283276Sgonzo *
14283276Sgonzo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15283276Sgonzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16283276Sgonzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17283276Sgonzo * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18283276Sgonzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19283276Sgonzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20283276Sgonzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21283276Sgonzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22283276Sgonzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23283276Sgonzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24283276Sgonzo * SUCH DAMAGE.
25283276Sgonzo * 
26283276Sgonzo * $FreeBSD: releng/11.0/sys/boot/fdt/dts/arm/pandaboard-common.dtsi 295655 2016-02-16 11:38:38Z skra $
27283276Sgonzo */
28283276Sgonzo
29283276Sgonzo&mmc1 {
30283276Sgonzo	non-removable; /* XXX need real solution */
31283276Sgonzo};
32283276Sgonzo
33283276Sgonzo&mmc5 {
34283276Sgonzo	status = "disabled";
35283276Sgonzo};
36283276Sgonzo
37283276Sgonzo/ {
38283276Sgonzo	ocp {
39283276Sgonzo		global-timer@48240600 {
40283276Sgonzo			compatible = "arm,cortex-a9-global-timer";
41283276Sgonzo			reg = <0x48240200 0x20>;
42283276Sgonzo			interrupts = <GIC_PPI 11 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_HIGH)>;
43283276Sgonzo		};
44295655Sskra
45295655Sskra		elm: elm@48078000 {
46295655Sskra			interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
47295655Sskra		};
48283276Sgonzo	};
49283276Sgonzo	chosen {
50283276Sgonzo		stdin = "serial2";
51283276Sgonzo		stdout = "serial2";
52283276Sgonzo	};
53283276Sgonzo};
54