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