xref: /freebsd/sys/contrib/device-tree/src/arm/broadcom/bcm4708.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot/*
2*f126890aSEmmanuel Vadot * Broadcom BCM470X / BCM5301X ARM platform code.
3*f126890aSEmmanuel Vadot * DTS for BCM4708 SoC.
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright 2013-2014 Hauke Mehrtens <hauke@hauke-m.de>
6*f126890aSEmmanuel Vadot *
7*f126890aSEmmanuel Vadot * Licensed under the GNU/GPL. See COPYING for details.
8*f126890aSEmmanuel Vadot */
9*f126890aSEmmanuel Vadot
10*f126890aSEmmanuel Vadot#include "bcm5301x.dtsi"
11*f126890aSEmmanuel Vadot
12*f126890aSEmmanuel Vadot/ {
13*f126890aSEmmanuel Vadot	compatible = "brcm,bcm4708";
14*f126890aSEmmanuel Vadot
15*f126890aSEmmanuel Vadot	aliases {
16*f126890aSEmmanuel Vadot		serial0 = &uart0;
17*f126890aSEmmanuel Vadot	};
18*f126890aSEmmanuel Vadot
19*f126890aSEmmanuel Vadot	chosen {
20*f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
21*f126890aSEmmanuel Vadot	};
22*f126890aSEmmanuel Vadot
23*f126890aSEmmanuel Vadot	cpus {
24*f126890aSEmmanuel Vadot		#address-cells = <1>;
25*f126890aSEmmanuel Vadot		#size-cells = <0>;
26*f126890aSEmmanuel Vadot		enable-method = "brcm,bcm-nsp-smp";
27*f126890aSEmmanuel Vadot
28*f126890aSEmmanuel Vadot		cpu@0 {
29*f126890aSEmmanuel Vadot			device_type = "cpu";
30*f126890aSEmmanuel Vadot			compatible = "arm,cortex-a9";
31*f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
32*f126890aSEmmanuel Vadot			reg = <0x0>;
33*f126890aSEmmanuel Vadot		};
34*f126890aSEmmanuel Vadot
35*f126890aSEmmanuel Vadot		cpu@1 {
36*f126890aSEmmanuel Vadot			device_type = "cpu";
37*f126890aSEmmanuel Vadot			compatible = "arm,cortex-a9";
38*f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
39*f126890aSEmmanuel Vadot			secondary-boot-reg = <0xffff0400>;
40*f126890aSEmmanuel Vadot			reg = <0x1>;
41*f126890aSEmmanuel Vadot		};
42*f126890aSEmmanuel Vadot	};
43*f126890aSEmmanuel Vadot
44*f126890aSEmmanuel Vadot};
45*f126890aSEmmanuel Vadot
46*f126890aSEmmanuel Vadot&uart0 {
47*f126890aSEmmanuel Vadot	status = "okay";
48*f126890aSEmmanuel Vadot};
49