diff options
author | Peter Xu <peterx@redhat.com> | 2017-12-10 14:38:17 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-12-21 09:30:32 +0100 |
commit | 1b23190aba72a974c9a08496bf6d45e14b60087a (patch) | |
tree | 4c6aadf19e7e8015fab847eb700941b38efafa79 /include | |
parent | f260f7361ca6caf7bb672195c50db99eff26b856 (diff) | |
download | qemu-1b23190aba72a974c9a08496bf6d45e14b60087a.zip qemu-1b23190aba72a974c9a08496bf6d45e14b60087a.tar.gz qemu-1b23190aba72a974c9a08496bf6d45e14b60087a.tar.bz2 |
i8259: generalize statistics into common code
It was only for userspace i8259. Move it to general code so that
kvm-i8259 can also use it in the future.
Signed-off-by: Peter Xu <peterx@redhat.com>
Message-Id: <20171210063819.14892-4-peterx@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/isa/i8259_internal.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/hw/isa/i8259_internal.h b/include/hw/isa/i8259_internal.h index 6954b6e..f742c2a 100644 --- a/include/hw/isa/i8259_internal.h +++ b/include/hw/isa/i8259_internal.h @@ -28,6 +28,7 @@ #include "hw/hw.h" #include "hw/i386/pc.h" #include "hw/isa/isa.h" +#include "hw/intc/intc.h" typedef struct PICCommonState PICCommonState; @@ -76,8 +77,10 @@ struct PICCommonState { }; void pic_reset_common(PICCommonState *s); - ISADevice *i8259_init_chip(const char *name, ISABus *bus, bool master); - +void pic_stat_update_irq(int irq, int level); +bool pic_get_statistics(InterruptStatsProvider *obj, + uint64_t **irq_counts, unsigned int *nb_irqs); +void pic_print_info(InterruptStatsProvider *obj, Monitor *mon); #endif /* QEMU_I8259_INTERNAL_H */ |