uefi_specs/hyperv/mod.rs
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Types and constants specific to Hyper-V's firmware implementation.
5//!
6//! These values are all bespoke implementation details, and will not be found
7//! in any public spec. Instead, they are transcribed directly from the Hyper-V
8//! C/C++ sources.
9
10pub mod bios_event_log;
11pub mod boot_bios_log;
12pub mod common;
13pub mod crypto;
14pub mod nvram;
15pub mod time;
16
17use guid::Guid;
18
19/// MsvmPkg: `gEfiVmbusChannelDevicePathGuid`
20pub const VM_HW_VENDOR_VMBUS_GUID: Guid = guid::guid!("9b17e5a2-0891-42dd-b653-80b5c22809ba");
21
22/// MsvmPkg: `gSyntheticStorageClassGuid`
23pub const VM_DISK_VMBUS_CHILD_GUID: Guid = guid::guid!("ba6163d9-04a1-4d29-b605-72e2ffb1dc7f");