cpu/intel/microcode: Reuse existing function to read MCU revision

Change-Id: If198fa68c0a29f46906151e667d7b00e2a3ab00d
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49839
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Arthur Heymans 2021-01-22 19:05:16 +01:00 committed by Patrick Georgi
parent 4330b961c4
commit 9daf5f071c
1 changed files with 4 additions and 10 deletions

View File

@ -123,8 +123,8 @@ const void *intel_microcode_find(void)
size_t microcode_len;
u32 eax;
u32 pf, rev, sig, update_size;
unsigned int x86_model, x86_family;
msr_t msr;
struct cpuinfo_x86 c;
if (ucode_updates)
return ucode_updates;
@ -133,19 +133,13 @@ const void *intel_microcode_find(void)
if (ucode_updates == NULL)
return NULL;
/* CPUID sets MSR 0x8B if a microcode update has been loaded. */
msr.lo = 0;
msr.hi = 0;
wrmsr(IA32_BIOS_SIGN_ID, msr);
rev = read_microcode_rev();
eax = cpuid_eax(1);
msr = rdmsr(IA32_BIOS_SIGN_ID);
rev = msr.hi;
x86_model = (eax >> 4) & 0x0f;
x86_family = (eax >> 8) & 0x0f;
get_fms(&c, eax);
sig = eax;
pf = 0;
if ((x86_model >= 5) || (x86_family > 6)) {
if ((c.x86_model >= 5) || (c.x86 > 6)) {
msr = rdmsr(IA32_PLATFORM_ID);
pf = 1 << ((msr.hi >> 18) & 7);
}