xref: /freebsd/sys/contrib/device-tree/src/arm/broadcom/bcm47081.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Broadcom BCM470X / BCM5301X ARM platform code.
4*f126890aSEmmanuel Vadot * DTS for BCM47081 SoC.
5*f126890aSEmmanuel Vadot *
6*f126890aSEmmanuel Vadot * Copyright © 2014 Rafał Miłecki <zajec5@gmail.com>
7*f126890aSEmmanuel Vadot */
8*f126890aSEmmanuel Vadot
9*f126890aSEmmanuel Vadot#include "bcm5301x.dtsi"
10*f126890aSEmmanuel Vadot
11*f126890aSEmmanuel Vadot/ {
12*f126890aSEmmanuel Vadot	compatible = "brcm,bcm47081";
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot	aliases {
15*f126890aSEmmanuel Vadot		serial0 = &uart0;
16*f126890aSEmmanuel Vadot	};
17*f126890aSEmmanuel Vadot
18*f126890aSEmmanuel Vadot	chosen {
19*f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
20*f126890aSEmmanuel Vadot	};
21*f126890aSEmmanuel Vadot
22*f126890aSEmmanuel Vadot	cpus {
23*f126890aSEmmanuel Vadot		#address-cells = <1>;
24*f126890aSEmmanuel Vadot		#size-cells = <0>;
25*f126890aSEmmanuel Vadot
26*f126890aSEmmanuel Vadot		cpu@0 {
27*f126890aSEmmanuel Vadot			device_type = "cpu";
28*f126890aSEmmanuel Vadot			compatible = "arm,cortex-a9";
29*f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
30*f126890aSEmmanuel Vadot			reg = <0x0>;
31*f126890aSEmmanuel Vadot		};
32*f126890aSEmmanuel Vadot	};
33*f126890aSEmmanuel Vadot};
34*f126890aSEmmanuel Vadot
35*f126890aSEmmanuel Vadot&uart0 {
36*f126890aSEmmanuel Vadot	status = "okay";
37*f126890aSEmmanuel Vadot};
38