2020-09-09 14:30:31 +00:00
|
|
|
// Copyright © 2020 Intel Corporation
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//
|
|
|
|
|
2020-04-28 10:08:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2019-12-12 13:08:34 +00:00
|
|
|
extern crate vm_memory;
|
|
|
|
|
2020-09-09 14:30:31 +00:00
|
|
|
use std::io;
|
|
|
|
|
|
|
|
mod bus;
|
2020-01-14 09:45:06 +00:00
|
|
|
pub mod interrupt;
|
|
|
|
|
2020-09-09 14:30:31 +00:00
|
|
|
pub use self::bus::{Bus, BusDevice, Error as BusError};
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
IoError(io::Error),
|
|
|
|
}
|
|
|
|
|
2020-09-22 11:31:42 +00:00
|
|
|
/// Type of Message Signalled Interrupt
|
2020-04-29 13:18:04 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2020-04-27 15:53:07 +00:00
|
|
|
pub enum MsiIrqType {
|
|
|
|
/// PCI MSI IRQ numbers.
|
|
|
|
PciMsi,
|
|
|
|
/// PCI MSIx IRQ numbers.
|
|
|
|
PciMsix,
|
|
|
|
/// Generic MSI IRQ numbers.
|
|
|
|
GenericMsi,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Enumeration for device resources.
|
|
|
|
#[allow(missing_docs)]
|
2020-04-29 13:18:04 +00:00
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
2020-04-27 15:53:07 +00:00
|
|
|
pub enum Resource {
|
|
|
|
/// IO Port address range.
|
|
|
|
PioAddressRange { base: u16, size: u16 },
|
|
|
|
/// Memory Mapped IO address range.
|
|
|
|
MmioAddressRange { base: u64, size: u64 },
|
|
|
|
/// Legacy IRQ number.
|
|
|
|
LegacyIrq(u32),
|
|
|
|
/// Message Signaled Interrupt
|
|
|
|
MsiIrq {
|
|
|
|
ty: MsiIrqType,
|
|
|
|
base: u32,
|
|
|
|
size: u32,
|
|
|
|
},
|
|
|
|
/// Network Interface Card MAC address.
|
|
|
|
MacAddress(String),
|
|
|
|
/// KVM memslot index.
|
|
|
|
KvmMemSlot(u32),
|
|
|
|
}
|