Skip to content

Commit 150b1b9

Browse files
Rongronggg9bp3tk0v
authored andcommitted
x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo
Zen5 also contains family 1Ah, models 70h-7Fh, which are mistakenly missing from cpu_has_entrysign(). Add the missing range. Fixes: 8a9fb51 ("x86/microcode/AMD: Limit Entrysign signature checking to known generations") Signed-off-by: Rong Zhang <i@rong.moe> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Cc: stable@kernel.org Link: https://patch.msgid.link/20251229182245.152747-1-i@rong.moe
1 parent f8f9c1f commit 150b1b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • arch/x86/kernel/cpu/microcode

arch/x86/kernel/cpu/microcode/amd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ static bool cpu_has_entrysign(void)
258258
if (fam == 0x1a) {
259259
if (model <= 0x2f ||
260260
(0x40 <= model && model <= 0x4f) ||
261-
(0x60 <= model && model <= 0x6f))
261+
(0x60 <= model && model <= 0x7f))
262262
return true;
263263
}
264264

0 commit comments

Comments
 (0)