From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48172) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1YyV-0007ye-D3 for qemu-devel@nongnu.org; Tue, 23 Jul 2013 05:33:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1YyO-0000iO-Fn for qemu-devel@nongnu.org; Tue, 23 Jul 2013 05:33:43 -0400 Received: from mail-we0-f178.google.com ([74.125.82.178]:40255) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1YyO-0000iH-7Z for qemu-devel@nongnu.org; Tue, 23 Jul 2013 05:33:36 -0400 Received: by mail-we0-f178.google.com with SMTP id u57so2403332wes.37 for ; Tue, 23 Jul 2013 02:33:35 -0700 (PDT) From: "Mian M. Hamayun" Date: Tue, 23 Jul 2013 11:33:10 +0200 Message-Id: <1374571996-9228-2-git-send-email-m.hamayun@virtualopensystems.com> In-Reply-To: <1374571996-9228-1-git-send-email-m.hamayun@virtualopensystems.com> References: <1374571996-9228-1-git-send-email-m.hamayun@virtualopensystems.com> Subject: [Qemu-devel] [PATCH v2 1/7] AARCH64: Add A57 CPU to default AArch64 configuration and enable KVM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, tech@virtualopensystems.com, kvmarm@lists.cs.columbia.edu From: "Mian M. Hamayun" Introduce the A57 cpu to the default AArch64 configuration and enable KVM for 64-bit guests only. Signed-off-by: Mian M. Hamayun --- configure | 2 +- default-configs/aarch64-softmmu.mak | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 2f83771..021c1dd 100755 --- a/configure +++ b/configure @@ -4293,7 +4293,7 @@ case "$target_name" in *) esac case "$target_name" in - arm|i386|x86_64|ppcemb|ppc|ppc64|s390x) + arm|aarch64|i386|x86_64|ppcemb|ppc|ppc64|s390x) # Make sure the target and host cpus are compatible if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ \( "$target_name" = "$cpu" -o \ diff --git a/default-configs/aarch64-softmmu.mak b/default-configs/aarch64-softmmu.mak index 27cbe3d..00c8bdd 100644 --- a/default-configs/aarch64-softmmu.mak +++ b/default-configs/aarch64-softmmu.mak @@ -1,4 +1,4 @@ -# Default configuration for arm-softmmu +# Default configuration for aarch64-softmmu include pci.mak include usb.mak @@ -37,6 +37,7 @@ CONFIG_USB_MUSB=y CONFIG_ARM9MPCORE=y CONFIG_ARM11MPCORE=y CONFIG_ARM15MPCORE=y +CONFIG_ARM57MPCORE=y CONFIG_ARM_GIC=y CONFIG_ARM_GIC_KVM=$(CONFIG_KVM) -- 1.7.9.5