virtio_pci_x86/lib.rs
1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2025.
4
5#![no_std]
6
7//! Virtio over PCI Local Bus
8//!
9//! This crate implements support for enumerating and interacting with Virtio
10//! devices over the legacy PCI Local Bus transport (i.e. non-PCIe), as defined
11//! in section 4.1 of the Virtio specification.
12
13mod pci;
14pub use self::pci::{VirtIOPCIDevice, DEVICE_ID_BASE, VENDOR_ID};