summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCédric Le Goater2017-12-01 17:06:00 +0100
committerDavid Gibson2017-12-14 23:49:24 +0100
commit4f7a47beebd6d37861d08c81941be1b33a0ae627 (patch)
treef76c0b3764e6f92a3020ea4bb84bef31922eb51e /include
parentspapr/rtas: do not reset the MSR in stop-self command (diff)
downloadqemu-4f7a47beebd6d37861d08c81941be1b33a0ae627.tar.gz
qemu-4f7a47beebd6d37861d08c81941be1b33a0ae627.tar.xz
qemu-4f7a47beebd6d37861d08c81941be1b33a0ae627.zip
ppc/xics: introduce an icp_create() helper
The sPAPR and the PowerNV core objects create the interrupt presenter object of the CPUs in a very similar way. Let's provide a common routine in which we use the presenter 'type' as a child identifier. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Greg Kurz <groug@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include')
-rw-r--r--include/hw/ppc/xics.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h
index 2df99be111..2ba8b12208 100644
--- a/include/hw/ppc/xics.h
+++ b/include/hw/ppc/xics.h
@@ -212,4 +212,7 @@ typedef struct sPAPRMachineState sPAPRMachineState;
int xics_kvm_init(sPAPRMachineState *spapr, Error **errp);
void xics_spapr_init(sPAPRMachineState *spapr);
+Object *icp_create(Object *cpu, const char *type, XICSFabric *xi,
+ Error **errp);
+
#endif /* XICS_H */