diff options
Diffstat (limited to 'include/hw/intc/intc.h')
-rw-r--r-- | include/hw/intc/intc.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/hw/intc/intc.h b/include/hw/intc/intc.h new file mode 100644 index 000000000..7018f608c --- /dev/null +++ b/include/hw/intc/intc.h @@ -0,0 +1,28 @@ +#ifndef INTC_H +#define INTC_H + +#include "qom/object.h" + +#define TYPE_INTERRUPT_STATS_PROVIDER "intctrl" + +typedef struct InterruptStatsProviderClass InterruptStatsProviderClass; +DECLARE_CLASS_CHECKERS(InterruptStatsProviderClass, INTERRUPT_STATS_PROVIDER, + TYPE_INTERRUPT_STATS_PROVIDER) +#define INTERRUPT_STATS_PROVIDER(obj) \ + INTERFACE_CHECK(InterruptStatsProvider, (obj), \ + TYPE_INTERRUPT_STATS_PROVIDER) + +typedef struct InterruptStatsProvider InterruptStatsProvider; + +struct InterruptStatsProviderClass { + InterfaceClass parent; + + /* The returned pointer and statistics must remain valid until + * the BQL is next dropped. + */ + bool (*get_statistics)(InterruptStatsProvider *obj, uint64_t **irq_counts, + unsigned int *nb_irqs); + void (*print_info)(InterruptStatsProvider *obj, Monitor *mon); +}; + +#endif |