index
:
focaccia-qemu
this commit
master
sr/plugin
ta/focaccia
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
rust
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
rust: Kconfig: Factor out whether HPET is Rust or C
Peter Maydell
2025-03-20
1
-1
/
+0
*
rust: pl011: Allow NULL chardev argument to pl011_create()
Peter Maydell
2025-03-09
1
-2
/
+4
*
rust: qom: remove operations on &mut
Paolo Bonzini
2025-03-06
4
-121
/
+2
*
rust: cell: add full example of declaring a SysBusDevice
Paolo Bonzini
2025-03-06
1
-0
/
+28
*
rust: hpet: decode HPET registers into enums
Paolo Bonzini
2025-03-06
3
-99
/
+111
*
rust: pl011: pass around registers::Data
Paolo Bonzini
2025-03-06
1
-7
/
+8
*
rust: pl011: switch to safe chardev operation
Paolo Bonzini
2025-03-06
1
-94
/
+25
*
rust: pl011: clean up visibilities of callbacks
Paolo Bonzini
2025-03-06
1
-5
/
+5
*
rust: pl011: move register definitions out of lib.rs
Paolo Bonzini
2025-03-06
3
-510
/
+512
*
rust: chardev: provide basic bindings to character devices
Paolo Bonzini
2025-03-06
3
-5
/
+255
*
rust: bindings: remove more unnecessary Send/Sync impls
Paolo Bonzini
2025-03-06
1
-6
/
+2
*
rust: chardev: wrap Chardev with Opaque<>
Paolo Bonzini
2025-03-06
3
-5
/
+7
*
rust: memory: wrap MemoryRegion with Opaque<>
Paolo Bonzini
2025-03-06
2
-17
/
+21
*
rust: sysbus: wrap SysBusDevice with Opaque<>
Paolo Bonzini
2025-03-06
2
-11
/
+21
*
rust: hpet: do not access fields of SysBusDevice
Paolo Bonzini
2025-03-06
2
-3
/
+13
*
rust: qdev: wrap Clock and DeviceState with Opaque<>
Paolo Bonzini
2025-03-06
3
-27
/
+49
*
rust: qom: wrap Object with Opaque<>
Paolo Bonzini
2025-03-06
4
-20
/
+26
*
rust: irq: wrap IRQState with Opaque<>
Paolo Bonzini
2025-03-06
2
-5
/
+11
*
rust: timer: wrap QEMUTimer with Opaque<> and express pinning requirements
Paolo Bonzini
2025-03-06
2
-13
/
+44
*
rust: hpet: embed Timer without the Option and Box indirection
Paolo Bonzini
2025-03-06
1
-32
/
+29
*
rust: vmstate: add std::pin::Pin as transparent wrapper
Paolo Bonzini
2025-03-06
1
-0
/
+1
*
rust: qemu_api_macros: add Wrapper derive macro
Paolo Bonzini
2025-03-06
3
-6
/
+136
*
rust: cell: add wrapper for FFI types
Paolo Bonzini
2025-03-06
1
-7
/
+197
*
rust: qom: get rid of ClassInitImpl
Paolo Bonzini
2025-02-25
6
-130
/
+101
*
rust: pl011, qemu_api tests: do not use ClassInitImpl
Paolo Bonzini
2025-02-25
2
-40
/
+31
*
rust: qom: add ObjectImpl::CLASS_INIT
Paolo Bonzini
2025-02-25
4
-4
/
+19
*
rust: add SysBusDeviceImpl
Paolo Bonzini
2025-02-25
3
-5
/
+12
*
rust: add IsA bounds to QOM implementation traits
Paolo Bonzini
2025-02-25
2
-2
/
+4
*
rust: prefer importing std::ptr over core::ptr
Zhao Liu
2025-02-25
3
-5
/
+6
*
rust: tests: do not import bindings::*
Paolo Bonzini
2025-02-25
1
-1
/
+2
*
rust: add module to convert between success/-errno and io::Result
Paolo Bonzini
2025-02-25
5
-0
/
+380
*
rust: subprojects: add libc crate
Paolo Bonzini
2025-02-25
2
-0
/
+8
*
i386: Fix the missing Rust HPET configuration option
Zhao Liu
2025-02-25
1
-0
/
+1
*
rust: fix doctests
Paolo Bonzini
2025-02-13
2
-2
/
+2
*
rust: vmstate: remove redundant link targets
Paolo Bonzini
2025-02-13
1
-3
/
+2
*
rust: qemu_api: add a documentation header for all modules
Paolo Bonzini
2025-02-13
7
-0
/
+27
*
i386: enable rust hpet for pc when rust is enabled
Zhao Liu
2025-02-13
2
-0
/
+3
*
rust/timer/hpet: add qom and qdev APIs support
Zhao Liu
2025-02-13
3
-11
/
+273
*
rust/timer/hpet: add basic HPET timer and HPETState
Zhao Liu
2025-02-13
3
-0
/
+631
*
rust/timer/hpet: define hpet_fw_cfg
Zhao Liu
2025-02-13
9
-2
/
+132
*
rust: add bindings for timer
Zhao Liu
2025-02-13
4
-0
/
+101
*
rust: add bindings for memattrs
Zhao Liu
2025-02-13
3
-2
/
+16
*
rust: add bindings for gpio_{in|out} initialization
Zhao Liu
2025-02-13
2
-5
/
+43
*
rust/irq: Add a helper to convert [InterruptSource] to pointer
Zhao Liu
2025-02-13
1
-0
/
+6
*
rust/qdev: add the macro to define bit property
Zhao Liu
2025-02-13
1
-0
/
+12
*
rust: pl011: convert pl011_create to safe Rust
Paolo Bonzini
2025-02-13
2
-24
/
+51
*
rust: chardev, qdev: add bindings to qdev_prop_set_chr
Paolo Bonzini
2025-02-13
5
-1
/
+32
*
rust: irq: define ObjectType for IRQState
Paolo Bonzini
2025-02-13
1
-3
/
+12
*
rust: bindings for MemoryRegionOps
Paolo Bonzini
2025-02-13
8
-61
/
+226
*
rust: bindings: add Send and Sync markers for types that have bindings
Paolo Bonzini
2025-02-13
2
-0
/
+49
[prev]
[next]