2 * QEMU support -- ARM Power Control specific functions.
4 * Copyright (c) 2016 Jean-Christophe Dubois
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
11 #include "qemu/osdep.h"
14 #include "internals.h"
15 #include "arm-powerctl.h"
17 #include "qemu/main-loop.h"
18 #include "sysemu/tcg.h"
19 #include "target/arm/multiprocessing.h"
21 #ifndef DEBUG_ARM_POWERCTL
22 #define DEBUG_ARM_POWERCTL 0
25 #define DPRINTF(fmt, args...) \
27 if (DEBUG_ARM_POWERCTL) { \
28 fprintf(stderr, "[ARM]%s: " fmt , __func__, ##args); \
32 CPUState
*arm_get_cpu_by_id(uint64_t id
)
36 DPRINTF("cpu %" PRId64
"\n", id
);
39 ARMCPU
*armcpu
= ARM_CPU(cpu
);
41 if (arm_cpu_mp_affinity(armcpu
) == id
) {
46 qemu_log_mask(LOG_GUEST_ERROR
,
47 "[ARM]%s: Requesting unknown CPU %" PRId64
"\n",
61 static void arm_set_cpu_on_async_work(CPUState
*target_cpu_state
,
64 ARMCPU
*target_cpu
= ARM_CPU(target_cpu_state
);
65 struct CpuOnInfo
*info
= (struct CpuOnInfo
*) data
.host_ptr
;
67 /* Initialize the cpu we are turning on */
68 cpu_reset(target_cpu_state
);
69 arm_emulate_firmware_reset(target_cpu_state
, info
->target_el
);
70 target_cpu_state
->halted
= 0;
72 /* We check if the started CPU is now at the correct level */
73 assert(info
->target_el
== arm_current_el(&target_cpu
->env
));
75 if (info
->target_aa64
) {
76 target_cpu
->env
.xregs
[0] = info
->context_id
;
78 target_cpu
->env
.regs
[0] = info
->context_id
;
82 /* CP15 update requires rebuilding hflags */
83 arm_rebuild_hflags(&target_cpu
->env
);
86 /* Start the new CPU at the requested address */
87 cpu_set_pc(target_cpu_state
, info
->entry
);
91 /* Finally set the power status */
93 target_cpu
->power_state
= PSCI_ON
;
96 int arm_set_cpu_on(uint64_t cpuid
, uint64_t entry
, uint64_t context_id
,
97 uint32_t target_el
, bool target_aa64
)
99 CPUState
*target_cpu_state
;
101 struct CpuOnInfo
*info
;
103 assert(bql_locked());
105 DPRINTF("cpu %" PRId64
" (EL %d, %s) @ 0x%" PRIx64
" with R0 = 0x%" PRIx64
106 "\n", cpuid
, target_el
, target_aa64
? "aarch64" : "aarch32", entry
,
109 /* requested EL level need to be in the 1 to 3 range */
110 assert((target_el
> 0) && (target_el
< 4));
112 if (target_aa64
&& (entry
& 3)) {
114 * if we are booting in AArch64 mode then "entry" needs to be 4 bytes
117 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
120 /* Retrieve the cpu we are powering up */
121 target_cpu_state
= arm_get_cpu_by_id(cpuid
);
122 if (!target_cpu_state
) {
123 /* The cpu was not found */
124 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
127 target_cpu
= ARM_CPU(target_cpu_state
);
128 if (target_cpu
->power_state
== PSCI_ON
) {
129 qemu_log_mask(LOG_GUEST_ERROR
,
130 "[ARM]%s: CPU %" PRId64
" is already on\n",
132 return QEMU_ARM_POWERCTL_ALREADY_ON
;
136 * The newly brought CPU is requested to enter the exception level
137 * "target_el" and be in the requested mode (AArch64 or AArch32).
140 if (((target_el
== 3) && !arm_feature(&target_cpu
->env
, ARM_FEATURE_EL3
)) ||
141 ((target_el
== 2) && !arm_feature(&target_cpu
->env
, ARM_FEATURE_EL2
))) {
143 * The CPU does not support requested level
145 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
148 if (!target_aa64
&& arm_feature(&target_cpu
->env
, ARM_FEATURE_AARCH64
)) {
150 * For now we don't support booting an AArch64 CPU in AArch32 mode
151 * TODO: We should add this support later
153 qemu_log_mask(LOG_UNIMP
,
154 "[ARM]%s: Starting AArch64 CPU %" PRId64
155 " in AArch32 mode is not supported yet\n",
157 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
161 * If another CPU has powered the target on we are in the state
162 * ON_PENDING and additional attempts to power on the CPU should
163 * fail (see 6.6 Implementation CPU_ON/CPU_OFF races in the PSCI
166 if (target_cpu
->power_state
== PSCI_ON_PENDING
) {
167 qemu_log_mask(LOG_GUEST_ERROR
,
168 "[ARM]%s: CPU %" PRId64
" is already powering on\n",
170 return QEMU_ARM_POWERCTL_ON_PENDING
;
173 /* To avoid racing with a CPU we are just kicking off we do the
174 * final bit of preparation for the work in the target CPUs
177 info
= g_new(struct CpuOnInfo
, 1);
179 info
->context_id
= context_id
;
180 info
->target_el
= target_el
;
181 info
->target_aa64
= target_aa64
;
183 async_run_on_cpu(target_cpu_state
, arm_set_cpu_on_async_work
,
184 RUN_ON_CPU_HOST_PTR(info
));
186 /* We are good to go */
187 return QEMU_ARM_POWERCTL_RET_SUCCESS
;
190 static void arm_set_cpu_on_and_reset_async_work(CPUState
*target_cpu_state
,
191 run_on_cpu_data data
)
193 ARMCPU
*target_cpu
= ARM_CPU(target_cpu_state
);
195 /* Initialize the cpu we are turning on */
196 cpu_reset(target_cpu_state
);
197 target_cpu_state
->halted
= 0;
199 /* Finally set the power status */
200 assert(bql_locked());
201 target_cpu
->power_state
= PSCI_ON
;
204 int arm_set_cpu_on_and_reset(uint64_t cpuid
)
206 CPUState
*target_cpu_state
;
209 assert(bql_locked());
211 /* Retrieve the cpu we are powering up */
212 target_cpu_state
= arm_get_cpu_by_id(cpuid
);
213 if (!target_cpu_state
) {
214 /* The cpu was not found */
215 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
218 target_cpu
= ARM_CPU(target_cpu_state
);
219 if (target_cpu
->power_state
== PSCI_ON
) {
220 qemu_log_mask(LOG_GUEST_ERROR
,
221 "[ARM]%s: CPU %" PRId64
" is already on\n",
223 return QEMU_ARM_POWERCTL_ALREADY_ON
;
227 * If another CPU has powered the target on we are in the state
228 * ON_PENDING and additional attempts to power on the CPU should
229 * fail (see 6.6 Implementation CPU_ON/CPU_OFF races in the PSCI
232 if (target_cpu
->power_state
== PSCI_ON_PENDING
) {
233 qemu_log_mask(LOG_GUEST_ERROR
,
234 "[ARM]%s: CPU %" PRId64
" is already powering on\n",
236 return QEMU_ARM_POWERCTL_ON_PENDING
;
239 async_run_on_cpu(target_cpu_state
, arm_set_cpu_on_and_reset_async_work
,
242 /* We are good to go */
243 return QEMU_ARM_POWERCTL_RET_SUCCESS
;
246 static void arm_set_cpu_off_async_work(CPUState
*target_cpu_state
,
247 run_on_cpu_data data
)
249 ARMCPU
*target_cpu
= ARM_CPU(target_cpu_state
);
251 assert(bql_locked());
252 target_cpu
->power_state
= PSCI_OFF
;
253 target_cpu_state
->halted
= 1;
254 target_cpu_state
->exception_index
= EXCP_HLT
;
257 int arm_set_cpu_off(uint64_t cpuid
)
259 CPUState
*target_cpu_state
;
262 assert(bql_locked());
264 DPRINTF("cpu %" PRId64
"\n", cpuid
);
266 /* change to the cpu we are powering up */
267 target_cpu_state
= arm_get_cpu_by_id(cpuid
);
268 if (!target_cpu_state
) {
269 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
271 target_cpu
= ARM_CPU(target_cpu_state
);
272 if (target_cpu
->power_state
== PSCI_OFF
) {
273 qemu_log_mask(LOG_GUEST_ERROR
,
274 "[ARM]%s: CPU %" PRId64
" is already off\n",
276 return QEMU_ARM_POWERCTL_IS_OFF
;
279 /* Queue work to run under the target vCPUs context */
280 async_run_on_cpu(target_cpu_state
, arm_set_cpu_off_async_work
,
283 return QEMU_ARM_POWERCTL_RET_SUCCESS
;
286 static void arm_reset_cpu_async_work(CPUState
*target_cpu_state
,
287 run_on_cpu_data data
)
290 cpu_reset(target_cpu_state
);
293 int arm_reset_cpu(uint64_t cpuid
)
295 CPUState
*target_cpu_state
;
298 assert(bql_locked());
300 DPRINTF("cpu %" PRId64
"\n", cpuid
);
302 /* change to the cpu we are resetting */
303 target_cpu_state
= arm_get_cpu_by_id(cpuid
);
304 if (!target_cpu_state
) {
305 return QEMU_ARM_POWERCTL_INVALID_PARAM
;
307 target_cpu
= ARM_CPU(target_cpu_state
);
309 if (target_cpu
->power_state
== PSCI_OFF
) {
310 qemu_log_mask(LOG_GUEST_ERROR
,
311 "[ARM]%s: CPU %" PRId64
" is off\n",
313 return QEMU_ARM_POWERCTL_IS_OFF
;
316 /* Queue work to run under the target vCPUs context */
317 async_run_on_cpu(target_cpu_state
, arm_reset_cpu_async_work
,
320 return QEMU_ARM_POWERCTL_RET_SUCCESS
;