mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
devices: Add PCI configuration registers method to the BusDevice Trait
This is the only clean, or not so dirty way for us to pass a BusDevice instance to the PciRoot add_device() method. This is very similar to what crosvm does and we now understand why... Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
db7937d47c
commit
fa3951df22
@ -24,6 +24,16 @@ pub trait BusDevice: Send {
|
||||
fn write(&mut self, offset: u64, data: &[u8]) {}
|
||||
/// Triggers the `irq_mask` interrupt on this device
|
||||
fn interrupt(&self, irq_mask: u32) {}
|
||||
|
||||
/// Sets a register in the configuration space. Only used by PCI.
|
||||
/// * `reg_idx` - The index of the config register to modify.
|
||||
/// * `offset` - Offset in to the register.
|
||||
fn write_config_register(&mut self, reg_idx: usize, offset: u64, data: &[u8]) {}
|
||||
/// Gets a register from the configuration space. Only used by PCI.
|
||||
/// * `reg_idx` - The index of the config register to read.
|
||||
fn read_config_register(&self, reg_idx: usize) -> u32 {
|
||||
0
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
Loading…
Reference in New Issue
Block a user