[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC 0/9] Support disable/enable CPU features for AArch64
From: |
Peng Liang |
Subject: |
[RFC 0/9] Support disable/enable CPU features for AArch64 |
Date: |
Thu, 13 Aug 2020 18:26:48 +0800 |
QEMU does not support disable/enable CPU features in AArch64 for now.
This patch series add support for CPU features in AArch64.
Firstly, we change the isar struct in ARMCPU to an array for
convenience. Secondly, we add support to configure CPU feautres in
AArch64 and make sure that the ID registers can be synchronized to KVM
so that guest can read the value we configure. Thirdly, we add a
mechanism to solve the dependency relationship of some CPU features.
Last, we add a KVM_CAP_ARM_CPU_FEATURE to check whether KVM supports to
set CPU features in AArch64.
Also export CPU features to the result of qmp query-cpu-model-expansion
so that libvirt can get the supported CPU features.
Update the ID fields to ARMv8.6 and add some CPU features according to
the new ID fields.
With related KVM patch set[1], we can disable/enable CPU features in
AArch64.
[1] https://patchwork.kernel.org/cover/11711693/
Peng Liang (9):
target/arm: convert isar regs to array
target/arm: parse cpu feature related options
target/arm: register CPU features for property
target/arm: Allow ID registers to synchronize to KVM
target/arm: introduce CPU feature dependency mechanism
target/arm: introduce KVM_CAP_ARM_CPU_FEATURE
target/arm: Add CPU features to query-cpu-model-expansion
target/arm: Update ID fields
target/arm: Add more CPU features
hw/intc/armv7m_nvic.c | 48 +--
linux-headers/linux/kvm.h | 1 +
target/arm/cpu.c | 753 ++++++++++++++++++++++++++++++++------
target/arm/cpu.h | 245 +++++++------
target/arm/cpu64.c | 271 +++++++++-----
target/arm/cpu_tcg.c | 250 ++++++-------
target/arm/helper.c | 85 +++--
target/arm/internals.h | 15 +-
target/arm/kvm.c | 38 ++
target/arm/kvm64.c | 86 +++--
target/arm/kvm_arm.h | 10 +
target/arm/monitor.c | 2 +
12 files changed, 1267 insertions(+), 537 deletions(-)
--
2.18.4