mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
2028834574
Since /i440fx/piix3 is being removed from the composition tree, the IO-APIC is placed under /i440fx. This is wrong and should be changed as soon as the /i440fx/piix3 path is put back. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
#ifndef QEMU_IRQ_H
|
|
#define QEMU_IRQ_H
|
|
|
|
/* Generic IRQ/GPIO pin infrastructure. */
|
|
|
|
typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
|
|
|
|
void qemu_set_irq(qemu_irq irq, int level);
|
|
|
|
static inline void qemu_irq_raise(qemu_irq irq)
|
|
{
|
|
qemu_set_irq(irq, 1);
|
|
}
|
|
|
|
static inline void qemu_irq_lower(qemu_irq irq)
|
|
{
|
|
qemu_set_irq(irq, 0);
|
|
}
|
|
|
|
static inline void qemu_irq_pulse(qemu_irq irq)
|
|
{
|
|
qemu_set_irq(irq, 1);
|
|
qemu_set_irq(irq, 0);
|
|
}
|
|
|
|
/* Returns an array of N IRQs. */
|
|
qemu_irq *qemu_allocate_irqs(qemu_irq_handler handler, void *opaque, int n);
|
|
void qemu_free_irqs(qemu_irq *s);
|
|
|
|
/* Returns a new IRQ with opposite polarity. */
|
|
qemu_irq qemu_irq_invert(qemu_irq irq);
|
|
|
|
/* Returns a new IRQ which feeds into both the passed IRQs */
|
|
qemu_irq qemu_irq_split(qemu_irq irq1, qemu_irq irq2);
|
|
|
|
/* Returns a new IRQ set which connects 1:1 to another IRQ set, which
|
|
* may be set later.
|
|
*/
|
|
qemu_irq *qemu_irq_proxy(qemu_irq **target, int n);
|
|
|
|
/* For internal use in qtest. Similar to qemu_irq_split, but operating
|
|
on an existing vector of qemu_irq. */
|
|
void qemu_irq_intercept_in(qemu_irq *gpio_in, qemu_irq_handler handler, int n);
|
|
void qemu_irq_intercept_out(qemu_irq **gpio_out, qemu_irq_handler handler, int n);
|
|
|
|
#endif
|