Struct devices::virtio::virtio_mmio_device::VirtioMmioDevice
source · pub struct VirtioMmioDevice {Show 15 fields
device: Box<dyn VirtioDevice>,
device_activated: bool,
interrupt: Option<Interrupt>,
interrupt_evt: Option<IrqEdgeEvent>,
async_intr_status: bool,
queues: Vec<QueueConfig>,
queue_evts: Vec<Event>,
mem: GuestMemory,
device_feature_select: u32,
driver_feature_select: u32,
queue_select: u16,
driver_status: u8,
mmio_base: u64,
irq_num: u32,
config_generation: u32,
}
Expand description
Implements the MMIO transport for virtio devices.
Fields§
§device: Box<dyn VirtioDevice>
§device_activated: bool
§interrupt: Option<Interrupt>
§interrupt_evt: Option<IrqEdgeEvent>
§async_intr_status: bool
§queues: Vec<QueueConfig>
§queue_evts: Vec<Event>
§mem: GuestMemory
§device_feature_select: u32
§driver_feature_select: u32
§queue_select: u16
§driver_status: u8
§mmio_base: u64
§irq_num: u32
§config_generation: u32
Implementations§
source§impl VirtioMmioDevice
impl VirtioMmioDevice
sourcepub fn new(
mem: GuestMemory,
device: Box<dyn VirtioDevice>,
async_intr_status: bool
) -> Result<Self>
pub fn new( mem: GuestMemory, device: Box<dyn VirtioDevice>, async_intr_status: bool ) -> Result<Self>
Constructs a new MMIO transport for the given virtio device.
pub fn ioevents(&self) -> Vec<(&Event, u64, Datamatch)>
fn is_driver_ready(&self) -> bool
sourcefn is_reset_requested(&self) -> bool
fn is_reset_requested(&self) -> bool
Determines if the driver has requested the device reset itself
fn device_type(&self) -> u32
sourcefn activate(&mut self) -> Result<()>
fn activate(&mut self) -> Result<()>
Activates the underlying VirtioDevice
. assign_irq
has to be called first.
fn read_mmio(&self, info: BusAccessInfo, data: &mut [u8])
fn write_mmio(&mut self, info: BusAccessInfo, data: &[u8])
fn with_queue<U, F>(&self, f: F) -> Option<U>where
F: FnOnce(&QueueConfig) -> U,
fn with_queue_mut<F>(&mut self, f: F)where
F: FnOnce(&mut QueueConfig),
pub fn allocate_regions( &mut self, resources: &mut SystemAllocator ) -> Result<Vec<(u64, u64)>, Error>
pub fn assign_irq(&mut self, irq_evt: &IrqEdgeEvent, irq_num: u32)
pub fn keep_rds(&self) -> Vec<RawDescriptor>
fn on_device_sandboxed(&mut self)
pub fn generate_acpi(&mut self, sdts: Vec<SDT>) -> Option<Vec<SDT>>
Trait Implementations§
source§impl Aml for VirtioMmioDevice
impl Aml for VirtioMmioDevice
source§impl BusDevice for VirtioMmioDevice
impl BusDevice for VirtioMmioDevice
source§fn debug_label(&self) -> String
fn debug_label(&self) -> String
Returns a label suitable for debug output.
source§fn device_id(&self) -> DeviceId
fn device_id(&self) -> DeviceId
Returns a unique id per device type suitable for metrics gathering.
source§fn read(&mut self, info: BusAccessInfo, data: &mut [u8])
fn read(&mut self, info: BusAccessInfo, data: &mut [u8])
Reads at
offset
from this devicesource§fn write(&mut self, info: BusAccessInfo, data: &[u8])
fn write(&mut self, info: BusAccessInfo, data: &[u8])
Writes at
offset
into this devicesource§fn on_sandboxed(&mut self)
fn on_sandboxed(&mut self)
Invoked when the device is sandboxed.
source§fn config_register_write(
&mut self,
reg_idx: usize,
offset: u64,
data: &[u8]
) -> ConfigWriteResult
fn config_register_write( &mut self, reg_idx: usize, offset: u64, data: &[u8] ) -> ConfigWriteResult
Sets a register in the configuration space. Only used by PCI. Read more
source§fn config_register_read(&self, reg_idx: usize) -> u32
fn config_register_read(&self, reg_idx: usize) -> u32
Gets a register from the configuration space. Only used by PCI. Read more
source§fn init_pci_config_mapping(
&mut self,
shmem: &SharedMemory,
base: usize,
len: usize
) -> bool
fn init_pci_config_mapping( &mut self, shmem: &SharedMemory, base: usize, len: usize ) -> bool
Provides a memory region to back MMIO access to the configuration
space. If the device can keep the memory region up to date, then it
should return true, after which no more calls to config_register_read
will be made. Otherwise the device should return false. Read more
source§fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)
fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)
Sets a register in the virtual config space. Only used by PCI. Read more
source§fn virtual_config_register_read(&self, reg_idx: usize) -> u32
fn virtual_config_register_read(&self, reg_idx: usize) -> u32
Gets a register from the virtual config space. Only used by PCI. Read more
source§fn get_ranges(&self) -> Vec<(BusRange, BusType)>
fn get_ranges(&self) -> Vec<(BusRange, BusType)>
Gets a list of all ranges registered by this BusDevice.
source§fn destroy_device(&mut self)
fn destroy_device(&mut self)
Invoked when the device is destroyed
source§impl BusDeviceObj for VirtioMmioDevice
impl BusDeviceObj for VirtioMmioDevice
fn as_virtio_mmio_device(&self) -> Option<&VirtioMmioDevice>
fn as_virtio_mmio_device_mut(&mut self) -> Option<&mut VirtioMmioDevice>
fn into_virtio_mmio_device(self: Box<Self>) -> Option<Box<VirtioMmioDevice>>
fn as_pci_device(&self) -> Option<&dyn PciDevice>
fn as_pci_device_mut(&mut self) -> Option<&mut dyn PciDevice>
fn into_pci_device(self: Box<Self>) -> Option<Box<dyn PciDevice>>
fn as_platform_device(&self) -> Option<&VfioPlatformDevice>
fn as_platform_device_mut(&mut self) -> Option<&mut VfioPlatformDevice>
fn into_platform_device(self: Box<Self>) -> Option<Box<VfioPlatformDevice>>
Auto Trait Implementations§
impl !RefUnwindSafe for VirtioMmioDevice
impl Send for VirtioMmioDevice
impl !Sync for VirtioMmioDevice
impl Unpin for VirtioMmioDevice
impl !UnwindSafe for VirtioMmioDevice
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.