VirtIO guest drivers in Rust. For no_std environment. fork from rcore-os

Andrew Walbran a7da5eac2d Rename multiconnectionmanager module to connectionmanager. 1 rok pred
.github 2eb2d17d30 Add CI build for x64_64 example. (#86) 1 rok pred
examples bc78b54f32 Support reading or writing more than one block at once. 1 rok pred
src a7da5eac2d Rename multiconnectionmanager module to connectionmanager. 1 rok pred
.gitignore 79ac8bf5fd Ignore all target directories in one .gitignore. 2 rokov pred
Cargo.toml 94e013fd4c Prepare for 0.6.0 release. 1 rok pred
LICENSE 6c88bcf3ed add simple README and LICENSE 5 rokov pred
README.md 7385d61153 Add support for VIRTIO_F_EVENT_IDX buffer notification suppression. 1 rok pred

README.md

VirtIO-drivers-rs

crates.io page docs.rs page CI

VirtIO guest drivers in Rust. For no_std environment.

Support status

Device types

Device Supported
Block
Net
GPU
Input
Console
Socket
...

Transports

Transport Supported
Legacy MMIO version 1
MMIO version 2
PCI Memory-mapped CAM only, e.g. aarch64 or PCIe ECAM

Device-independent features

Feature flag Supported
VIRTIO_F_INDIRECT_DESC Indirect descriptors
VIRTIO_F_EVENT_IDX avail_event and used_event fields
VIRTIO_F_VERSION_1 TODO VirtIO version 1 compliance
VIRTIO_F_ACCESS_PLATFORM Limited device access to memory
VIRTIO_F_RING_PACKED Packed virtqueue layout
VIRTIO_F_IN_ORDER Optimisations for in-order buffer usage
VIRTIO_F_ORDER_PLATFORM Platform ordering for memory access
VIRTIO_F_SR_IOV Single root I/O virtualization
VIRTIO_F_NOTIFICATION_DATA Extra data in device notifications

Examples & Tests

x86_64

cd examples/x86_64
make qemu

aarch64

cd examples/aarch64
make qemu

RISCV

cd examples/riscv
make qemu

You will see device info & GUI Window in qemu.