From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxxfO-0007w1-Df for qemu-devel@nongnu.org; Fri, 20 Jun 2014 08:11:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxxfF-0001w0-CN for qemu-devel@nongnu.org; Fri, 20 Jun 2014 08:11:38 -0400 Received: from mail-wg0-x22b.google.com ([2a00:1450:400c:c00::22b]:48758) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxxfF-0001vu-44 for qemu-devel@nongnu.org; Fri, 20 Jun 2014 08:11:29 -0400 Received: by mail-wg0-f43.google.com with SMTP id b13so3564180wgh.26 for ; Fri, 20 Jun 2014 05:11:28 -0700 (PDT) Received: from playground.station (net-37-117-140-88.cust.vodafonedsl.it. [37.117.140.88]) by mx.google.com with ESMTPSA id dj2sm4222458wib.11.2014.06.20.05.11.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 20 Jun 2014 05:11:27 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Fri, 20 Jun 2014 14:11:09 +0200 Message-Id: <1403266283-1517-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 00/14] Pending KVM patches for 2.1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit af44da87e926ff64260b95f4350d338c4fc113ca: Merge remote-tracking branch 'remotes/agraf/tags/signed-ppc-for-upstream' into staging (2014-06-16 18:26:21 +0100) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master for you to fetch changes up to 3c5d0be553b18d47361ac3a701e2bff86b8256b0: hw/mips: malta: Don't boot from flash with KVM T&E (2014-06-20 13:51:29 +0200) The highlight (covering 13/14th of the series) is MIPS Malta support for trap-and-emulate KVM. The QEMU<->kernel interface to implement the equivalent of QEMU_CLOCK_VIRTUAL, that James came up with, is particularly cool and a good model for other architectures to look at. Alexander Graf (1): KVM: Fix GSI number space limit James Hogan (8): target-mips: Reset CPU timer consistently target-mips: get_physical_address: Add defines for segment bases target-mips: get_physical_address: Add KVM awareness kvm: Allow arch to set sigmask length target-mips: Call kvm_mips_reset_vcpu() from mips_cpu_reset() hw/mips: malta: Add KVM support MAINTAINERS: Add entry for MIPS KVM hw/mips: malta: Don't boot from flash with KVM T&E Sanjay Lal (5): hw/mips/cputimer: Don't start periodic timer in KVM mode hw/mips: Add API to convert KVM guest KSEG0 <-> GPA target-mips: kvm: Add main KVM support for MIPS hw/mips: In KVM mode, inject IRQ2 (I/O) interrupts via ioctls target-mips: Enable KVM support in build system MAINTAINERS | 5 + configure | 6 +- hw/mips/addr.c | 7 +- hw/mips/cputimer.c | 18 +- hw/mips/mips_int.c | 11 + hw/mips/mips_malta.c | 79 ++++-- include/hw/mips/cpudevs.h | 2 + include/sysemu/kvm.h | 2 + kvm-all.c | 13 +- target-mips/Makefile.objs | 1 + target-mips/cpu.c | 8 + target-mips/helper.c | 51 +++- target-mips/kvm.c | 683 +++++++++++++++++++++++++++++++++++++++++++++ target-mips/kvm_mips.h | 26 ++ target-mips/translate.c | 2 + 15 files changed, 873 insertions(+), 41 deletions(-) create mode 100644 target-mips/kvm.c create mode 100644 target-mips/kvm_mips.h