diff options
author | Cédric Le Goater | 2018-07-30 16:11:33 +0200 |
---|---|---|
committer | David Gibson | 2018-08-21 06:28:45 +0200 |
commit | ef01ed9d19ffffbb5d5517ecb424c543cde373a1 (patch) | |
tree | 12e371305e8b3344b67623049ccfad142d25f663 /hw/ppc/spapr_cpu_core.c | |
parent | hw/ppc/ppc405_uc: Convert away from old_mmio (diff) | |
download | qemu-ef01ed9d19ffffbb5d5517ecb424c543cde373a1.tar.gz qemu-ef01ed9d19ffffbb5d5517ecb424c543cde373a1.tar.xz qemu-ef01ed9d19ffffbb5d5517ecb424c543cde373a1.zip |
spapr: introduce a IRQ controller backend to the machine
This proposal moves all the related IRQ routines of the sPAPR machine
behind a sPAPR IRQ backend interface 'spapr_irq' to prepare for future
changes. First of which will be to increase the size of the IRQ number
space, then, will follow a new backend for the POWER9 XIVE IRQ controller.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc/spapr_cpu_core.c')
-rw-r--r-- | hw/ppc/spapr_cpu_core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c index bb88a3ce4e..876f0b3d9d 100644 --- a/hw/ppc/spapr_cpu_core.c +++ b/hw/ppc/spapr_cpu_core.c @@ -11,6 +11,7 @@ #include "hw/ppc/spapr_cpu_core.h" #include "target/ppc/cpu.h" #include "hw/ppc/spapr.h" +#include "hw/ppc/xics.h" /* for icp_create() - to be removed */ #include "hw/boards.h" #include "qapi/error.h" #include "sysemu/cpus.h" |