public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/amd: Disable RDSEED on AMD Zen5 Turin because of an error.
@ 2025-10-16 18:21 Gregory Price
  2025-10-16 19:12 ` Gregory Price
  2025-10-17 22:10 ` Jason A. Donenfeld
  0 siblings, 2 replies; 5+ messages in thread
From: Gregory Price @ 2025-10-16 18:21 UTC (permalink / raw)
  To: x86
  Cc: linux-kernel, tglx, mingo, bp, dave.hansen, hpa, peterz,
	mario.limonciello, riel, yazen.ghannam, me, kai.huang,
	sandipan.das, darwi, stable

Under unknown architectural conditions, Zen5 chips running rdseed
can produce (val=0,CF=1) as a "random" result over 10% of the time
(when rdseed is successful).  CF=1 indicates success, while val=0
is typically only produced when rdseed fails (CF=0).

This suggests there is an architectural issue which causes rdseed
to misclassify a failure as a success under unknown conditions.

This was reproduced reliably by launching 2-threads per available
core, 1-thread per for hamming on RDSEED, and 1-thread per core
collectively eating and hammering on ~90% of memory.

Fix was modeled after a different RDSEED issue in Zen2 Cyan Skillfish.

Link: https://lore.kernel.org/all/20250715130819.461718765@linuxfoundation.org/
Cc: <stable@kernel.org>
Signed-off-by: Gregory Price <gourry@gourry.net>
---
 arch/x86/kernel/cpu/amd.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
index 5398db4dedb4..9c3b2f010f8c 100644
--- a/arch/x86/kernel/cpu/amd.c
+++ b/arch/x86/kernel/cpu/amd.c
@@ -1037,6 +1037,12 @@ static void init_amd_zen4(struct cpuinfo_x86 *c)
 
 static void init_amd_zen5(struct cpuinfo_x86 *c)
 {
+	/* Disable RDSEED on AMD Turin because of an error. */
+	if (c->x86_model == 0x11 && c->x86_stepping == 0x0) {
+		clear_cpu_cap(c, X86_FEATURE_RDSEED);
+		msr_clear_bit(MSR_AMD64_CPUID_FN_7, 18);
+		pr_emerg("RDSEED is not reliable on this platform; disabling.\n");
+	}
 }
 
 static void init_amd(struct cpuinfo_x86 *c)
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-10-17 22:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-16 18:21 [PATCH] x86/amd: Disable RDSEED on AMD Zen5 Turin because of an error Gregory Price
2025-10-16 19:12 ` Gregory Price
2025-10-16 19:39   ` H. Peter Anvin
2025-10-17 11:48     ` Borislav Petkov
2025-10-17 22:10 ` Jason A. Donenfeld

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox