qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Cc: kvmarm@lists.cs.columbia.edu,
	Christoffer Dall <christoffer.dall@linaro.org>,
	patches@linaro.org
Subject: [Qemu-devel] [PATCH v2 0/7] target-arm: Support AArch64 KVM
Date: Tue, 17 Dec 2013 12:15:15 +0000	[thread overview]
Message-ID: <1387282522-11280-1-git-send-email-peter.maydell@linaro.org> (raw)

This patchset adds support for basic AArch64 KVM VM control;
it's based on current master. This is a quick resend with the very
minor nits Christoffer pointed out fixed; I'm planning to put it into
a target-arm pullreq in the next day or two.

This patch series supports:
 * 64 bit KVM VM control
 * SMP and UP
 * PSCI boot of secondary CPUs
It doesn't support:
 * migration
 * reset (partly because there's no way to reset a mach-virt system yet)
 * anything except "-cpu host"
 * debugging the VM via qemu gdbstub
 * running 32 bit VMs on a 64 bit system
   [Mian's patchset includes support for that but I have left it out
   for the moment because it needs more thought about UI and so on]

Changes v1->v2:
 * improved a couple of comments
 * compat string for 64 bit is "arm,arm-v8", not -v7
 * removed superfluous include of usb.mak and pci.mak from config

Mian M. Hamayun (2):
  target-arm: Add minimal KVM AArch64 support
  hw/arm/boot: Add boot support for AArch64 processor

Peter Maydell (5):
  target-arm/kvm: Split 32 bit only code into its own file
  target-arm: Clean up handling of AArch64 PSTATE
  configure: Enable KVM for aarch64 host/target combination
  hw/arm/boot: Allow easier swapping in of different loader code
  default-configs: Add config for aarch64-softmmu

 configure                           |   2 +-
 default-configs/aarch64-softmmu.mak |   6 +
 hw/arm/boot.c                       | 193 ++++++++++----
 linux-user/signal.c                 |   6 +-
 target-arm/Makefile.objs            |   2 +
 target-arm/cpu.c                    |   6 +
 target-arm/cpu.h                    |  70 ++++-
 target-arm/gdbstub64.c              |   4 +-
 target-arm/kvm.c                    | 495 +---------------------------------
 target-arm/kvm32.c                  | 515 ++++++++++++++++++++++++++++++++++++
 target-arm/kvm64.c                  | 204 ++++++++++++++
 target-arm/translate-a64.c          |  12 +-
 12 files changed, 954 insertions(+), 561 deletions(-)
 create mode 100644 default-configs/aarch64-softmmu.mak
 create mode 100644 target-arm/kvm32.c
 create mode 100644 target-arm/kvm64.c

-- 
1.8.5

             reply	other threads:[~2013-12-17 12:27 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-17 12:15 Peter Maydell [this message]
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 1/7] target-arm/kvm: Split 32 bit only code into its own file Peter Maydell
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 2/7] target-arm: Clean up handling of AArch64 PSTATE Peter Maydell
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 3/7] target-arm: Add minimal KVM AArch64 support Peter Maydell
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 4/7] configure: Enable KVM for aarch64 host/target combination Peter Maydell
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 5/7] hw/arm/boot: Allow easier swapping in of different loader code Peter Maydell
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 6/7] hw/arm/boot: Add boot support for AArch64 processor Peter Maydell
2013-12-17 13:04   ` Peter Crosthwaite
2013-12-17 13:14     ` Peter Maydell
2013-12-17 13:44       ` Peter Crosthwaite
2013-12-17 12:15 ` [Qemu-devel] [PATCH v2 7/7] default-configs: Add config for aarch64-softmmu Peter Maydell
2013-12-17 12:51   ` Peter Crosthwaite
2013-12-18  6:05 ` [Qemu-devel] [PATCH v2 0/7] target-arm: Support AArch64 KVM Christoffer Dall

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=1387282522-11280-1-git-send-email-peter.maydell@linaro.org \
    --to=peter.maydell@linaro.org \
    --cc=christoffer.dall@linaro.org \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=patches@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).