xref: /aosp_15_r20/external/crosvm/cros_fdt/test-files/base.dts (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
1/dts-v1/;
2
3/ {
4	interrupt-parent = <0x01>;
5	compatible = "linux,dummy-virt";
6	#address-cells = <0x02>;
7	#size-cells = <0x02>;
8
9	memory@80000000 {
10		device_type = "memory";
11		reg = <0x00 0x80000000 0x00 0x00001000>;
12	};
13
14	cpus {
15		#address-cells = <0x01>;
16		#size-cells = <0x00>;
17
18		cpu@0 {
19			device_type = "cpu";
20			compatible = "arm,armv8";
21			enable-method = "psci";
22			reg = <0x00>;
23		};
24
25		cpu@1 {
26			device_type = "cpu";
27			compatible = "arm,armv8";
28			enable-method = "psci";
29			reg = <0x01>;
30		};
31	};
32
33	intc@3fff0000 {
34		compatible = "arm,gic-v3";
35		#address-cells = <0x02>;
36		#size-cells = <0x02>;
37		#interrupt-cells = <0x03>;
38		interrupt-controller;
39		reg = <0x00 0x3fff0000 0x00 0x10000 0x00 0x4fff0000 0x00 0x10000>;
40		phandle = <0x01>;
41	};
42
43	__symbols__ {
44		intc = "/intc@3fff0000";
45	};
46};
47