fvp-base-gicv3-psci-dynamiq-2t.dts 2.95 KB
Newer Older
Imre Kis's avatar
Imre Kis committed
1
/*
2
 * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
Imre Kis's avatar
Imre Kis committed
3
4
5
6
7
8
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/dts-v1/;

9
#include "fvp-base-gicv3-psci-dynamiq-common.dtsi"
Imre Kis's avatar
Imre Kis committed
10

11
12
&CPU_MAP {
	/delete-node/ cluster0;
Imre Kis's avatar
Imre Kis committed
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
	cluster0 {
		core0 {
			thread0 {
				cpu = <&CPU0>;
			};
			thread1 {
				cpu = <&CPU1>;
			};
		};
		core1 {
			thread0 {
				cpu = <&CPU2>;
			};
			thread1 {
				cpu = <&CPU3>;
			};
		};
		core2 {
			thread0 {
				cpu = <&CPU4>;
			};
			thread1 {
				cpu = <&CPU5>;
			};
		};
		core3 {
			thread0 {
				cpu = <&CPU6>;
			};
			thread1 {
				cpu = <&CPU7>;
			};
		};
		core4 {
			thread0 {
				cpu = <&CPU8>;
			};
			thread1 {
				cpu = <&CPU9>;
			};
		};
		core5 {
			thread0 {
				cpu = <&CPU10>;
			};
			thread1 {
				cpu = <&CPU11>;
			};
		};
		core6 {
			thread0 {
				cpu = <&CPU12>;
			};
			thread1 {
				cpu = <&CPU13>;
			};
		};
		core7 {
			thread0 {
				cpu = <&CPU14>;
			};
			thread1 {
				cpu = <&CPU15>;
			};
		};
	};
Imre Kis's avatar
Imre Kis committed
80
81
};

82
83
84
85
86
/ {
	cpus {
		CPU0:cpu@0 {
			reg = <0x0 0x0>;
		};
Imre Kis's avatar
Imre Kis committed
87

88
89
90
		CPU1:cpu@1 {
			reg = <0x0 0x1>;
		};
Imre Kis's avatar
Imre Kis committed
91

92
93
94
		CPU2:cpu@2 {
			reg = <0x0 0x100>;
		};
Imre Kis's avatar
Imre Kis committed
95

96
97
98
		CPU3:cpu@3 {
			reg = <0x0 0x101>;
		};
Imre Kis's avatar
Imre Kis committed
99

100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
		CPU4:cpu@100 {
			reg = <0x0 0x200>;
		};

		CPU5:cpu@101 {
			reg = <0x0 0x201>;
		};

		CPU6:cpu@102 {
			reg = <0x0 0x300>;
		};

		CPU7:cpu@103 {
			reg = <0x0 0x301>;
		};

		CPU8:cpu@200 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x400>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};

		CPU9:cpu@201 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x401>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};

		CPU10:cpu@202 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x500>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};

		CPU11:cpu@203 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x501>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};

		CPU12:cpu@300 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x600>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};

		CPU13:cpu@301 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x601>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};

		CPU14:cpu@302 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x700>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};
Imre Kis's avatar
Imre Kis committed
178

179
180
181
182
183
184
185
186
187
		CPU15:cpu@303 {
			device_type = "cpu";
			compatible = "arm,armv8";
			reg = <0x0 0x701>;
			enable-method = "psci";
			cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
			next-level-cache = <&L2_0>;
		};
	};
Imre Kis's avatar
Imre Kis committed
188
};