From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 00/25] (Mostly) Rust patches for QEMU 10.0 soft freeze
Date: Sun, 9 Mar 2025 11:30:54 +0100 [thread overview]
Message-ID: <20250309103120.1116448-1-pbonzini@redhat.com> (raw)
The following changes since commit e8a01102936286e012ed0f00bd7f3b7474d415c9:
Merge tag 'ui-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2025-03-05 21:58:23 +0800)
are available in the Git repository at:
https://gitlab.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to 816945364f698ae750aa665fce3d121c98e37a6f:
rust: pl011: Allow NULL chardev argument to pl011_create() (2025-03-09 11:25:10 +0100)
----------------------------------------------------------------
* scripts: dump stdin on meson-buildoptions error
* rust: introduce qemu_api::cell::Opaque<>
* rust: express pinning requirements for timers
* rust: hpet: decode HPET registers into enums
* rust: cell: add full example of declaring a SysBusDevice
* rust: qom: remove operations on &mut
----------------------------------------------------------------
Alex Bennée (1):
meson.build: default to -gsplit-dwarf for debug info
Nabih Estefan (1):
scripts: dump stdin on meson-buildoptions error
Paolo Bonzini (22):
chardev: express dependency on io/
rust: cell: add wrapper for FFI types
rust: qemu_api_macros: add Wrapper derive macro
rust: vmstate: add std::pin::Pin as transparent wrapper
rust: hpet: embed Timer without the Option and Box indirection
rust: timer: wrap QEMUTimer with Opaque<> and express pinning requirements
rust: irq: wrap IRQState with Opaque<>
rust: qom: wrap Object with Opaque<>
rust: qdev: wrap Clock and DeviceState with Opaque<>
rust: hpet: do not access fields of SysBusDevice
rust: sysbus: wrap SysBusDevice with Opaque<>
rust: memory: wrap MemoryRegion with Opaque<>
rust: chardev: wrap Chardev with Opaque<>
rust: bindings: remove more unnecessary Send/Sync impls
rust: chardev: provide basic bindings to character devices
rust: pl011: move register definitions out of lib.rs
rust: pl011: clean up visibilities of callbacks
rust: pl011: switch to safe chardev operation
rust: pl011: pass around registers::Data
rust: hpet: decode HPET registers into enums
rust: cell: add full example of declaring a SysBusDevice
rust: qom: remove operations on &mut
Peter Maydell (1):
rust: pl011: Allow NULL chardev argument to pl011_create()
docs/devel/rust.rst | 36 ++-
meson.build | 15 +-
meson_options.txt | 2 +
rust/Cargo.toml | 2 +
rust/hw/char/pl011/src/device.rs | 155 ++++-------
rust/hw/char/pl011/src/lib.rs | 511 +-----------------------------------
rust/hw/char/pl011/src/registers.rs | 506 +++++++++++++++++++++++++++++++++++
rust/hw/timer/hpet/src/hpet.rs | 291 ++++++++++----------
rust/qemu-api-macros/src/lib.rs | 90 ++++++-
rust/qemu-api/meson.build | 24 +-
rust/qemu-api/src/bindings.rs | 26 +-
rust/qemu-api/src/cell.rs | 277 ++++++++++++++++++-
rust/qemu-api/src/chardev.rs | 248 ++++++++++++++++-
rust/qemu-api/src/irq.rs | 15 +-
rust/qemu-api/src/memory.rs | 32 +--
rust/qemu-api/src/prelude.rs | 1 -
rust/qemu-api/src/qdev.rs | 75 ++++--
rust/qemu-api/src/qom.rs | 118 ++-------
rust/qemu-api/src/sysbus.rs | 40 ++-
rust/qemu-api/src/timer.rs | 47 +++-
rust/qemu-api/src/vmstate.rs | 3 +-
rust/qemu-api/src/zeroable.rs | 1 +
rust/qemu-api/tests/tests.rs | 34 +--
scripts/meson-buildoptions.py | 10 +-
scripts/meson-buildoptions.sh | 2 +
25 files changed, 1551 insertions(+), 1010 deletions(-)
create mode 100644 rust/hw/char/pl011/src/registers.rs
--
2.48.1
next reply other threads:[~2025-03-09 10:34 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-09 10:30 Paolo Bonzini [this message]
2025-03-09 10:30 ` [PULL 01/25] chardev: express dependency on io/ Paolo Bonzini
2025-03-09 10:30 ` [PULL 02/25] scripts: dump stdin on meson-buildoptions error Paolo Bonzini
2025-03-09 10:30 ` [PULL 03/25] rust: cell: add wrapper for FFI types Paolo Bonzini
2025-03-09 10:30 ` [PULL 04/25] rust: qemu_api_macros: add Wrapper derive macro Paolo Bonzini
2025-03-09 10:30 ` [PULL 05/25] rust: vmstate: add std::pin::Pin as transparent wrapper Paolo Bonzini
2025-03-09 10:31 ` [PULL 06/25] rust: hpet: embed Timer without the Option and Box indirection Paolo Bonzini
2025-03-09 10:31 ` [PULL 07/25] rust: timer: wrap QEMUTimer with Opaque<> and express pinning requirements Paolo Bonzini
2025-03-09 10:31 ` [PULL 08/25] rust: irq: wrap IRQState with Opaque<> Paolo Bonzini
2025-03-09 10:31 ` [PULL 09/25] rust: qom: wrap Object " Paolo Bonzini
2025-03-09 10:31 ` [PULL 10/25] rust: qdev: wrap Clock and DeviceState " Paolo Bonzini
2025-03-09 10:31 ` [PULL 11/25] rust: hpet: do not access fields of SysBusDevice Paolo Bonzini
2025-03-09 10:31 ` [PULL 12/25] rust: sysbus: wrap SysBusDevice with Opaque<> Paolo Bonzini
2025-03-09 10:31 ` [PULL 13/25] rust: memory: wrap MemoryRegion " Paolo Bonzini
2025-03-09 10:31 ` [PULL 14/25] rust: chardev: wrap Chardev " Paolo Bonzini
2025-03-09 10:31 ` [PULL 15/25] rust: bindings: remove more unnecessary Send/Sync impls Paolo Bonzini
2025-03-09 10:31 ` [PULL 16/25] rust: chardev: provide basic bindings to character devices Paolo Bonzini
2025-03-09 10:31 ` [PULL 17/25] rust: pl011: move register definitions out of lib.rs Paolo Bonzini
2025-03-09 10:31 ` [PULL 18/25] rust: pl011: clean up visibilities of callbacks Paolo Bonzini
2025-03-09 10:31 ` [PULL 19/25] rust: pl011: switch to safe chardev operation Paolo Bonzini
2025-03-19 19:25 ` Peter Maydell
2025-03-19 20:51 ` Paolo Bonzini
2025-03-20 10:39 ` Peter Maydell
2025-03-09 10:31 ` [PULL 20/25] rust: pl011: pass around registers::Data Paolo Bonzini
2025-03-09 10:31 ` [PULL 21/25] rust: hpet: decode HPET registers into enums Paolo Bonzini
2025-03-21 12:03 ` Peter Maydell
2025-03-09 10:31 ` [PULL 22/25] rust: cell: add full example of declaring a SysBusDevice Paolo Bonzini
2025-03-09 10:31 ` [PULL 23/25] rust: qom: remove operations on &mut Paolo Bonzini
2025-03-09 10:31 ` [PULL 24/25] meson.build: default to -gsplit-dwarf for debug info Paolo Bonzini
2025-03-09 10:31 ` [PULL 25/25] rust: pl011: Allow NULL chardev argument to pl011_create() Paolo Bonzini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250309103120.1116448-1-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).