|
|
619821 |
From 8075eadce1f9f144ae2e2fcf23c1890943caf1f8 Mon Sep 17 00:00:00 2001
|
|
|
619821 |
From: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Date: Wed, 22 Feb 2017 21:11:07 +0100
|
|
|
619821 |
Subject: [PATCH 01/17] target-i386: add Ivy Bridge CPU model
|
|
|
619821 |
|
|
|
619821 |
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Message-id: <20170222211107.29696-1-ehabkost@redhat.com>
|
|
|
619821 |
Patchwork-id: 74028
|
|
|
619821 |
O-Subject: [RHEL-7.4 qemu-kvm PATCH] target-i386: add Ivy Bridge CPU model
|
|
|
619821 |
Bugzilla: 1368375
|
|
|
619821 |
RH-Acked-by: Bandan Das <bsd@redhat.com>
|
|
|
619821 |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
619821 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
619821 |
|
|
|
619821 |
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
619821 |
|
|
|
619821 |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1368375
|
|
|
619821 |
Brew: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=12606134
|
|
|
619821 |
|
|
|
619821 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
619821 |
(cherry picked from commit 2f9ac42acf4602453d5839221df6cc7cabc3355e)
|
|
|
619821 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
619821 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
619821 |
---
|
|
|
619821 |
target-i386/cpu.c | 32 ++++++++++++++++++++++++++++++++
|
|
|
619821 |
1 file changed, 32 insertions(+)
|
|
|
619821 |
|
|
|
619821 |
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
|
|
|
619821 |
index 476306d..c3c8306 100644
|
|
|
619821 |
--- a/target-i386/cpu.c
|
|
|
619821 |
+++ b/target-i386/cpu.c
|
|
|
619821 |
@@ -878,6 +878,38 @@ static x86_def_t builtin_x86_defs[] = {
|
|
|
619821 |
.model_id = "Intel Xeon E312xx (Sandy Bridge)",
|
|
|
619821 |
},
|
|
|
619821 |
{
|
|
|
619821 |
+ .name = "IvyBridge",
|
|
|
619821 |
+ .level = 0xd,
|
|
|
619821 |
+ .vendor = CPUID_VENDOR_INTEL,
|
|
|
619821 |
+ .family = 6,
|
|
|
619821 |
+ .model = 58,
|
|
|
619821 |
+ .stepping = 9,
|
|
|
619821 |
+ .features[FEAT_1_EDX] =
|
|
|
619821 |
+ CPUID_VME | CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
|
|
|
619821 |
+ CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
|
|
|
619821 |
+ CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
|
|
|
619821 |
+ CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
|
|
|
619821 |
+ CPUID_DE | CPUID_FP87,
|
|
|
619821 |
+ .features[FEAT_1_ECX] =
|
|
|
619821 |
+ CPUID_EXT_AVX | CPUID_EXT_XSAVE | CPUID_EXT_AES |
|
|
|
619821 |
+ CPUID_EXT_TSC_DEADLINE_TIMER | CPUID_EXT_POPCNT |
|
|
|
619821 |
+ CPUID_EXT_X2APIC | CPUID_EXT_SSE42 | CPUID_EXT_SSE41 |
|
|
|
619821 |
+ CPUID_EXT_CX16 | CPUID_EXT_SSSE3 | CPUID_EXT_PCLMULQDQ |
|
|
|
619821 |
+ CPUID_EXT_SSE3 | CPUID_EXT_F16C | CPUID_EXT_RDRAND,
|
|
|
619821 |
+ .features[FEAT_7_0_EBX] =
|
|
|
619821 |
+ CPUID_7_0_EBX_FSGSBASE | CPUID_7_0_EBX_SMEP |
|
|
|
619821 |
+ CPUID_7_0_EBX_ERMS,
|
|
|
619821 |
+ .features[FEAT_8000_0001_EDX] =
|
|
|
619821 |
+ CPUID_EXT2_LM | CPUID_EXT2_RDTSCP | CPUID_EXT2_NX |
|
|
|
619821 |
+ CPUID_EXT2_SYSCALL,
|
|
|
619821 |
+ .features[FEAT_8000_0001_ECX] =
|
|
|
619821 |
+ CPUID_EXT3_LAHF_LM,
|
|
|
619821 |
+ .features[FEAT_XSAVE] =
|
|
|
619821 |
+ CPUID_XSAVE_XSAVEOPT,
|
|
|
619821 |
+ .xlevel = 0x8000000A,
|
|
|
619821 |
+ .model_id = "Intel Xeon E3-12xx v2 (Ivy Bridge)",
|
|
|
619821 |
+ },
|
|
|
619821 |
+ {
|
|
|
619821 |
.name = "Haswell",
|
|
|
619821 |
.level = 0xd,
|
|
|
619821 |
.vendor = CPUID_VENDOR_INTEL,
|
|
|
619821 |
--
|
|
|
619821 |
1.8.3.1
|
|
|
619821 |
|