[PATCH v3 10/18] KVM: arm64: Handle PSCI calls for protected VMs at EL2
Vincent Donnefort
vdonnefort at google.com
Tue Sep 22 10:07:00 PDT 2026
On Mon, Sep 14, 2026 at 12:33:30PM +0100, Fuad Tabba wrote:
> EL2 implements PSCI 1.1 for protected VMs: CPU_ON, CPU_OFF,
> PSCI_VERSION and PSCI_FEATURES are decided at EL2 (CPU_ON and CPU_OFF
> still exit to the host, which only schedules or parks the target),
> AFFINITY_INFO, CPU_SUSPEND and the platform power operations are
> forwarded to the host, and anything else returns NOT_SUPPORTED,
> including the TRNG calls and the functions above 1.1, SYSTEM_OFF2
> among them, that the host handled for a protected guest until now.
> TRNG for protected guests is a follow-up. AFFINITY_INFO stays
> with the host, which returns OFF only once it has parked the target:
> the host is what a guest polls to see a CPU_OFF complete before it
> issues the next CPU_ON, as Linux does on hotplug.
>
> Three consequences follow:
>
> - A protected VM has one primary vCPU, the first whose hyp vCPU is
> created with mp_state RUNNABLE. A second one, or an mp_state other
> than RUNNABLE or STOPPED, fails that vCPU's first KVM_RUN with
> -EINVAL.
>
> - CPU_ON finds its target among the hyp vCPUs, which exist from the
> target's first KVM_RUN; before that the guest gets
> INVALID_PARAMETERS.
>
> - A vCPU EL2 holds powered off doesn't run: handle___kvm_vcpu_run()
> returns ARM_EXCEPTION_IL, reported as KVM_EXIT_FAIL_ENTRY. Its
> existing bail-outs return the same code instead of an -EINVAL that
> handle_exit() didn't recognise, for every hyp vCPU.
>
> Non-protected VMs keep power_state ON and accept any mp_state.
>
> Each protected vCPU is OFF, ON_PENDING or ON. CPU_ON moves the target
> to ON_PENDING, and the target's next run resets it and moves it to ON.
> The racing transitions are cmpxchg, and the reset state is published
> with a release/acquire pair, documented at each site. CPU_OFF publishes
> OFF with a release, so the target's clear of reset_state.reset is
> ordered before it and a CPU_ON that then wins on OFF republishes after
> the clear. Rolling a CPU_ON the host failed back to OFF needs the
> host's return value, which the per-EC marshalling patch delivers along
> with the rollback. Until then such a target stays ON_PENDING, and the
> reset has no observable effect: flush_hyp_vcpu() copies the host's
> context in on every entry until that patch removes the copy, so the
> target enters on the host's values rather than the ones EL2 reset.
>
> Signed-off-by: Fuad Tabba <fuad.tabba at linux.dev>
> ---
> arch/arm64/kvm/hyp/include/nvhe/pkvm.h | 14 ++
> arch/arm64/kvm/hyp/nvhe/hyp-main.c | 25 ++-
> arch/arm64/kvm/hyp/nvhe/pkvm.c | 283 ++++++++++++++++++++++++-
> 3 files changed, 311 insertions(+), 11 deletions(-)
>
[...]
> +
> +/*
> + * Returns true when handled at EL2, false when the host must wake the target
> + * vCPU.
> + */
> +static bool pvm_psci_vcpu_on(struct pkvm_hyp_vcpu *hyp_vcpu)
> +{
> + struct pkvm_hyp_vm *hyp_vm = pkvm_hyp_vcpu_to_hyp_vm(hyp_vcpu);
> + struct vcpu_reset_state *reset_state;
> + struct pkvm_hyp_vcpu *target;
> + unsigned long cpu_id, ret;
> + int power_state;
> +
> + cpu_id = smccc_get_arg1(&hyp_vcpu->vcpu);
> + if (!kvm_psci_valid_affinity(&hyp_vcpu->vcpu, cpu_id)) {
> + ret = PSCI_RET_INVALID_PARAMS;
> + goto error;
> + }
> +
> + target = pkvm_mpidr_to_hyp_vcpu(hyp_vm, cpu_id);
> + if (!target) {
> + ret = PSCI_RET_INVALID_PARAMS;
> + goto error;
> + }
> +
> + /*
> + * vCPUs race to power on the same target. Relaxed: reset_state
> + * is published by the release on reset_state.reset below.
> + */
> + power_state = cmpxchg_relaxed(&target->power_state,
> + PSCI_0_2_AFFINITY_LEVEL_OFF,
> + PSCI_0_2_AFFINITY_LEVEL_ON_PENDING);
> + switch (power_state) {
> + case PSCI_0_2_AFFINITY_LEVEL_ON_PENDING:
> + ret = PSCI_RET_ON_PENDING;
> + goto error;
> + case PSCI_0_2_AFFINITY_LEVEL_ON:
> + ret = PSCI_RET_ALREADY_ON;
> + goto error;
> + case PSCI_0_2_AFFINITY_LEVEL_OFF:
> + break;
> + default:
> + ret = PSCI_RET_INTERNAL_FAILURE;
> + goto error;
> + }
> +
> + reset_state = &target->vcpu.arch.reset_state;
> + reset_state->pc = smccc_get_arg2(&hyp_vcpu->vcpu);
> + reset_state->r0 = smccc_get_arg3(&hyp_vcpu->vcpu);
> + reset_state->be = kvm_vcpu_is_be(&hyp_vcpu->vcpu);
> + /*
> + * Publish reset_state.{pc, r0, be} to the target vCPU. Pairs with
> + * smp_load_acquire(&reset_state->reset) in pkvm_reset_vcpu().
> + */
> + smp_store_release(&reset_state->reset, true);
> +
> + /* The host requests KVM_REQ_VCPU_RESET and wakes the target. */
> + return false;
> +
> +error:
> + smccc_set_retval(&hyp_vcpu->vcpu, ret, 0, 0, 0);
> + return true;
> +}
> +
> +/*
> + * Returns true when handled at EL2, false when the host must stop scheduling
> + * the vCPU.
> + */
> +static bool pvm_psci_vcpu_off(struct pkvm_hyp_vcpu *hyp_vcpu)
> +{
> + /* No other writer runs while this vCPU is ON and executing. */
> + WARN_ON(READ_ONCE(hyp_vcpu->power_state) != PSCI_0_2_AFFINITY_LEVEL_ON);
> +
> + /*
> + * Orders pkvm_reset_vcpu()'s clear of reset_state.reset before OFF, so
> + * a CPU_ON that wins on OFF republishes after it. Pairs with the
> + * cmpxchg in pvm_psci_vcpu_on().
> + */
> + smp_store_release(&hyp_vcpu->power_state, PSCI_0_2_AFFINITY_LEVEL_OFF);
Is there an issue either with the comment or with pvm_psci_vcpu_on()? the
cmpxchg is relaxed. I would have expected cmpxchg_acquire().
> +
> + /* Return to the host so that it can finish powering off the vcpu. */
> + return false;
> +}
> +
[...]
--
Vincent
More information about the linux-arm-kernel
mailing list