From: Sebastian Ott <sebott@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
qemu-arm@nongnu.org, qemu-devel@nongnu.org, kvm@vger.kernel.org,
kvmarm@lists.linux.dev
Subject: Re: [PATCH 2/2] target/arm/kvm: add kvm-psci-version vcpu property
Date: Tue, 28 Oct 2025 12:00:53 +0100 (CET) [thread overview]
Message-ID: <ba03c952-e567-eb2b-f4c8-b1818ee127d6@redhat.com> (raw)
In-Reply-To: <CAFEAcA-urFX=V7kuRA3cRik7PifFQER5eoXC_CZ2jKg7OZz9iA@mail.gmail.com>
On Mon, 27 Oct 2025, Peter Maydell wrote:
> On Thu, 11 Sept 2025 at 15:49, Sebastian Ott <sebott@redhat.com> wrote:
>>
>> Provide a kvm specific vcpu property to override the default
>> (as of kernel v6.13 that would be PSCI v1.3) PSCI version emulated
>> by kvm. Current valid values are: 0.1, 0.2, 1.0, 1.1, 1.2, and 1.3
>>
>> Signed-off-by: Sebastian Ott <sebott@redhat.com>
>> ---
>> docs/system/arm/cpu-features.rst | 5 +++
>> target/arm/cpu.h | 6 +++
>> target/arm/kvm.c | 70 +++++++++++++++++++++++++++++++-
>> 3 files changed, 80 insertions(+), 1 deletion(-)
>>
>> diff --git a/docs/system/arm/cpu-features.rst b/docs/system/arm/cpu-features.rst
>> index 37d5dfd15b..1d32ce0fee 100644
>> --- a/docs/system/arm/cpu-features.rst
>> +++ b/docs/system/arm/cpu-features.rst
>> @@ -204,6 +204,11 @@ the list of KVM VCPU features and their descriptions.
>> the guest scheduler behavior and/or be exposed to the guest
>> userspace.
>>
>> +``kvm-psci-version``
>> + Override the default (as of kernel v6.13 that would be PSCI v1.3)
>> + PSCI version emulated by the kernel. Current valid values are:
>> + 0.1, 0.2, 1.0, 1.1, 1.2, and 1.3
>> +
>> TCG VCPU Features
>> =================
>>
>> diff --git a/target/arm/cpu.h b/target/arm/cpu.h
>> index c15d79a106..44292aab32 100644
>> --- a/target/arm/cpu.h
>> +++ b/target/arm/cpu.h
>> @@ -974,6 +974,12 @@ struct ArchCPU {
>> */
>> uint32_t psci_version;
>>
>> + /*
>> + * Intermediate value used during property parsing.
>> + * Once finalized, the value should be read from psci_version.
>> + */
>> + uint32_t prop_psci_version;
>> +
>> /* Current power state, access guarded by BQL */
>> ARMPSCIState power_state;
>>
>> diff --git a/target/arm/kvm.c b/target/arm/kvm.c
>> index 6672344855..bc6073f395 100644
>> --- a/target/arm/kvm.c
>> +++ b/target/arm/kvm.c
>> @@ -483,6 +483,59 @@ static void kvm_steal_time_set(Object *obj, bool value, Error **errp)
>> ARM_CPU(obj)->kvm_steal_time = value ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF;
>> }
>>
>> +static char *kvm_get_psci_version(Object *obj, Error **errp)
>> +{
>> + ARMCPU *cpu = ARM_CPU(obj);
>> + const char *val;
>> +
>> + switch (cpu->prop_psci_version) {
>> + case QEMU_PSCI_VERSION_0_1:
>> + val = "0.1";
>> + break;
>> + case QEMU_PSCI_VERSION_0_2:
>> + val = "0.2";
>> + break;
>> + case QEMU_PSCI_VERSION_1_0:
>> + val = "1.0";
>> + break;
>> + case QEMU_PSCI_VERSION_1_1:
>> + val = "1.1";
>> + break;
>> + case QEMU_PSCI_VERSION_1_2:
>> + val = "1.2";
>> + break;
>> + case QEMU_PSCI_VERSION_1_3:
>> + val = "1.3";
>> + break;
>> + default:
>> + val = "0.2";
>> + break;
>> + }
>> + return g_strdup(val);
>> +}
>> +
>> +static void kvm_set_psci_version(Object *obj, const char *value, Error **errp)
>> +{
>> + ARMCPU *cpu = ARM_CPU(obj);
>> +
>> + if (!strcmp(value, "0.1")) {
>> + cpu->prop_psci_version = QEMU_PSCI_VERSION_0_1;
>> + } else if (!strcmp(value, "0.2")) {
>> + cpu->prop_psci_version = QEMU_PSCI_VERSION_0_2;
>> + } else if (!strcmp(value, "1.0")) {
>> + cpu->prop_psci_version = QEMU_PSCI_VERSION_1_0;
>> + } else if (!strcmp(value, "1.1")) {
>> + cpu->prop_psci_version = QEMU_PSCI_VERSION_1_1;
>> + } else if (!strcmp(value, "1.2")) {
>> + cpu->prop_psci_version = QEMU_PSCI_VERSION_1_2;
>> + } else if (!strcmp(value, "1.3")) {
>> + cpu->prop_psci_version = QEMU_PSCI_VERSION_1_3;
>
> We already have six values here and it's not implausible
> we might end up with more in future; maybe we should make the
> mapping between string and constant data-driven rather
> than having code written out longhand in the get and set
> functions?
Yes, sure. I'll send out a V2.
Thanks!
Sebastian
next prev parent reply other threads:[~2025-10-28 11:01 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-11 14:49 [PATCH 0/2] arm: add kvm-psci-version vcpu property Sebastian Ott
2025-09-11 14:49 ` [PATCH 1/2] target/arm/kvm: add constants for new PSCI versions Sebastian Ott
2025-09-18 15:26 ` Eric Auger
2025-09-11 14:49 ` [PATCH 2/2] target/arm/kvm: add kvm-psci-version vcpu property Sebastian Ott
2025-09-18 15:26 ` Eric Auger
2025-10-27 16:42 ` Peter Maydell
2025-10-28 11:00 ` Sebastian Ott [this message]
2025-09-11 15:18 ` [PATCH 0/2] arm: " Peter Maydell
2025-09-11 15:59 ` Sebastian Ott
2025-09-11 16:02 ` Peter Maydell
2025-09-11 16:29 ` Sebastian Ott
2025-09-11 16:32 ` Peter Maydell
2025-09-11 16:46 ` Sebastian Ott
2025-09-18 14:25 ` Eric Auger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ba03c952-e567-eb2b-f4c8-b1818ee127d6@redhat.com \
--to=sebott@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.linux.dev \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox