diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-02 13:16:19 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-01-10 23:34:43 +0100 |
| commit | af68b41d403b81b18de07ebab0ca4c1025c94bf7 (patch) | |
| tree | 5b06118f927b590a0bd226df43c507b6eb42dd07 /rust/qemu-api/src/sysbus.rs | |
| parent | d9434f29ca83e114fe02ed24c8ad2ccfa7ac3fe9 (diff) | |
| download | focaccia-qemu-af68b41d403b81b18de07ebab0ca4c1025c94bf7.tar.gz focaccia-qemu-af68b41d403b81b18de07ebab0ca4c1025c94bf7.zip | |
rust: pl011: only leave embedded object initialization in instance_init
Leave IRQ and MMIO initialization to instance_post_init. In Rust the two callbacks are more distinct, because only instance_post_init has a fully initialized object available. While at it, add a wrapper for sysbus_init_mmio so that accesses to the SysBusDevice correctly use shared references. Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api/src/sysbus.rs')
| -rw-r--r-- | rust/qemu-api/src/sysbus.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rust/qemu-api/src/sysbus.rs b/rust/qemu-api/src/sysbus.rs index 8193734bde..b96eaaf25f 100644 --- a/rust/qemu-api/src/sysbus.rs +++ b/rust/qemu-api/src/sysbus.rs @@ -38,6 +38,18 @@ impl SysBusDevice { addr_of!(*self) as *mut _ } + /// Expose a memory region to the board so that it can give it an address + /// in guest memory. Note that the ordering of calls to `init_mmio` is + /// important, since whoever creates the sysbus device will refer to the + /// region with a number that corresponds to the order of calls to + /// `init_mmio`. + pub fn init_mmio(&self, iomem: &bindings::MemoryRegion) { + assert!(bql_locked()); + unsafe { + bindings::sysbus_init_mmio(self.as_mut_ptr(), addr_of!(*iomem) as *mut _); + } + } + /// Expose an interrupt source outside the device as a qdev GPIO output. /// Note that the ordering of calls to `init_irq` is important, since /// whoever creates the sysbus device will refer to the interrupts with |