xref: /freebsd-src/sys/contrib/device-tree/src/arc/skeleton_hs_idu.dtsi (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only
2*c66ec88fSEmmanuel Vadot/*
3*c66ec88fSEmmanuel Vadot * Copyright (C) 2016 Synopsys, Inc. (www.synopsys.com)
4*c66ec88fSEmmanuel Vadot */
5*c66ec88fSEmmanuel Vadot
6*c66ec88fSEmmanuel Vadot/ {
7*c66ec88fSEmmanuel Vadot	compatible = "snps,arc";
8*c66ec88fSEmmanuel Vadot	#address-cells = <1>;
9*c66ec88fSEmmanuel Vadot	#size-cells = <1>;
10*c66ec88fSEmmanuel Vadot	chosen { };
11*c66ec88fSEmmanuel Vadot	aliases { };
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel Vadot	cpus {
14*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
15*c66ec88fSEmmanuel Vadot		#size-cells = <0>;
16*c66ec88fSEmmanuel Vadot
17*c66ec88fSEmmanuel Vadot		cpu@0 {
18*c66ec88fSEmmanuel Vadot			device_type = "cpu";
19*c66ec88fSEmmanuel Vadot			compatible = "snps,archs38";
20*c66ec88fSEmmanuel Vadot			reg = <0>;
21*c66ec88fSEmmanuel Vadot			clocks = <&core_clk>;
22*c66ec88fSEmmanuel Vadot		};
23*c66ec88fSEmmanuel Vadot		cpu@1 {
24*c66ec88fSEmmanuel Vadot			device_type = "cpu";
25*c66ec88fSEmmanuel Vadot			compatible = "snps,archs38";
26*c66ec88fSEmmanuel Vadot			reg = <1>;
27*c66ec88fSEmmanuel Vadot			clocks = <&core_clk>;
28*c66ec88fSEmmanuel Vadot		};
29*c66ec88fSEmmanuel Vadot		cpu@2 {
30*c66ec88fSEmmanuel Vadot			device_type = "cpu";
31*c66ec88fSEmmanuel Vadot			compatible = "snps,archs38";
32*c66ec88fSEmmanuel Vadot			reg = <2>;
33*c66ec88fSEmmanuel Vadot			clocks = <&core_clk>;
34*c66ec88fSEmmanuel Vadot		};
35*c66ec88fSEmmanuel Vadot		cpu@3 {
36*c66ec88fSEmmanuel Vadot			device_type = "cpu";
37*c66ec88fSEmmanuel Vadot			compatible = "snps,archs38";
38*c66ec88fSEmmanuel Vadot			reg = <3>;
39*c66ec88fSEmmanuel Vadot			clocks = <&core_clk>;
40*c66ec88fSEmmanuel Vadot		};
41*c66ec88fSEmmanuel Vadot	};
42*c66ec88fSEmmanuel Vadot
43*c66ec88fSEmmanuel Vadot	/* TIMER0 with interrupt for clockevent */
44*c66ec88fSEmmanuel Vadot	timer0 {
45*c66ec88fSEmmanuel Vadot		compatible = "snps,arc-timer";
46*c66ec88fSEmmanuel Vadot		interrupts = <16>;
47*c66ec88fSEmmanuel Vadot		interrupt-parent = <&core_intc>;
48*c66ec88fSEmmanuel Vadot		clocks = <&core_clk>;
49*c66ec88fSEmmanuel Vadot	};
50*c66ec88fSEmmanuel Vadot
51*c66ec88fSEmmanuel Vadot	/* 64-bit Global Free Running Counter */
52*c66ec88fSEmmanuel Vadot	gfrc {
53*c66ec88fSEmmanuel Vadot		compatible = "snps,archs-timer-gfrc";
54*c66ec88fSEmmanuel Vadot		clocks = <&core_clk>;
55*c66ec88fSEmmanuel Vadot	};
56*c66ec88fSEmmanuel Vadot
57*c66ec88fSEmmanuel Vadot	memory {
58*c66ec88fSEmmanuel Vadot		device_type = "memory";
59*c66ec88fSEmmanuel Vadot		reg = <0x80000000 0x10000000>;	/* 256M */
60*c66ec88fSEmmanuel Vadot	};
61*c66ec88fSEmmanuel Vadot};
62