#![expect(dead_code)]
use zerocopy::FromBytes;
use zerocopy::Immutable;
use zerocopy::IntoBytes;
use zerocopy::KnownLayout;
pub const MAX_VMBUS_PACKET_SIZE: usize = 0x4000;
pub const CURSOR_MAX_PAYLOAD_SIZE: usize = MAX_VMBUS_PACKET_SIZE / 2;
pub const CURSOR_MAX_X: usize = 96;
pub const CURSOR_MAX_Y: usize = 96;
pub const CURSOR_ARGB_PIXEL_SIZE: usize = 4;
pub const CURSOR_MAX_SIZE: usize = CURSOR_MAX_X * CURSOR_MAX_Y * CURSOR_ARGB_PIXEL_SIZE;
pub const HVD_CHILD_ID: u32 = 0x00545648;
pub const HVD_CHILD_ID2: u32 = 0x00325648;
pub const HVD_CHILD_ID3: u32 = 0x00335648;
pub const EDID_BLOCK: EdidBlock = EdidBlock([
0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x36, 0x68, 0x2E, 0x06, 0x00, 0x00, 0x00, 0x00,
0xFF, 0x15, 0x01, 0x04, 0x80, 0x00, 0x00, 0x78, 0x22, 0xEE, 0x95, 0xA3, 0x54, 0x4C, 0x99, 0x26,
0x0F, 0x50, 0x54, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x6C, 0x20, 0x00, 0x30, 0x42, 0x00, 0x32, 0x30, 0x40, 0xC0,
0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x48, 0x79, 0x70,
0x65, 0x72, 0x56, 0x4D, 0x6F, 0x6E, 0x69, 0x74, 0x6F, 0x72, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC6,
]);
pub const MAX_DIRTY_REGIONS: u8 = 255;
macro_rules! packed {
($wrap:ident, $prim:ident, $count:literal) => {
#[allow(non_camel_case_types)]
#[repr(transparent)]
#[derive(Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct $wrap([u8; $count]);
impl $wrap {
pub fn to_ne(self) -> $prim {
$prim::from_ne_bytes(self.0)
}
pub fn from_ne(n: $prim) -> Self {
Self(n.to_ne_bytes())
}
}
impl std::fmt::Debug for $wrap {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
std::fmt::Debug::fmt(&self.to_ne(), f)
}
}
impl From<$prim> for $wrap {
fn from(n: $prim) -> $wrap {
$wrap::from_ne(n)
}
}
impl From<$wrap> for $prim {
fn from(n: $wrap) -> $prim {
n.to_ne()
}
}
};
}
packed!(u64p, u64, 8);
packed!(u32p, u32, 4);
packed!(u16p, u16, 2);
packed!(i32p, i32, 4);
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct ScreenInfo {
pub width: u16p,
pub height: u16p,
}
pub const MAXIMUM_RESOLUTIONS_COUNT: u8 = 64;
pub const MAX_VSC_TO_VSP_MESSAGE_SIZE: usize =
size_of::<PointerShapeMessage>() + CURSOR_MAX_PAYLOAD_SIZE;
pub const MAX_VSP_TO_VSC_MESSAGE_SIZE: usize = size_of::<SupportedResolutionsResponseMessage>()
+ size_of::<ScreenInfo>() * MAXIMUM_RESOLUTIONS_COUNT as usize;
pub const EMERGENCY_RESET_IO_PORT: u16 = 0x100;
#[repr(C)]
#[derive(Debug, Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct Version(u32p);
impl Version {
pub fn new(major: u16, minor: u16) -> Version {
Self(((minor as u32) << 16 | (major as u32)).into())
}
pub fn major(self) -> u16 {
self.0.to_ne() as u16
}
pub fn minor(self) -> u16 {
(self.0.to_ne() >> 16) as u16
}
}
pub const VERSION_MAJOR: u16 = 3;
pub const VERSION_MINOR: u16 = 5;
pub const VERSION_MAJOR_THRESHOLD: u16 = 3;
pub const VERSION_MINOR_BLUE: u16 = 3;
pub const VERSION_MINOR_THRESHOLD_M1: u16 = 4;
pub const VERSION_MINOR_THRESHOLD_M2: u16 = 5;
pub const ACCEPTED_WITH_VERSION_EXCHANGE: u8 = 2;
pub const fn feature_level(major: u16, minor: u16) -> u32 {
(major as u32) << 16 | (minor & FEATURE_MINOR_MASK) as u32
}
pub const EDID_BLOCK_SIZE: usize = 128;
#[repr(transparent)]
#[derive(Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct EdidBlock(pub [u8; EDID_BLOCK_SIZE]);
impl std::fmt::Debug for EdidBlock {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "edid")
}
}
pub const FEATURE_MINOR_MASK: u16 = 0xff;
pub const FEATURE_WIN7_RTM: u32 = feature_level(3, 0);
pub const FEATURE_BASIC: u32 = FEATURE_WIN7_RTM;
pub const FEATURE_WIN8_RTM: u32 = feature_level(3, 2);
pub const FEATURE_HIGH_RESOLUTIONS: u32 = FEATURE_WIN8_RTM;
pub const FEATURE_SUPPORTS_REINIT: u32 = FEATURE_WIN8_RTM;
pub const FEATURE_WIN_BLUE: u32 = feature_level(3, 3);
pub const FEATURE_QUERY_BIOS_INFO: u32 = FEATURE_WIN_BLUE;
pub const FEATURE_WIN_THRESHOLD_M1: u32 = feature_level(3, 4);
pub const FEATURE_RESOLUTION_SET_BY_HOST: u32 = FEATURE_WIN_THRESHOLD_M1;
pub const FEATURE_WIN_THRESHOLD_M2: u32 = feature_level(3, 5);
pub const FEATURE_LOCK_ON_DISCONNECT: u32 = FEATURE_WIN_THRESHOLD_M2;
pub const MESSAGE_VERSION_REQUEST: u32 = 1;
pub const MESSAGE_VERSION_RESPONSE: u32 = 2;
pub const MESSAGE_VRAM_LOCATION: u32 = 3;
pub const MESSAGE_VRAM_LOCATION_ACK: u32 = 4;
pub const MESSAGE_SITUATION_UPDATE: u32 = 5;
pub const MESSAGE_SITUATION_UPDATE_ACK: u32 = 6;
pub const MESSAGE_POINTER_POSITION: u32 = 7;
pub const MESSAGE_POINTER_SHAPE: u32 = 8;
pub const MESSAGE_FEATURE_CHANGE: u32 = 9;
pub const MESSAGE_DIRT: u32 = 10;
pub const MESSAGE_BIOS_INFO_REQUEST: u32 = 11;
pub const MESSAGE_BIOS_INFO_RESPONSE: u32 = 12;
pub const MESSAGE_SUPPORTED_RESOLUTIONS_REQUEST: u32 = 13;
pub const MESSAGE_SUPPORTED_RESOLUTIONS_RESPONSE: u32 = 14;
pub const MESSAGE_CAPABILITY_REQUEST: u32 = 15;
pub const MESSAGE_CAPABILITY_RESPONSE: u32 = 16;
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct MessageHeader {
pub typ: u32p, pub size: u32p, }
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct VersionRequestMessage {
pub version: Version,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct VersionResponseMessage {
pub version: Version,
pub is_accepted: u8,
pub max_video_outputs: u8, }
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct SupportedResolutionsRequestMessage {
pub maximum_resolution_count: u8,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct SupportedResolutionsResponseMessage {
pub edid_block: EdidBlock,
pub resolution_count: u8,
pub default_resolution_index: u8,
pub is_standard: u8,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct CapabilityRequestMessage {}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct CapabilityResponseMessage {
pub lock_on_disconnect: u32p,
pub reserved: [u32p; 15],
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct VramLocationMessage {
pub user_context: u64p,
pub is_vram_gpa_address_specified: u8,
pub vram_gpa_address: u64p,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct VramLocationAckMessage {
pub user_context: u64p,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct VideoOutputSituation {
pub active: u8, pub primary_surface_vram_offset: u32p, pub depth_bits: u8, pub width_pixels: u32p, pub height_pixels: u32p, pub pitch_bytes: u32p, }
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct SituationUpdateMessage {
pub user_context: u64p,
pub video_output_count: u8, pub video_output: VideoOutputSituation,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct SituationUpdateAckMessage {
pub user_context: u64p,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct BiosInfoRequestMessage {}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct BiosInfoResponseMessage {
pub stop_device_supported: u32p,
pub reserved: [u8; 12],
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct PointerPositionMessage {
pub is_visible: u8,
pub video_output: u8,
pub image_x: i32p,
pub image_y: i32p,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct PointerShapeMessage {
pub partial_index: u8,
pub cursor_flags: u8,
pub width_pixels: u32p,
pub height_pixels: u32p,
pub hotspot_x: u32p,
pub hotspot_y: u32p,
}
pub const CURSOR_COMPLETE: u8 = 0xff;
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct FeatureChangeMessage {
pub is_dirt_needed: u8,
pub is_pointer_position_updates_needed: u8,
pub is_pointer_shape_updates_needed: u8,
pub is_video_situation_updates_needed: u8,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct FeatureChangeMessageV2 {
pub is_dirt_needed: u8,
pub is_pointer_position_updates_needed: u8,
pub is_pointer_shape_updates_needed: u8,
pub is_video_situation_updates_needed: u8,
pub edid_block: EdidBlock,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct DirtMessage {
pub video_output: u8,
pub dirt_count: u8,
}
#[repr(C)]
#[derive(Copy, Clone, Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct Rectangle {
pub left: i32p,
pub top: i32p,
pub right: i32p,
pub bottom: i32p,
}