rust: add bindings for interrupt sources

The InterruptSource bindings let us call qemu_set_irq() and sysbus_init_irq()
as safe code.

Interrupt sources, qemu_irq in C code, are pointers to IRQState objects.
They are QOM link properties and can be written to outside the control
of the device (i.e. from a shared reference); therefore they must be
interior-mutable in Rust.  Since thread-safety is provided by the BQL,
what we want here is the newly-introduced BqlCell.  A pointer to the
contents of the BqlCell (an IRQState**, or equivalently qemu_irq*)
is then passed to the C sysbus_init_irq function.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2024-10-31 11:29:42 +01:00
parent 28d0ad3d42
commit 4ed4da164c
5 changed files with 134 additions and 10 deletions

View file

@ -16,7 +16,9 @@ pub mod c_str;
pub mod cell;
pub mod definitions;
pub mod device_class;
pub mod irq;
pub mod offset_of;
pub mod sysbus;
pub mod vmstate;
pub mod zeroable;