KVM: PPC: Add level based interrupt logic
authorAlexander Graf <agraf@suse.de>
Mon, 30 Aug 2010 11:49:15 +0000 (13:49 +0200)
committerAlexander Graf <agraf@suse.de>
Sun, 5 Sep 2010 09:50:48 +0000 (11:50 +0200)
commitd0754829b0e70ed9f9473975dbe40bb8951375d3
tree8dbd20e489ab8caf8acc122d134fea3dfe31c8e5
parentf570ed81aa46cb4c6a151342e4725f9d275fafd9
KVM: PPC: Add level based interrupt logic

KVM on PowerPC used to have completely broken interrupt logic. Usually,
interrupts work by having a PIC that pulls a line up/down, so the CPU knows
that an interrupt is active. This line stays active until some action is
done to the PIC to release the line.

On KVM for PPC, we just checked if there was an interrupt pending and pulled
a line in the kernel module. We never released it though, hoping that kernel
space would just declare an interrupt as released when injected - which is
wrong.

To fix this, we need to completely redesign the interrupt injection logic.
Whenever an interrupt line gets triggered, we need to notify kernel space
that the line is up. Whenever it gets released, we do the same. This way
we can assure that the interrupt state is always known to kernel space.

This fixes random stalls in KVM guests on PowerPC that were waiting for
an interrupt while everyone else thought they received it already.

Signed-off-by: Alexander Graf <agraf@suse.de>
hw/ppc.c
target-ppc/kvm.c
target-ppc/kvm_ppc.h