2009-03-03 00:42:04 +08:00
|
|
|
#if !defined(__OPENPIC_H__)
|
|
|
|
#define __OPENPIC_H__
|
|
|
|
|
|
|
|
/* OpenPIC have 5 outputs per CPU connected and one IRQ out single output */
|
|
|
|
enum {
|
|
|
|
OPENPIC_OUTPUT_INT = 0, /* IRQ */
|
|
|
|
OPENPIC_OUTPUT_CINT, /* critical IRQ */
|
|
|
|
OPENPIC_OUTPUT_MCK, /* Machine check event */
|
|
|
|
OPENPIC_OUTPUT_DEBUG, /* Inconditional debug event */
|
|
|
|
OPENPIC_OUTPUT_RESET, /* Core reset event */
|
|
|
|
OPENPIC_OUTPUT_NB,
|
|
|
|
};
|
|
|
|
|
2011-12-22 06:18:02 +08:00
|
|
|
qemu_irq *openpic_init (MemoryRegion **pmem, int nb_cpus,
|
2009-03-03 00:42:04 +08:00
|
|
|
qemu_irq **irqs, qemu_irq irq_out);
|
2012-10-23 18:30:10 +08:00
|
|
|
qemu_irq *mpic_init (MemoryRegion *address_space, hwaddr base,
|
2011-08-30 23:46:26 +08:00
|
|
|
int nb_cpus, qemu_irq **irqs, qemu_irq irq_out);
|
2009-03-03 00:42:04 +08:00
|
|
|
#endif /* __OPENPIC_H__ */
|