openhcl_boot/arch/x86_64/
hypercall.rsuse core::ptr::addr_of;
use hvdef::HV_PAGE_SIZE;
use minimal_rt::arch::hypercall::HYPERCALL_PAGE;
use minimal_rt::arch::msr::read_msr;
use minimal_rt::arch::msr::write_msr;
fn report_os_id(guest_os_id: u64) {
unsafe {
write_msr(hvdef::HV_X64_MSR_GUEST_OS_ID, guest_os_id);
};
}
fn write_hypercall_msr(enable: bool) {
let hypercall_contents = hvdef::hypercall::MsrHypercallContents::from(unsafe {
read_msr(hvdef::HV_X64_MSR_HYPERCALL)
});
let hypercall_page_num = addr_of!(HYPERCALL_PAGE) as u64 / HV_PAGE_SIZE;
assert!(!enable || !hypercall_contents.enable());
let new_hv_contents = hypercall_contents.with_enable(enable).with_gpn(if enable {
hypercall_page_num
} else {
0
});
unsafe { write_msr(hvdef::HV_X64_MSR_HYPERCALL, new_hv_contents.into()) };
}
pub(crate) fn initialize(guest_os_id: u64) {
report_os_id(guest_os_id);
write_hypercall_msr(true);
}
pub(crate) fn uninitialize() {
write_hypercall_msr(false);
report_os_id(0);
}