[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/Intel: Broadwell doesn't have PKG_C{8, 9, 10}_RESIDENCY MSRs
commit 6bd621d7010bb8561196aedf5198d5fe7c146822 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Mon Sep 19 11:42:23 2016 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Mon Sep 19 11:42:23 2016 +0200 x86/Intel: Broadwell doesn't have PKG_C{8,9,10}_RESIDENCY MSRs According to https://lists.xenproject.org/archives/html/xen-devel/2016-09/msg01797.html this partially reverts commit 350bc1a9d4 ("x86: support newer Intel CPU models") to account for the appearant earlier mis-documentation. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Kevin Tian <kevin.tian@xxxxxxxxx> --- xen/arch/x86/acpi/cpu_idle.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/acpi/cpu_idle.c b/xen/arch/x86/acpi/cpu_idle.c index 70f4598..f36b184 100644 --- a/xen/arch/x86/acpi/cpu_idle.c +++ b/xen/arch/x86/acpi/cpu_idle.c @@ -66,9 +66,9 @@ #define GET_PC3_RES(val) GET_HW_RES_IN_NS(0x3F8, val) #define GET_PC6_RES(val) GET_HW_RES_IN_NS(0x3F9, val) #define GET_PC7_RES(val) GET_HW_RES_IN_NS(0x3FA, val) -#define GET_PC8_RES(val) GET_HW_RES_IN_NS(0x630, val) -#define GET_PC9_RES(val) GET_HW_RES_IN_NS(0x631, val) -#define GET_PC10_RES(val) GET_HW_RES_IN_NS(0x632, val) +#define GET_PC8_RES(val) GET_HW_RES_IN_NS(0x630, val) /* some Haswells only */ +#define GET_PC9_RES(val) GET_HW_RES_IN_NS(0x631, val) /* some Haswells only */ +#define GET_PC10_RES(val) GET_HW_RES_IN_NS(0x632, val) /* some Haswells only */ #define GET_CC1_RES(val) GET_HW_RES_IN_NS(0x660, val) /* Silvermont only */ #define GET_CC3_RES(val) GET_HW_RES_IN_NS(0x3FC, val) #define GET_CC6_RES(val) GET_HW_RES_IN_NS(0x3FD, val) @@ -142,8 +142,6 @@ static void do_get_hw_residencies(void *arg) { /* 4th generation Intel Core (Haswell) */ case 0x45: - /* Xeon E5/E7 v4 (Broadwell) */ - case 0x4F: GET_PC8_RES(hw_res->pc8); GET_PC9_RES(hw_res->pc9); GET_PC10_RES(hw_res->pc10); @@ -161,6 +159,7 @@ static void do_get_hw_residencies(void *arg) /* Broadwell */ case 0x3D: case 0x47: + case 0x4F: case 0x56: /* Skylake */ case 0x4E: -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |