From: Mohamed Mediouni <mohamed@unpredictable.fr>
To: mohamed@unpredictable.fr, qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Phil Dennis-Jordan" <phil@philjordan.eu>,
"Alexander Graf" <agraf@csgraf.de>,
"Igor Mammedov" <imammedo@redhat.com>,
"Cameron Esfahani" <dirty@apple.com>,
"Akihiko Odaki" <odaki@rsg.ci.i.u-tokyo.ac.jp>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
qemu-arm@nongnu.org, "Shannon Zhao" <shannon.zhaosl@gmail.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Zhao Liu" <zhao1.liu@intel.com>,
"Roman Bolshakov" <rbolshakov@ddn.com>,
"Ani Sinha" <anisinha@redhat.com>,
"Pedro Barbuda" <pbarbuda@microsoft.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Yanan Wang" <wangyanan55@huawei.com>,
"Sebastian Ott" <sebott@redhat.com>,
"Pierrick Bouvier" <pierrick.bouvier@linaro.org>
Subject: [PATCH v17 01/21] target/arm/kvm: add constants for new PSCI versions
Date: Wed, 21 Jan 2026 14:40:52 +0100 [thread overview]
Message-ID: <20260121134114.9781-2-mohamed@unpredictable.fr> (raw)
In-Reply-To: <20260121134114.9781-1-mohamed@unpredictable.fr>
From: Sebastian Ott <sebott@redhat.com>
Add constants for PSCI version 1_2 and 1_3.
Signed-off-by: Sebastian Ott <sebott@redhat.com>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Akihiko Odaki <odaki@rsg.ci.i.u-tokyo.ac.jp>
---
target/arm/kvm-consts.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/target/arm/kvm-consts.h b/target/arm/kvm-consts.h
index 54ae5da7ce..9fba3e886d 100644
--- a/target/arm/kvm-consts.h
+++ b/target/arm/kvm-consts.h
@@ -97,6 +97,8 @@ MISMATCH_CHECK(QEMU_PSCI_1_0_FN_PSCI_FEATURES, PSCI_1_0_FN_PSCI_FEATURES);
#define QEMU_PSCI_VERSION_0_2 0x00002
#define QEMU_PSCI_VERSION_1_0 0x10000
#define QEMU_PSCI_VERSION_1_1 0x10001
+#define QEMU_PSCI_VERSION_1_2 0x10002
+#define QEMU_PSCI_VERSION_1_3 0x10003
MISMATCH_CHECK(QEMU_PSCI_0_2_RET_TOS_MIGRATION_NOT_REQUIRED, PSCI_0_2_TOS_MP);
/* We don't bother to check every possible version value */
--
2.50.1 (Apple Git-155)
next prev parent reply other threads:[~2026-01-21 13:42 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-21 13:40 [PATCH v17 00/21] WHPX support for Arm Mohamed Mediouni
2026-01-21 13:40 ` Mohamed Mediouni [this message]
2026-01-21 20:32 ` [PATCH v17 01/21] target/arm/kvm: add constants for new PSCI versions Philippe Mathieu-Daudé
2026-01-21 13:40 ` [PATCH v17 02/21] accel/system: Introduce hwaccel_enabled() helper Mohamed Mediouni
2026-01-21 13:40 ` [PATCH v17 03/21] hw: arm: virt: rework MSI-X configuration Mohamed Mediouni
2026-01-27 10:54 ` Peter Maydell
2026-01-27 12:46 ` Mohamed Mediouni
2026-01-27 12:54 ` Peter Maydell
2026-01-27 13:40 ` Mohamed Mediouni
2026-01-27 14:10 ` Peter Maydell
2026-01-27 15:34 ` Michael S. Tsirkin
2026-01-27 18:31 ` Mohamed Mediouni
2026-01-21 13:40 ` [PATCH v17 04/21] qtest: hw/arm: virt: add new test case for GICv3 + GICv2m Mohamed Mediouni
2026-01-21 13:40 ` [PATCH v17 05/21] docs: arm: update virt machine model description Mohamed Mediouni
2026-01-21 13:40 ` [PATCH v17 06/21] whpx: Move around files before introducing AArch64 support Mohamed Mediouni
2026-01-21 13:40 ` [PATCH v17 07/21] whpx: reshuffle common code Mohamed Mediouni
2026-01-21 13:40 ` [PATCH v17 08/21] whpx: ifdef out winhvemulation on non-x86_64 Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 09/21] whpx: common: add WHPX_INTERCEPT_DEBUG_TRAPS define Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 10/21] hw, target, accel: whpx: change apic_in_platform to kernel_irqchip Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 11/21] whpx: interrupt controller support Mohamed Mediouni
2026-01-27 10:58 ` Peter Maydell
2026-01-27 11:08 ` Peter Maydell
2026-01-27 12:57 ` Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 12/21] whpx: add arm64 support Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 13/21] whpx: change memory management logic Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 14/21] target/arm: cpu: mark WHPX as supporting PSCI 1.3 Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 15/21] whpx: arm64: clamp down IPA size Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 16/21] hw/arm, accel/hvf, whpx: unify get_physical_address_range between WHPX and HVF Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 17/21] whpx: arm64: implement -cpu host Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 18/21] target/arm: whpx: instantiate GIC early Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 19/21] whpx: arm64: gicv3: add migration blocker Mohamed Mediouni
2026-01-22 10:30 ` Prasad Pandit
2026-01-27 11:03 ` Peter Maydell
2026-01-21 13:41 ` [PATCH v17 20/21] whpx: enable arm64 builds Mohamed Mediouni
2026-01-21 13:41 ` [PATCH v17 21/21] whpx: arm64: add partition-wide reset on the reboot path Mohamed Mediouni
2026-01-27 11:09 ` [PATCH v17 00/21] WHPX support for Arm Peter Maydell
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=20260121134114.9781-2-mohamed@unpredictable.fr \
--to=mohamed@unpredictable.fr \
--cc=agraf@csgraf.de \
--cc=anisinha@redhat.com \
--cc=dirty@apple.com \
--cc=imammedo@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=odaki@rsg.ci.i.u-tokyo.ac.jp \
--cc=pbarbuda@microsoft.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=phil@philjordan.eu \
--cc=philmd@linaro.org \
--cc=pierrick.bouvier@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=rbolshakov@ddn.com \
--cc=richard.henderson@linaro.org \
--cc=sebott@redhat.com \
--cc=shannon.zhaosl@gmail.com \
--cc=wangyanan55@huawei.com \
--cc=zhao1.liu@intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.