https://github.com/rcore-os/virtio-drivers
VirtIO guest drivers in Rust.
https://github.com/rcore-os/virtio-drivers
hacktoberfest no-std rust virtio virtio-drivers
Last synced: 8 months ago
JSON representation
VirtIO guest drivers in Rust.
- Host: GitHub
- URL: https://github.com/rcore-os/virtio-drivers
- Owner: rcore-os
- License: mit
- Created: 2020-03-12T17:51:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-04T17:15:57.000Z (about 1 year ago)
- Last Synced: 2025-04-06T17:04:07.889Z (about 1 year ago)
- Topics: hacktoberfest, no-std, rust, virtio, virtio-drivers
- Language: Rust
- Homepage:
- Size: 32.8 MB
- Stars: 245
- Watchers: 7
- Forks: 68
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VirtIO-drivers-rs
[](https://crates.io/crates/virtio-drivers)
[](https://docs.rs/virtio-drivers)
[](https://github.com/rcore-os/virtio-drivers/actions)
VirtIO guest drivers in Rust. For **no_std** environment.
## Support status
### Device types
| Device | Supported |
| ------- | --------- |
| Block | ✅ |
| Net | ✅ |
| GPU | ✅ |
| Input | ✅ |
| Console | ✅ |
| Socket | ✅ |
| Sound | ✅ |
| RNG | ✅ |
| ... | ❌ |
### 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](./examples/x86_64)
```bash
cd examples/x86_64
make qemu
```
### [aarch64](./examples/aarch64)
```bash
cd examples/aarch64
make qemu
```
### [RISCV](./examples/riscv)
```bash
cd examples/riscv
make qemu
```
### [hexagon](./examples/hexagon)
```bash
cd examples/hexagon
make qemu
```
You will see device info & GUI Window in qemu.