diff options
author | Cédric Le Goater | 2017-02-27 15:29:32 +0100 |
---|---|---|
committer | David Gibson | 2017-03-01 01:23:40 +0100 |
commit | 6449da4545d35ce207f23a1dcc6189291ecf1a5f (patch) | |
tree | 5ed6a8c8f39c549b417f44e532e58956b91e4961 /include/hw | |
parent | ppc/xics: move ics-simple post_load under the machine (diff) | |
download | qemu-6449da4545d35ce207f23a1dcc6189291ecf1a5f.tar.gz qemu-6449da4545d35ce207f23a1dcc6189291ecf1a5f.tar.xz qemu-6449da4545d35ce207f23a1dcc6189291ecf1a5f.zip |
ppc/xics: move InterruptStatsProvider to the sPAPR machine
It provides a better monitor output of the ICP and ICS objects, else
the objects are printed out of order.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/ppc/xics.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h index 007ee2f16d..1945913bf1 100644 --- a/include/hw/ppc/xics.h +++ b/include/hw/ppc/xics.h @@ -184,6 +184,8 @@ void ics_simple_write_xive(ICSState *ics, int nr, int server, uint8_t priority, uint8_t saved_priority); void ics_set_irq_type(ICSState *ics, int srcno, bool lsi); +void icp_pic_print_info(ICPState *icp, Monitor *mon); +void ics_pic_print_info(ICSState *ics, Monitor *mon); void ics_resend(ICSState *ics); void icp_resend(ICPState *ss); |