2007-11-17 20:14:51 +03:00
|
|
|
#ifndef QEMU_IRQ_H
|
|
|
|
#define QEMU_IRQ_H
|
|
|
|
|
2007-04-07 22:14:41 +04:00
|
|
|
/* Generic IRQ/GPIO pin infrastructure. */
|
|
|
|
|
2014-06-18 11:57:08 +04:00
|
|
|
#define TYPE_IRQ "irq"
|
|
|
|
|
2007-04-07 22:14:41 +04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2007-12-05 06:23:39 +03:00
|
|
|
static inline void qemu_irq_pulse(qemu_irq irq)
|
|
|
|
{
|
|
|
|
qemu_set_irq(irq, 1);
|
|
|
|
qemu_set_irq(irq, 0);
|
|
|
|
}
|
|
|
|
|
2012-07-31 06:24:06 +04:00
|
|
|
/* Returns an array of N IRQs. Each IRQ is assigned the argument handler and
|
|
|
|
* opaque data.
|
|
|
|
*/
|
2007-04-07 22:14:41 +04:00
|
|
|
qemu_irq *qemu_allocate_irqs(qemu_irq_handler handler, void *opaque, int n);
|
2012-07-31 06:24:06 +04:00
|
|
|
|
2013-10-07 11:36:34 +04:00
|
|
|
/*
|
|
|
|
* Allocates a single IRQ. The irq is assigned with a handler, an opaque
|
|
|
|
* data and the interrupt number.
|
|
|
|
*/
|
|
|
|
qemu_irq qemu_allocate_irq(qemu_irq_handler handler, void *opaque, int n);
|
|
|
|
|
2012-07-31 06:24:06 +04:00
|
|
|
/* Extends an Array of IRQs. Old IRQs have their handlers and opaque data
|
|
|
|
* preserved. New IRQs are assigned the argument handler and opaque data.
|
|
|
|
*/
|
|
|
|
qemu_irq *qemu_extend_irqs(qemu_irq *old, int n_old, qemu_irq_handler handler,
|
|
|
|
void *opaque, int n);
|
|
|
|
|
2014-06-18 11:56:31 +04:00
|
|
|
void qemu_free_irqs(qemu_irq *s, int n);
|
2013-10-07 11:36:34 +04:00
|
|
|
void qemu_free_irq(qemu_irq irq);
|
2007-04-07 22:14:41 +04:00
|
|
|
|
2007-10-29 13:59:29 +03:00
|
|
|
/* Returns a new IRQ with opposite polarity. */
|
|
|
|
qemu_irq qemu_irq_invert(qemu_irq irq);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2012-03-28 17:42:03 +04:00
|
|
|
/* 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);
|
|
|
|
|
2020-08-03 19:55:03 +03:00
|
|
|
/**
|
|
|
|
* qemu_irq_is_connected: Return true if IRQ line is wired up
|
|
|
|
*
|
|
|
|
* If a qemu_irq has a device on the other (receiving) end of it,
|
|
|
|
* return true; otherwise return false.
|
|
|
|
*
|
|
|
|
* Usually device models don't need to care whether the machine model
|
|
|
|
* has wired up their outbound qemu_irq lines, because functions like
|
|
|
|
* qemu_set_irq() silently do nothing if there is nothing on the other
|
|
|
|
* end of the line. However occasionally a device model will want to
|
|
|
|
* provide default behaviour if its output is left floating, and
|
|
|
|
* it can use this function to identify when that is the case.
|
|
|
|
*/
|
|
|
|
static inline bool qemu_irq_is_connected(qemu_irq irq)
|
|
|
|
{
|
|
|
|
return irq != NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
#endif
|