[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 01/10] x86/SVM: Modify VMCB fields to add AVIC support
From: Suravee Suthikulpanit <suravee.suthikulpanit@xxxxxxx> Introduce AVIC-related VMCB fields. Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@xxxxxxx> Signed-off-by: Janakarajan Natarajan <Janakarajan.Natarajan@xxxxxxx> --- xen/include/asm-x86/hvm/svm/vmcb.h | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/xen/include/asm-x86/hvm/svm/vmcb.h b/xen/include/asm-x86/hvm/svm/vmcb.h index de07429dff..591d98fc8c 100644 --- a/xen/include/asm-x86/hvm/svm/vmcb.h +++ b/xen/include/asm-x86/hvm/svm/vmcb.h @@ -324,16 +324,17 @@ typedef union struct { u64 tpr: 8; - u64 irq: 1; + u64 irq: 1; /* ignored in avic mode */ u64 vgif: 1; u64 rsvd0: 6; - u64 prio: 4; - u64 ign_tpr: 1; + u64 prio: 4; /* ignored in avic mode */ + u64 ign_tpr: 1; /* ignored in avic mode */ u64 rsvd1: 3; u64 intr_masking: 1; u64 vgif_enable: 1; - u64 rsvd2: 6; - u64 vector: 8; + u64 rsvd2: 5; + u64 avic_enable: 1; + u64 vector: 8; /* ignored in avic mode */ u64 rsvd3: 24; } fields; } vintr_t; @@ -393,7 +394,8 @@ typedef union uint32_t cr2: 1; /* debugctlmsr, last{branch,int}{to,from}ip */ uint32_t lbr: 1; - uint32_t resv: 21; + uint32_t avic: 1; + uint32_t resv: 20; } fields; } vmcbcleanbits_t; @@ -427,7 +429,8 @@ struct vmcb_struct { u64 exitinfo2; /* offset 0x80 */ eventinj_t exitintinfo; /* offset 0x88 */ u64 _np_enable; /* offset 0x90 - cleanbit 4 */ - u64 res08[2]; + u64 avic_vapic_bar; /* offset 0x98 */ + u64 res08; /* offset 0xA0 */ eventinj_t eventinj; /* offset 0xA8 */ u64 _h_cr3; /* offset 0xB0 - cleanbit 4 */ virt_ext_t virt_ext; /* offset 0xB8 */ @@ -436,7 +439,11 @@ struct vmcb_struct { u64 nextrip; /* offset 0xC8 */ u8 guest_ins_len; /* offset 0xD0 */ u8 guest_ins[15]; /* offset 0xD1 */ - u64 res10a[100]; /* offset 0xE0 pad to save area */ + u64 avic_bk_pg_pa; /* offset 0xE0 */ + u64 res09a; /* offset 0xE8 */ + u64 avic_logical_id_table_pa; /* offset 0xF0 */ + u64 avic_physical_id_table_pa; /* offset 0xF8 */ + u64 res10a[96]; /* offset 0x100 pad to save area */ union { struct segment_register sreg[6]; -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |