5d360b
From 839a96660680e11ad494a02e5b14f64ebd9c8552 Mon Sep 17 00:00:00 2001
5d360b
From: Eduardo Habkost <ehabkost@redhat.com>
5d360b
Date: Tue, 17 Oct 2017 20:36:53 +0200
5d360b
Subject: [PATCH 27/27] i386: add Skylake-Server cpu model
5d360b
5d360b
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
5d360b
Message-id: <20171017203653.28578-3-ehabkost@redhat.com>
5d360b
Patchwork-id: 77351
5d360b
O-Subject: [RHEL-7.5 qemu-kvm PATCH 2/2] i386: add Skylake-Server cpu model
5d360b
Bugzilla: 1501510
5d360b
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
5d360b
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
5d360b
RH-Acked-by: Bandan Das <bsd@redhat.com>
5d360b
5d360b
From: "Boqun Feng (Intel)" <boqun.feng@gmail.com>
5d360b
5d360b
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1501510
5d360b
5d360b
Introduce Skylake-Server cpu mode which inherits the features from
5d360b
Skylake-Client and supports some additional features that are: AVX512,
5d360b
CLWB and PGPE1GB.
5d360b
5d360b
Backport notes:
5d360b
* ARAT feature not included, as it is not available in the
5d360b
  qemu-kvm-1.5.3 tree (and disabled by compat code in
5d360b
  pc-i440fx-rhel7.2.0 and older on qemu-kvm-rhev)
5d360b
5d360b
Signed-off-by: Boqun Feng (Intel) <boqun.feng@gmail.com>
5d360b
Message-Id: <20170621052935.20715-1-boqun.feng@gmail.com>
5d360b
[ehabkost: copied comment about XSAVES from Skylake-Client]
5d360b
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
5d360b
(cherry picked from commit 53f9a6f45fb214540cb40af45efc11ac40ac454c)
5d360b
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
5d360b
5d360b
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
5d360b
---
5d360b
 target-i386/cpu.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
5d360b
 1 file changed, 50 insertions(+)
5d360b
5d360b
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
5d360b
index e739647..539d659 100644
5d360b
--- a/target-i386/cpu.c
5d360b
+++ b/target-i386/cpu.c
5d360b
@@ -1066,6 +1066,56 @@ static x86_def_t builtin_x86_defs[] = {
5d360b
         .model_id = "Intel Core Processor (Skylake)",
5d360b
     },
5d360b
     {
5d360b
+        .name = "Skylake-Server",
5d360b
+        .level = 0xd,
5d360b
+        .vendor = CPUID_VENDOR_INTEL,
5d360b
+        .family = 6,
5d360b
+        .model = 85,
5d360b
+        .stepping = 4,
5d360b
+        .features[FEAT_1_EDX] =
5d360b
+            CPUID_VME | CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
5d360b
+            CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
5d360b
+            CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
5d360b
+            CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
5d360b
+            CPUID_DE | CPUID_FP87,
5d360b
+        .features[FEAT_1_ECX] =
5d360b
+            CPUID_EXT_AVX | CPUID_EXT_XSAVE | CPUID_EXT_AES |
5d360b
+            CPUID_EXT_POPCNT | CPUID_EXT_X2APIC | CPUID_EXT_SSE42 |
5d360b
+            CPUID_EXT_SSE41 | CPUID_EXT_CX16 | CPUID_EXT_SSSE3 |
5d360b
+            CPUID_EXT_PCLMULQDQ | CPUID_EXT_SSE3 |
5d360b
+            CPUID_EXT_TSC_DEADLINE_TIMER | CPUID_EXT_FMA | CPUID_EXT_MOVBE |
5d360b
+            CPUID_EXT_PCID | CPUID_EXT_F16C | CPUID_EXT_RDRAND,
5d360b
+        .features[FEAT_8000_0001_EDX] =
5d360b
+            CPUID_EXT2_LM | CPUID_EXT2_PDPE1GB | CPUID_EXT2_RDTSCP |
5d360b
+            CPUID_EXT2_NX | CPUID_EXT2_SYSCALL,
5d360b
+        .features[FEAT_8000_0001_ECX] =
5d360b
+            CPUID_EXT3_ABM | CPUID_EXT3_LAHF_LM | CPUID_EXT3_3DNOWPREFETCH,
5d360b
+        .features[FEAT_7_0_EBX] =
5d360b
+            CPUID_7_0_EBX_FSGSBASE | CPUID_7_0_EBX_BMI1 |
5d360b
+            CPUID_7_0_EBX_HLE | CPUID_7_0_EBX_AVX2 | CPUID_7_0_EBX_SMEP |
5d360b
+            CPUID_7_0_EBX_BMI2 | CPUID_7_0_EBX_ERMS | CPUID_7_0_EBX_INVPCID |
5d360b
+            CPUID_7_0_EBX_RTM | CPUID_7_0_EBX_RDSEED | CPUID_7_0_EBX_ADX |
5d360b
+            CPUID_7_0_EBX_SMAP | CPUID_7_0_EBX_MPX | CPUID_7_0_EBX_CLWB |
5d360b
+            CPUID_7_0_EBX_AVX512F | CPUID_7_0_EBX_AVX512DQ |
5d360b
+            CPUID_7_0_EBX_AVX512BW | CPUID_7_0_EBX_AVX512CD |
5d360b
+            CPUID_7_0_EBX_AVX512VL,
5d360b
+        /* Missing: XSAVES (not supported by some Linux versions,
5d360b
+         * including v4.1 to v4.12).
5d360b
+         * KVM doesn't yet expose any XSAVES state save component,
5d360b
+         * and the only one defined in Skylake (processor tracing)
5d360b
+         * probably will block migration anyway.
5d360b
+         */
5d360b
+        .features[FEAT_XSAVE] =
5d360b
+            CPUID_XSAVE_XSAVEOPT | CPUID_XSAVE_XSAVEC |
5d360b
+            CPUID_XSAVE_XGETBV1,
5d360b
+        /* Missing: ARAT. not available in the qemu-kvm-1.5.3 tree (and
5d360b
+         * disabled by compat code in pc-i440fx-rhel7.2.0 and older on
5d360b
+         * qemu-kvm-rhev)
5d360b
+         */
5d360b
+        .xlevel = 0x80000008,
5d360b
+        .model_id = "Intel Xeon Processor (Skylake)",
5d360b
+    },
5d360b
+    {
5d360b
         .name = "Opteron_G1",
5d360b
         .level = 5,
5d360b
         .vendor = CPUID_VENDOR_AMD,
5d360b
-- 
5d360b
1.8.3.1
5d360b