Skip to content

Commit 3462a49

Browse files
ericlemsftluishmsft
authored andcommitted
Document HV_X64_REGISTER_SEV_GPA_PAGE, HvX64RegisterSevAvicGpa
1 parent bcce004 commit 3462a49

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

virtualization/hyper-v-on-windows/tlfs/datatypes/TOC.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,6 @@
5151
- name: HV_X64_TABLE_REGISTER
5252
href: HV_X64_TABLE_REGISTER.md
5353
- name: HV_X64_XMM_CONTROL_STATUS_REGISTER
54-
href: HV_X64_XMM_CONTROL_STATUS_REGISTER.md
54+
href: HV_X64_XMM_CONTROL_STATUS_REGISTER.md
55+
- name: HV_X64_REGISTER_SEV_GPA_PAGE
56+
href: HV_X64_REGISTER_SEV_GPA_PAGE.md

virtualization/hyper-v-on-windows/tlfs/datatypes/hv_register_name.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ The following table lists all register names:
195195
| HvRegisterVpAssistPage | 0x00090013 | |
196196
| HvRegisterReferenceTsc | 0x00090017 | |
197197
| HvRegisterReferenceTscSequence | 0x0009001A | |
198+
| HvX64RegisterSevAvicGpa | 0x00090043 | See [HV_X64_REGISTER_SEV_GPA_PAGE](./hv_x64_register_sev_gpa_page.md) |
198199
| HvRegisterSint0 | 0x000A0000 | |
199200
| HvRegisterSint1 | 0x000A0001 | |
200201
| HvRegisterSint2 | 0x000A0002 | |
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: HV_X64_REGISTER_SEV_GPA_PAGE
3+
description: HV_X64_REGISTER_SEV_GPA_PAGE
4+
keywords: hyper-v
5+
author: ericle
6+
ms.author: hvdev
7+
ms.date: 08/11/2025
8+
ms.topic: reference
9+
---
10+
11+
# HV_X64_REGISTER_SEV_GPA_PAGE
12+
13+
The following data structure is used to define the contents of the Secure AVIC control register (HvX64RegisterSevAvicGpa).
14+
15+
## Syntax
16+
17+
```c
18+
typedef union
19+
{
20+
UINT64 AsUINT64;
21+
struct
22+
{
23+
UINT64 Enabled : 1;
24+
UINT64 ReservedZ : 11;
25+
UINT64 PageNumber : 52;
26+
};
27+
28+
} HV_X64_REGISTER_SEV_GPA_PAGE;
29+
```

0 commit comments

Comments
 (0)