Skip to content

Commit 34750a8

Browse files
sandip4nmehmetb0
authored andcommitted
x86/cpu/amd: Fix workaround for erratum 1054
BugLink: https://bugs.launchpad.net/bugs/2109367 commit 263e559 upstream. Erratum 1054 affects AMD Zen processors that are a part of Family 17h Models 00-2Fh and the workaround is to not set HWCR[IRPerfEn]. However, when X86_FEATURE_ZEN1 was introduced, the condition to detect unaffected processors was incorrectly changed in a way that the IRPerfEn bit gets set only for unaffected Zen 1 processors. Ensure that HWCR[IRPerfEn] is set for all unaffected processors. This includes a subset of Zen 1 (Family 17h Models 30h and above) and all later processors. Also clear X86_FEATURE_IRPERF on affected processors so that the IRPerfCount register is not used by other entities like the MSR PMU driver. Fixes: 232afb5 ("x86/CPU/AMD: Add X86_FEATURE_ZEN1") Signed-off-by: Sandipan Das <[email protected]> Signed-off-by: Ingo Molnar <[email protected]> Acked-by: Borislav Petkov <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/caa057a9d6f8ad579e2f1abaa71efbd5bd4eaf6d.1744956467.git.sandipan.das@amd.com Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Manuel Diewald <[email protected]> Signed-off-by: Stefan Bader <[email protected]>
1 parent 5122e8d commit 34750a8

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

arch/x86/kernel/cpu/amd.c

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -867,6 +867,16 @@ static void init_amd_zen1(struct cpuinfo_x86 *c)
867867

868868
pr_notice_once("AMD Zen1 DIV0 bug detected. Disable SMT for full protection.\n");
869869
setup_force_cpu_bug(X86_BUG_DIV0);
870+
871+
/*
872+
* Turn off the Instructions Retired free counter on machines that are
873+
* susceptible to erratum #1054 "Instructions Retired Performance
874+
* Counter May Be Inaccurate".
875+
*/
876+
if (c->x86_model < 0x30) {
877+
msr_clear_bit(MSR_K7_HWCR, MSR_K7_HWCR_IRPERF_EN_BIT);
878+
clear_cpu_cap(c, X86_FEATURE_IRPERF);
879+
}
870880
}
871881

872882
static bool cpu_has_zenbleed_microcode(void)
@@ -1050,13 +1060,8 @@ static void init_amd(struct cpuinfo_x86 *c)
10501060
if (!cpu_feature_enabled(X86_FEATURE_XENPV))
10511061
set_cpu_bug(c, X86_BUG_SYSRET_SS_ATTRS);
10521062

1053-
/*
1054-
* Turn on the Instructions Retired free counter on machines not
1055-
* susceptible to erratum #1054 "Instructions Retired Performance
1056-
* Counter May Be Inaccurate".
1057-
*/
1058-
if (cpu_has(c, X86_FEATURE_IRPERF) &&
1059-
(boot_cpu_has(X86_FEATURE_ZEN1) && c->x86_model > 0x2f))
1063+
/* Enable the Instructions Retired free counter */
1064+
if (cpu_has(c, X86_FEATURE_IRPERF))
10601065
msr_set_bit(MSR_K7_HWCR, MSR_K7_HWCR_IRPERF_EN_BIT);
10611066

10621067
check_null_seg_clears_base(c);

0 commit comments

Comments
 (0)