mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2025-12-26 14:41:23 +00:00
This program is a vhost-user backend that emulates a VirtIO SPI bus. This program takes the layout of the spi bus and its devices on the host OS and then talks to them via the /dev/spidevX.Y interface when a request comes from the guest OS for a SPI device. The implementation corresponds with the specification: https://github.com/oasis-tcs/virtio-spec/tree/virtio-1.4/device-types/spi Signed-off-by: Haixu Cui <quic_haixcui@quicinc.com>
16 lines
296 B
TOML
16 lines
296 B
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"vhost-device-gpio",
|
|
"vhost-device-i2c",
|
|
"vhost-device-input",
|
|
"vhost-device-rng",
|
|
"vhost-device-scsi",
|
|
"vhost-device-scmi",
|
|
"vhost-device-sound",
|
|
"vhost-device-spi",
|
|
"vhost-device-template",
|
|
"vhost-device-vsock",
|
|
]
|