--- hw/mips_int.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hw/mips_int.c b/hw/mips_int.c index 6423fd0..6c655af 100644 --- a/hw/mips_int.c +++ b/hw/mips_int.c @@ -23,6 +23,8 @@ #include "hw.h" #include "mips_cpudevs.h" #include "cpu.h" +#include "sysemu/kvm.h" +#include "kvm_mips.h" static void cpu_mips_irq_request(void *opaque, int irq, int level) { @@ -33,8 +35,21 @@ static void cpu_mips_irq_request(void *opaque, int irq, int level) if (level) { env->CP0_Cause |= 1 << (irq + CP0Ca_IP); + +#ifdef CONFIG_KVM + if (kvm_enabled() && irq == 2) { + kvm_mips_set_interrupt (env, irq, level); + } +#endif + } else { env->CP0_Cause &= ~(1 << (irq + CP0Ca_IP)); + +#ifdef CONFIG_KVM + if (kvm_enabled() && irq == 2) { + kvm_mips_set_interrupt (env, irq, level); + } +#endif } if (env->CP0_Cause & CP0Ca_IP_mask) { -- 1.7.11.3
- [Qemu-devel] [PATCH 09/12] KVM/MIPS: set sigmask length to... Sanjay Lal
- [Qemu-devel] [PATCH 11/12] KVM/MIPS: MIPS specfic APIs for... Sanjay Lal
- Re: [Qemu-devel] [PATCH 11/12] KVM/MIPS: MIPS specfic... Peter Maydell
- [Qemu-devel] [PATCH 12/12] KVM/MIPS: General KVM support a... Sanjay Lal
- [Qemu-devel] [PATCH 08/12] KVM/MIPS: Enable KVM/MIPS for M... Sanjay Lal
- Re: [Qemu-devel] [PATCH 08/12] KVM/MIPS: Enable KVM/M... Peter Maydell
- Re: [Qemu-devel] [PATCH 08/12] KVM/MIPS: Enable KVM/M... Andreas Färber
- [Qemu-devel] [PATCH 01/12] KVM/MIPS: Bootcode for MIPS SMP... Sanjay Lal
- [Qemu-devel] [PATCH 05/12] KVM/MIPS: In KVM mode, inject I... Sanjay Lal
- [Qemu-devel] [PATCH 01/12] MIPS: Bootcode for MIPS SMP con... Sanjay Lal
- [Qemu-devel] [PATCH 06/12] KVM/MIPS: Define APIs to conver... Sanjay Lal
- [Qemu-devel] [PATCH 04/12] KVM/MIPS: Do not start the peri... Sanjay Lal
- [Qemu-devel] [PATCH 10/12] KVM/MIPS: Set page size to 16K ... Sanjay Lal
- Re: [Qemu-devel] [PATCH 00/12] KVM Support for MIPS32 Proc... Zhang, Yang Z
- Re: [Qemu-devel] [PATCH 00/12] KVM Support for MIPS32 Proc... Andreas Färber