Blame SOURCES/kvm-x86-cpu-Enable-AVX512_VP2INTERSECT-cpu-feature.patch

6e7d01
From ad50e0e2d310277f06a9c512fe6e31da183ead6e Mon Sep 17 00:00:00 2001
6e7d01
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
6e7d01
Date: Wed, 24 Feb 2021 11:30:34 -0500
6e7d01
Subject: [PATCH 1/4] x86/cpu: Enable AVX512_VP2INTERSECT cpu feature
6e7d01
6e7d01
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
6e7d01
Message-id: <20210224113037.15599-2-dgilbert@redhat.com>
6e7d01
Patchwork-id: 101203
6e7d01
O-Subject: [RHEL-8.4.0 qemu-kvm PATCH 1/4] x86/cpu: Enable AVX512_VP2INTERSECT cpu feature
6e7d01
Bugzilla: 1790620
6e7d01
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
6e7d01
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
6e7d01
RH-Acked-by: Peter Xu <peterx@redhat.com>
6e7d01
6e7d01
From: Cathy Zhang <cathy.zhang@intel.com>
6e7d01
6e7d01
AVX512_VP2INTERSECT compute vector pair intersection to a pair
6e7d01
of mask registers, which is introduced with intel Tiger Lake,
6e7d01
defining as CPUID.(EAX=7,ECX=0):EDX[bit 08].
6e7d01
6e7d01
Refer to the following release spec:
6e7d01
https://software.intel.com/sites/default/files/managed/c5/15/\
6e7d01
architecture-instruction-set-extensions-programming-reference.pdf
6e7d01
6e7d01
Signed-off-by: Cathy Zhang <cathy.zhang@intel.com>
6e7d01
Message-Id: <1586760758-13638-1-git-send-email-cathy.zhang@intel.com>
6e7d01
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
6e7d01
(cherry picked from commit 353f98c9ad52ff4b8cfe553c90be04f747a14c98)
6e7d01
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
6e7d01
---
6e7d01
 target/i386/cpu.c | 2 +-
6e7d01
 target/i386/cpu.h | 2 ++
6e7d01
 2 files changed, 3 insertions(+), 1 deletion(-)
6e7d01
6e7d01
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
6e7d01
index ff39fc9905..67dab94aa5 100644
6e7d01
--- a/target/i386/cpu.c
6e7d01
+++ b/target/i386/cpu.c
6e7d01
@@ -1078,7 +1078,7 @@ static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
6e7d01
         .feat_names = {
6e7d01
             NULL, NULL, "avx512-4vnniw", "avx512-4fmaps",
6e7d01
             NULL, NULL, NULL, NULL,
6e7d01
-            NULL, NULL, "md-clear", NULL,
6e7d01
+            "avx512-vp2intersect", NULL, "md-clear", NULL,
6e7d01
             NULL, NULL, NULL, NULL,
6e7d01
             NULL, NULL, NULL /* pconfig */, NULL,
6e7d01
             NULL, NULL, NULL, NULL,
6e7d01
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
6e7d01
index f3da25cb8a..8e2e52ed31 100644
6e7d01
--- a/target/i386/cpu.h
6e7d01
+++ b/target/i386/cpu.h
6e7d01
@@ -770,6 +770,8 @@ typedef uint64_t FeatureWordArray[FEATURE_WORDS];
6e7d01
 #define CPUID_7_0_EDX_AVX512_4VNNIW     (1U << 2)
6e7d01
 /* AVX512 Multiply Accumulation Single Precision */
6e7d01
 #define CPUID_7_0_EDX_AVX512_4FMAPS     (1U << 3)
6e7d01
+/* AVX512 Vector Pair Intersection to a Pair of Mask Registers */
6e7d01
+#define CPUID_7_0_EDX_AVX512_VP2INTERSECT (1U << 8)
6e7d01
 /* Speculation Control */
6e7d01
 #define CPUID_7_0_EDX_SPEC_CTRL         (1U << 26)
6e7d01
 /* Single Thread Indirect Branch Predictors */
6e7d01
-- 
6e7d01
2.27.0
6e7d01