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