diff options
author | Mian M. Hamayun <m.hamayun@virtualopensystems.com> | 2013-12-17 19:42:30 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-12-17 19:42:30 +0000 |
commit | 26861c7ce06c055786323ff4c65af74d735d1c19 (patch) | |
tree | a8b61427d2fc8d1cc1b1c9258a4275595fb056d9 /target-arm/Makefile.objs | |
parent | d356312fdc8640af929e0dbab61c6e514d47feb8 (diff) | |
download | qemu-26861c7ce06c055786323ff4c65af74d735d1c19.zip |
target-arm: Add minimal KVM AArch64 support
Add the bare minimum set of functions needed for control of an
AArch64 KVM vcpu:
* CPU initialization
* minimal get/put register functions which only handle the
basic state of the CPU
Signed-off-by: Mian M. Hamayun <m.hamayun@virtualopensystems.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1385645602-18662-4-git-send-email-peter.maydell@linaro.org
[PMM: significantly overhauled; most notably:
* code lives in kvm64.c rather than using #ifdefs
* support '-cpu host' rather than implicitly using whatever the
host's CPU is regardless of what the user requests
* fix bug attempting to get/set nonexistent X[31]
* fix bug writing 64 bit kernel pstate into uint32_t env field
]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'target-arm/Makefile.objs')
-rw-r--r-- | target-arm/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-arm/Makefile.objs b/target-arm/Makefile.objs index 869ecd05af..190499f068 100644 --- a/target-arm/Makefile.objs +++ b/target-arm/Makefile.objs @@ -2,6 +2,7 @@ obj-y += arm-semi.o obj-$(CONFIG_SOFTMMU) += machine.o obj-$(CONFIG_KVM) += kvm.o obj-$(call land,$(CONFIG_KVM),$(call lnot,$(TARGET_AARCH64))) += kvm32.o +obj-$(call land,$(CONFIG_KVM),$(TARGET_AARCH64)) += kvm64.o obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o obj-y += translate.o op_helper.o helper.o cpu.o obj-y += neon_helper.o iwmmxt_helper.o |