[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 5/8] arm: Set PSCI to 0.2 for HVF
From: |
Alexander Graf |
Subject: |
[PATCH v2 5/8] arm: Set PSCI to 0.2 for HVF |
Date: |
Mon, 30 Nov 2020 04:07:20 +0100 |
In Hypervisor.framework, we just pass PSCI calls straight on to the QEMU
emulation
of it. That means, if TCG is compatible with PSCI 0.2, so are we. Let's
transpose
that fact in code too.
Signed-off-by: Alexander Graf <agraf@csgraf.de>
---
target/arm/cpu.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index 07492e9f9a..db6f7c34ed 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -1062,6 +1062,10 @@ static void arm_cpu_initfn(Object *obj)
if (tcg_enabled()) {
cpu->psci_version = 2; /* TCG implements PSCI 0.2 */
}
+
+ if (hvf_enabled()) {
+ cpu->psci_version = 2; /* HVF uses TCG's PSCI */
+ }
}
static Property arm_cpu_gt_cntfrq_property =
--
2.24.3 (Apple Git-128)
- [PATCH v2 0/8] hvf: Implement Apple Silicon Support, Alexander Graf, 2020/11/29
- [PATCH v2 3/8] hvf: Actually set SIG_IPI mask, Alexander Graf, 2020/11/29
- [PATCH v2 6/8] hvf: arm: Mark CPU as dirty on reset, Alexander Graf, 2020/11/29
- [PATCH v2 5/8] arm: Set PSCI to 0.2 for HVF,
Alexander Graf <=
- [PATCH v2 4/8] hvf: Introduce hvf vcpu struct, Alexander Graf, 2020/11/29
- [PATCH v2 1/8] hvf: Add hypervisor entitlement to output binaries, Alexander Graf, 2020/11/29
- [PATCH v2 8/8] arm: Add Hypervisor.framework build target, Alexander Graf, 2020/11/29
- [PATCH v2 2/8] hvf: Move common code out, Alexander Graf, 2020/11/29
- [PATCH v2 7/8] hvf: Add Apple Silicon support, Alexander Graf, 2020/11/29
- Re: [PATCH v2 0/8] hvf: Implement Apple Silicon Support, no-reply, 2020/11/29