Skip to content

Commit b8a2c32

Browse files
committed
Merge tag 'x86-urgent-2025-11-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Ingo Molnar: - Update the list of AMD microcode minimum Entrysign revisions - Add additional fixed AMD RDSEED microcode revisions - Update the language transliteration for Kiryl Shutsemau's name in the MAINTAINERS entry * tag 'x86-urgent-2025-11-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/microcode/AMD: Add Zen5 model 0x44, stepping 0x1 minrev x86/CPU/AMD: Add additional fixed RDSEED microcode revisions MAINTAINERS: Update name spelling
2 parents bb1a6dd + dd14022 commit b8a2c32

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.mailmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ Kenneth W Chen <[email protected]>
426426
427427
428428
429-
Kirill A. Shutemov <[email protected]> <[email protected]>
429+
430430
Kishon Vijay Abraham I <[email protected]> <[email protected]>
431431
432432

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27851,7 +27851,7 @@ F: arch/x86/kernel/stacktrace.c
2785127851
F: arch/x86/kernel/unwind_*.c
2785227852

2785327853
X86 TRUST DOMAIN EXTENSIONS (TDX)
27854-
M: Kirill A. Shutemov <[email protected]>
27854+
M: Kiryl Shutsemau <[email protected]>
2785527855
R: Dave Hansen <[email protected]>
2785627856
R: Rick Edgecombe <[email protected]>
2785727857

arch/x86/kernel/cpu/amd.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,14 @@ static void init_amd_zen4(struct cpuinfo_x86 *c)
10371037

10381038
static const struct x86_cpu_id zen5_rdseed_microcode[] = {
10391039
ZEN_MODEL_STEP_UCODE(0x1a, 0x02, 0x1, 0x0b00215a),
1040+
ZEN_MODEL_STEP_UCODE(0x1a, 0x08, 0x1, 0x0b008121),
10401041
ZEN_MODEL_STEP_UCODE(0x1a, 0x11, 0x0, 0x0b101054),
1042+
ZEN_MODEL_STEP_UCODE(0x1a, 0x24, 0x0, 0x0b204037),
1043+
ZEN_MODEL_STEP_UCODE(0x1a, 0x44, 0x0, 0x0b404035),
1044+
ZEN_MODEL_STEP_UCODE(0x1a, 0x44, 0x1, 0x0b404108),
1045+
ZEN_MODEL_STEP_UCODE(0x1a, 0x60, 0x0, 0x0b600037),
1046+
ZEN_MODEL_STEP_UCODE(0x1a, 0x68, 0x0, 0x0b608038),
1047+
ZEN_MODEL_STEP_UCODE(0x1a, 0x70, 0x0, 0x0b700037),
10411048
{},
10421049
};
10431050

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ static bool need_sha_check(u32 cur_rev)
224224
case 0xb1010: return cur_rev <= 0xb101046; break;
225225
case 0xb2040: return cur_rev <= 0xb204031; break;
226226
case 0xb4040: return cur_rev <= 0xb404031; break;
227+
case 0xb4041: return cur_rev <= 0xb404101; break;
227228
case 0xb6000: return cur_rev <= 0xb600031; break;
228229
case 0xb6080: return cur_rev <= 0xb608031; break;
229230
case 0xb7000: return cur_rev <= 0xb700031; break;

0 commit comments

Comments
 (0)