hvlite_core/emuplat/
i440bx_host_pci_bridge.rsuse chipset_legacy::i440bx_host_pci_bridge::AdjustGpaRange;
use chipset_legacy::i440bx_host_pci_bridge::GpaState;
use futures::executor::block_on;
use membacking::RamVisibility;
use membacking::RamVisibilityControl;
use memory_range::MemoryRange;
pub struct ManageRamGpaRange {
memory: RamVisibilityControl,
}
impl ManageRamGpaRange {
pub fn new(memory: RamVisibilityControl) -> Self {
Self { memory }
}
}
impl AdjustGpaRange for ManageRamGpaRange {
fn adjust_gpa_range(&mut self, range: MemoryRange, state: GpaState) {
let state = match state {
GpaState::Writable => RamVisibility::ReadWrite,
GpaState::WriteProtected => {
if range == MemoryRange::new(0xc8000..0xcc000) {
RamVisibility::ReadWrite
} else {
RamVisibility::ReadOnly
}
}
GpaState::WriteOnly | GpaState::Mmio => {
if range.overlaps(&MemoryRange::new(0xcc000..0xe0000)) {
RamVisibility::ReadOnly
} else {
RamVisibility::Unmapped
}
}
};
block_on(self.memory.set_ram_visibility(range, state)).unwrap();
}
}