Struct devices::platform::vfio_platform::VfioPlatformDevice   
source · pub struct VfioPlatformDevice {
    device: Arc<VfioDevice>,
    interrupt_edge_evt: Vec<IrqEdgeEvent>,
    interrupt_level_evt: Vec<IrqLevelEvent>,
    mmio_regions: Vec<MmioInfo>,
    vm_memory_client: VmMemoryClient,
    mem: Vec<MemoryMapping>,
}Fields§
§device: Arc<VfioDevice>§interrupt_edge_evt: Vec<IrqEdgeEvent>§interrupt_level_evt: Vec<IrqLevelEvent>§mmio_regions: Vec<MmioInfo>§vm_memory_client: VmMemoryClient§mem: Vec<MemoryMapping>Implementations§
source§impl VfioPlatformDevice
 
impl VfioPlatformDevice
sourcepub fn new(device: VfioDevice, vm_memory_client: VmMemoryClient) -> Self
 
pub fn new(device: VfioDevice, vm_memory_client: VmMemoryClient) -> Self
Constructs a new Vfio Platform device for the given Vfio device
pub fn get_platform_irqs(&self) -> Result<Vec<VfioIrq>, VfioError>
pub fn irq_is_automask(&self, irq: &VfioIrq) -> bool
fn setup_irq_resample(&mut self, resample_evt: &Event, index: u32) -> Result<()>
pub fn assign_edge_platform_irq( &mut self, irq_evt: &IrqEdgeEvent, index: u32, ) -> Result<()>
pub fn assign_level_platform_irq( &mut self, irq_evt: &IrqLevelEvent, index: u32, ) -> Result<()>
fn find_region(&self, addr: u64) -> Option<MmioInfo>
pub fn allocate_regions( &mut self, resources: &mut SystemAllocator, ) -> Result<Vec<(u64, u64)>, Error>
fn region_mmap_early(&self, vm: &mut impl Vm, index: usize, start_addr: u64)
sourcepub fn regions_mmap_early(&mut self, vm: &mut impl Vm)
 
pub fn regions_mmap_early(&mut self, vm: &mut impl Vm)
Force adding the MMIO regions to the guest memory space.
By default, MMIO regions are mapped lazily when the guest first accesses them. Instead, this function maps them, even if the guest might end up not accessing them. It only runs in the current thread and can therefore be called before the VM is started.
fn region_mmap(&self, index: usize, start_addr: u64) -> Vec<MemoryMapping>
fn regions_mmap(&mut self)
fn disable_irqs(&mut self, index: u32)
fn read_mmio(&mut self, addr: u64, data: &mut [u8])
fn write_mmio(&mut self, addr: u64, data: &[u8])
pub fn keep_rds(&self) -> Vec<RawDescriptor>
sourcepub fn device_file(&self) -> &File ⓘ
 
pub fn device_file(&self) -> &File ⓘ
Gets the vfio device backing File.
Trait Implementations§
source§impl BusDevice for VfioPlatformDevice
 
impl BusDevice for VfioPlatformDevice
source§fn device_id(&self) -> DeviceId
 
fn device_id(&self) -> DeviceId
Returns a unique id per device type suitable for metrics gathering.
source§fn debug_label(&self) -> String
 
fn debug_label(&self) -> String
Returns a label suitable for debug output.
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 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 on_sandboxed(&mut self)
 
fn on_sandboxed(&mut self)
Invoked when the device is sandboxed.
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 VfioPlatformDevice
 
impl BusDeviceObj for VfioPlatformDevice
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>>
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>>
source§impl Suspendable for VfioPlatformDevice
 
impl Suspendable for VfioPlatformDevice
Auto Trait Implementations§
impl Freeze for VfioPlatformDevice
impl RefUnwindSafe for VfioPlatformDevice
impl Send for VfioPlatformDevice
impl Sync for VfioPlatformDevice
impl Unpin for VfioPlatformDevice
impl UnwindSafe for VfioPlatformDevice
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.