fvp_spmc_manifest.dts 1.13 KB
Newer Older
1
2
3
4
5
6
7
8
/*
 * Copyright (c) 2020, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
/dts-v1/;

/ {
J-Alves's avatar
J-Alves committed
9
10
11
	compatible = "arm,ffa-core-manifest-1.0";
	#address-cells = <2>;
	#size-cells = <1>;
12
13

	attribute {
14
		spmc_id = <0x8000>;
J-Alves's avatar
J-Alves committed
15
16
		maj_ver = <0x1>;
		min_ver = <0x0>;
17
18
19
20
		exec_state = <0x0>;
		load_address = <0x0 0x6000000>;
		entrypoint = <0x0 0x6000000>;
	};
21
22
23
24
25
26
27
28
29

	chosen {
		linux,initrd-start = <0>;
		linux,initrd-end = <0>;
	};

	hypervisor {
		compatible = "hafnium,hafnium";
		vm1 {
J-Alves's avatar
J-Alves committed
30
			is_ffa_partition;
31
			debug_name = "cactus-primary";
32
			load_address = <0x7000000>;
33
34
		};
		vm2 {
J-Alves's avatar
J-Alves committed
35
			is_ffa_partition;
36
			debug_name = "cactus-secondary";
37
			load_address = <0x7100000>;
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
			vcpu_count = <2>;
			mem_size = <1048576>;
		};
	};

	cpus {
		#address-cells = <0x2>;
		#size-cells = <0x0>;

		cpu-map {
			cluster0 {
				core0 {
					cpu = <0x2>;
				};
			};
		};

		cpu@0 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x0>;
			enable-method = "psci";
			next-level-cache = <0xc>;
			phandle = <0x2>;
		};
	};

	memory@60000000 {
		device_type = "memory";
J-Alves's avatar
J-Alves committed
67
		reg = <0x0 0x6000000 0x2000000>; /* Trusted DRAM */
68
	};
69
};