diff options
author | Greg Kurz <groug@kaod.org> | 2019-02-15 12:40:30 +0100 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2019-02-18 10:43:19 +1100 |
commit | 557b4567298a6952de347a4fb7676ff44775f495 (patch) | |
tree | baeafa93169c06f55451d0cfd7f81530d221a68f /hw/intc | |
parent | f1f5b701b8978f7d783c3582252a3475c762800d (diff) | |
download | qemu-557b4567298a6952de347a4fb7676ff44775f495.zip qemu-557b4567298a6952de347a4fb7676ff44775f495.tar.gz qemu-557b4567298a6952de347a4fb7676ff44775f495.tar.bz2 |
xics: Handle KVM interrupt presentation from "simple" ICS code
We want to use the "simple" ICS type in both KVM and non-KVM setups.
Teach the "simple" ICS how to present interrupts to KVM and adapt
sPAPR accordingly.
Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <155023082996.1011724.16237920586343905010.stgit@bahia.lan>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/intc')
-rw-r--r-- | hw/intc/xics.c | 5 | ||||
-rw-r--r-- | hw/intc/xics_kvm.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/hw/intc/xics.c b/hw/intc/xics.c index 4940174..3009fa7 100644 --- a/hw/intc/xics.c +++ b/hw/intc/xics.c @@ -466,6 +466,11 @@ void ics_simple_set_irq(void *opaque, int srcno, int val) { ICSState *ics = (ICSState *)opaque; + if (kvm_irqchip_in_kernel()) { + ics_kvm_set_irq(ics, srcno, val); + return; + } + if (ics->irqs[srcno].flags & XICS_FLAGS_IRQ_LSI) { ics_simple_set_irq_lsi(ics, srcno, val); } else { diff --git a/hw/intc/xics_kvm.c b/hw/intc/xics_kvm.c index e7b8d4c..f34eacd 100644 --- a/hw/intc/xics_kvm.c +++ b/hw/intc/xics_kvm.c @@ -259,9 +259,8 @@ int ics_set_kvm_state(ICSState *ics) return 0; } -void ics_kvm_set_irq(void *opaque, int srcno, int val) +void ics_kvm_set_irq(ICSState *ics, int srcno, int val) { - ICSState *ics = opaque; struct kvm_irq_level args; int rc; |