521c6d4a-x86-don-t-allow-Dom0-access-to-the-MSI-address-range.patch 521c6d6c-x86-don-t-allow-Dom0-access-to-the-HT-address-range.patch 521c6e23-x86-Intel-add-support-for-Haswell-CPU-models.patch 521db25f-Fix-inactive-timer-list-corruption-on-second-S3-resume.patch 521e1156-x86-AVX-instruction-emulation-fixes.patch 521ef8d9-AMD-IOMMU-add-missing-checks.patch 52205a7d-hvmloader-smbios-Correctly-count-the-number-of-tables-written.patch 52205a90-public-hvm_xs_strings.h-Fix-ABI-regression-for-OEM-SMBios-strings.patch 52205e27-x86-xsave-initialization-improvements.patch 5226020f-xend-handle-extended-PCI-configuration-space-when-saving-state.patch 52260214-xend-fix-file-descriptor-leak-in-pci-utilities.patch 52285317-hvmloader-fix-SeaBIOS-interface.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=271
53 lines
1.8 KiB
Diff
53 lines
1.8 KiB
Diff
# Commit 3e787021fb2420851c7bdc3911ea53c728ba5ac0
|
|
# Date 2013-08-27 11:15:15 +0200
|
|
# Author Jan Beulich <jbeulich@suse.com>
|
|
# Committer Jan Beulich <jbeulich@suse.com>
|
|
x86/Intel: add support for Haswell CPU models
|
|
|
|
... according to their most recent public documentation.
|
|
|
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
|
Acked-by: Keir Fraser <keir@xen.org>
|
|
|
|
--- 2013-08-30.orig/xen/arch/x86/acpi/cpu_idle.c 2013-08-30 00:00:00.000000000 +0200
|
|
+++ 2013-08-30/xen/arch/x86/acpi/cpu_idle.c 2013-09-06 13:46:10.000000000 +0200
|
|
@@ -135,8 +135,10 @@ static void do_get_hw_residencies(void *
|
|
case 0x3A:
|
|
case 0x3E:
|
|
/* Haswell */
|
|
- case 0x3c:
|
|
+ case 0x3C:
|
|
+ case 0x3F:
|
|
case 0x45:
|
|
+ case 0x46:
|
|
GET_PC2_RES(hw_res->pc2);
|
|
GET_CC7_RES(hw_res->cc7);
|
|
/* fall through */
|
|
--- 2013-08-30.orig/xen/arch/x86/hvm/vmx/vmx.c 2013-09-06 00:00:00.000000000 +0200
|
|
+++ 2013-08-30/xen/arch/x86/hvm/vmx/vmx.c 2013-09-06 13:46:10.000000000 +0200
|
|
@@ -1814,7 +1814,7 @@ static const struct lbr_info *last_branc
|
|
/* Ivy Bridge */
|
|
case 58: case 62:
|
|
/* Haswell */
|
|
- case 60: case 69:
|
|
+ case 60: case 63: case 69: case 70:
|
|
return nh_lbr;
|
|
break;
|
|
/* Atom */
|
|
--- 2013-08-30.orig/xen/arch/x86/hvm/vmx/vpmu_core2.c 2013-07-09 20:57:12.000000000 +0200
|
|
+++ 2013-08-30/xen/arch/x86/hvm/vmx/vpmu_core2.c 2013-09-06 13:46:10.000000000 +0200
|
|
@@ -878,7 +878,12 @@ int vmx_vpmu_initialise(struct vcpu *v,
|
|
|
|
case 0x3a: /* IvyBridge */
|
|
case 0x3e: /* IvyBridge EP */
|
|
- case 0x3c: /* Haswell */
|
|
+
|
|
+ /* Haswell: */
|
|
+ case 0x3c:
|
|
+ case 0x3f:
|
|
+ case 0x45:
|
|
+ case 0x46:
|
|
ret = core2_vpmu_initialise(v, vpmu_flags);
|
|
if ( !ret )
|
|
vpmu->arch_vpmu_ops = &core2_vpmu_ops;
|