aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/svm.h
diff options
context:
space:
mode:
authorGravatar Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> 2022-05-19 05:26:56 -0500
committerGravatar Paolo Bonzini <pbonzini@redhat.com> 2022-06-24 12:45:08 -0400
commitd2fe6bf5b881205ae99e858ed9b7ba1ebdb9c029 (patch)
tree7bcf1ae2a276053a871e339f4f4d6c5fc890fbd0 /arch/x86/include/asm/svm.h
parentKVM: SVM: Detect X2APIC virtualization (x2AVIC) support (diff)
downloadlinux-d2fe6bf5b881205ae99e858ed9b7ba1ebdb9c029.tar.gz
linux-d2fe6bf5b881205ae99e858ed9b7ba1ebdb9c029.tar.bz2
linux-d2fe6bf5b881205ae99e858ed9b7ba1ebdb9c029.zip
KVM: SVM: Update max number of vCPUs supported for x2AVIC mode
xAVIC and x2AVIC modes can support diffferent number of vcpus. Update existing logics to support each mode accordingly. Also, modify the maximum physical APIC ID for AVIC to 255 to reflect the actual value supported by the architecture. Reviewed-by: Maxim Levitsky <mlevitsk@redhat.com> Reviewed-by: Pankaj Gupta <pankaj.gupta@amd.com> Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> Message-Id: <20220519102709.24125-5-suravee.suthikulpanit@amd.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/svm.h')
-rw-r--r--arch/x86/include/asm/svm.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/x86/include/asm/svm.h b/arch/x86/include/asm/svm.h
index 1d4d30cd84c2..ed4b83d7f09e 100644
--- a/arch/x86/include/asm/svm.h
+++ b/arch/x86/include/asm/svm.h
@@ -258,10 +258,16 @@ enum avic_ipi_failure_cause {
/*
- * 0xff is broadcast, so the max index allowed for physical APIC ID
- * table is 0xfe. APIC IDs above 0xff are reserved.
+ * For AVIC, the max index allowed for physical APIC ID
+ * table is 0xff (255).
*/
-#define AVIC_MAX_PHYSICAL_ID_COUNT 0xff
+#define AVIC_MAX_PHYSICAL_ID 0XFEULL
+
+/*
+ * For x2AVIC, the max index allowed for physical APIC ID
+ * table is 0x1ff (511).
+ */
+#define X2AVIC_MAX_PHYSICAL_ID 0x1FFUL
#define AVIC_HPA_MASK ~((0xFFFULL << 52) | 0xFFF)
#define VMCB_AVIC_APIC_BAR_MASK 0xFFFFFFFFFF000ULL