vmm_core/
vmotherboard_adapter.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Glue code to adapt OpenVMM-specific platform APIs to the types/traits
//! required by `vmotherboard`.

use crate::partition_unit::Halt;
use crate::synic::SynicPorts;
use hvdef::Vtl;
use std::sync::Arc;
use virt::VpIndex;
use virt::io::CpuIo;
use vmm_core_defs::HaltReason;
use vmotherboard::Chipset;

#[expect(missing_docs)]
#[derive(Clone)]
pub struct ChipsetPlusSynic {
    pub synic_ports: Arc<SynicPorts>,
    pub chipset: Arc<Chipset>,
}

impl ChipsetPlusSynic {
    #[expect(missing_docs)]
    pub fn new(synic_ports: Arc<SynicPorts>, chipset: Arc<Chipset>) -> Self {
        Self {
            synic_ports,
            chipset,
        }
    }
}

impl CpuIo for ChipsetPlusSynic {
    fn is_mmio(&self, address: u64) -> bool {
        self.chipset.is_mmio(address)
    }

    fn acknowledge_pic_interrupt(&self) -> Option<u8> {
        self.chipset.acknowledge_pic_interrupt()
    }

    fn handle_eoi(&self, irq: u32) {
        self.chipset.handle_eoi(irq)
    }

    fn signal_synic_event(&self, vtl: Vtl, connection_id: u32, flag: u16) -> hvdef::HvResult<()> {
        self.synic_ports.on_signal_event(vtl, connection_id, flag)
    }

    fn post_synic_message(
        &self,
        vtl: Vtl,
        connection_id: u32,
        secure: bool,
        message: &[u8],
    ) -> hvdef::HvResult<()> {
        self.synic_ports
            .on_post_message(vtl, connection_id, secure, message)
    }

    fn read_mmio(
        &self,
        vp: VpIndex,
        address: u64,
        data: &mut [u8],
    ) -> impl std::future::Future<Output = ()> {
        self.chipset.mmio_read(vp.index(), address, data)
    }

    fn write_mmio(
        &self,
        vp: VpIndex,
        address: u64,
        data: &[u8],
    ) -> impl std::future::Future<Output = ()> {
        self.chipset.mmio_write(vp.index(), address, data)
    }

    fn read_io(
        &self,
        vp: VpIndex,
        port: u16,
        data: &mut [u8],
    ) -> impl std::future::Future<Output = ()> {
        self.chipset.io_read(vp.index(), port, data)
    }

    fn write_io(
        &self,
        vp: VpIndex,
        port: u16,
        data: &[u8],
    ) -> impl std::future::Future<Output = ()> {
        self.chipset.io_write(vp.index(), port, data)
    }
}

impl vmotherboard::PowerEventHandler for Halt {
    fn on_power_event(&self, evt: vmotherboard::PowerEvent) {
        let reason = match evt {
            vmotherboard::PowerEvent::PowerOff => HaltReason::PowerOff,
            vmotherboard::PowerEvent::Reset => HaltReason::Reset,
            vmotherboard::PowerEvent::Hibernate => HaltReason::Hibernate,
        };
        self.halt(reason)
    }
}

impl vmotherboard::DebugEventHandler for Halt {
    fn on_debug_break(&self, vp: Option<u32>) {
        self.halt(HaltReason::DebugBreak { vp })
    }
}