diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2014-05-20 19:06:03 +0200 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2014-05-25 20:05:30 +0200 |
commit | 1252b3313642c3d0dff5b951b625468bf0dcd059 (patch) | |
tree | 73c7e8245d5287efdbeb06bc07846f531bc36306 /arch/arm64/kvm/guest.c | |
parent | ARM: Check if a CPU has gone offline (diff) | |
download | linux-1252b3313642c3d0dff5b951b625468bf0dcd059.tar.xz linux-1252b3313642c3d0dff5b951b625468bf0dcd059.zip |
arm64: KVM: Enable minimalistic support for Cortex-A53
In order to allow KVM to run on Cortex-A53 implementations, wire the
minimal support required.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'arch/arm64/kvm/guest.c')
-rw-r--r-- | arch/arm64/kvm/guest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm64/kvm/guest.c b/arch/arm64/kvm/guest.c index 08745578d54d..60b5c31f3c10 100644 --- a/arch/arm64/kvm/guest.c +++ b/arch/arm64/kvm/guest.c @@ -214,6 +214,8 @@ int __attribute_const__ kvm_target_cpu(void) return KVM_ARM_TARGET_AEM_V8; case ARM_CPU_PART_FOUNDATION: return KVM_ARM_TARGET_FOUNDATION_V8; + case ARM_CPU_PART_CORTEX_A53: + return KVM_ARM_TARGET_CORTEX_A53; case ARM_CPU_PART_CORTEX_A57: return KVM_ARM_TARGET_CORTEX_A57; }; |