-
Notifications
You must be signed in to change notification settings - Fork 226
/
Copy pathspmc_el2_manifest.dts
79 lines (67 loc) · 1.27 KB
/
spmc_el2_manifest.dts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* Copyright 2022 The Hafnium Authors.
*
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/BSD-3-Clause.
*/
/dts-v1/;
/ {
compatible = "arm,ffa-core-manifest-1.0";
#address-cells = <2>;
#size-cells = <1>;
attribute {
spmc_id = <0x8000>;
maj_ver = <0x1>;
min_ver = <0x1>;
exec_state = <0x0>;
load_address = <0x0 0xe100000>;
entrypoint = <0x0 0xe100000>;
binary_size = <0x80000>;
};
hypervisor {
compatible = "hafnium,hafnium";
vm1 {
is_ffa_partition;
load_address = <0xe300000>;
debug_name = "op-tee";
vcpu_count = <4>;
mem_size = <0xd00000>;
};
};
cpus {
#address-cells = <0x02>;
#size-cells = <0x00>;
cpu@0 {
device_type = "cpu";
reg = <0x0 0x0>;
};
cpu@3 {
device_type = "cpu";
reg = <0x0 0x3>;
};
cpu@2 {
device_type = "cpu";
reg = <0x0 0x2>;
};
cpu@1 {
device_type = "cpu";
reg = <0x0 0x1>;
};
};
/* VIRT_SECURE_MEM */
memory@0 {
device_type = "memory";
reg = <0x0 0xe000000 0x1000000>;
};
/* NS memory */
memory@1 {
device_type = "ns-memory";
reg = <0x0 0x40000000 0x80000000>;
};
/* Device memory */
memory@2 {
device_type = "device-memory";
reg = <0x0 0x0 0xe000000>;
};
};