diff options
author | Andy Lutomirski <luto@kernel.org> | 2016-12-09 13:24:07 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2016-12-19 05:54:21 -0500 |
commit | 484d0e5c7943644cc46e7308a8f9d83be598f2b9 (patch) | |
tree | fedce8b05aad45a5dc626458b0e649975c43d759 /arch/x86/kernel/cpu/microcode/intel.c | |
parent | 426d1aff3138cf38da14e912df3c75e312f96e9e (diff) |
x86/microcode/intel: Replace sync_core() with native_cpuid()
The Intel microcode driver is using sync_core() to mean "do CPUID
with EAX=1". I want to rework sync_core(), but first the Intel
microcode driver needs to stop depending on its current behavior.
Reported-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Acked-by: Borislav Petkov <bp@alien8.de>
Cc: Juergen Gross <jgross@suse.com>
Cc: One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Matthew Whitehead <tedheadster@gmail.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: xen-devel <Xen-devel@lists.xen.org>
Link: http://lkml.kernel.org/r/535a025bb91fed1a019c5412b036337ad239e5bb.1481307769.git.luto@kernel.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/cpu/microcode/intel.c')
-rw-r--r-- | arch/x86/kernel/cpu/microcode/intel.c | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpu/microcode/intel.c b/arch/x86/kernel/cpu/microcode/intel.c index 54d50c3694d8..b624b54912e1 100644 --- a/arch/x86/kernel/cpu/microcode/intel.c +++ b/arch/x86/kernel/cpu/microcode/intel.c | |||
@@ -368,6 +368,26 @@ next: | |||
368 | return patch; | 368 | return patch; |
369 | } | 369 | } |
370 | 370 | ||
371 | static void cpuid_1(void) | ||
372 | { | ||
373 | /* | ||
374 | * According to the Intel SDM, Volume 3, 9.11.7: | ||
375 | * | ||
376 | * CPUID returns a value in a model specific register in | ||
377 | * addition to its usual register return values. The | ||
378 | * semantics of CPUID cause it to deposit an update ID value | ||
379 | * in the 64-bit model-specific register at address 08BH | ||
380 | * (IA32_BIOS_SIGN_ID). If no update is present in the | ||
381 | * processor, the value in the MSR remains unmodified. | ||
382 | * | ||
383 | * Use native_cpuid -- this code runs very early and we don't | ||
384 | * want to mess with paravirt. | ||
385 | */ | ||
386 | unsigned int eax = 1, ebx, ecx = 0, edx; | ||
387 | |||
388 | native_cpuid(&eax, &ebx, &ecx, &edx); | ||
389 | } | ||
390 | |||
371 | static int collect_cpu_info_early(struct ucode_cpu_info *uci) | 391 | static int collect_cpu_info_early(struct ucode_cpu_info *uci) |
372 | { | 392 | { |
373 | unsigned int val[2]; | 393 | unsigned int val[2]; |
@@ -393,7 +413,7 @@ static int collect_cpu_info_early(struct ucode_cpu_info *uci) | |||
393 | native_wrmsrl(MSR_IA32_UCODE_REV, 0); | 413 | native_wrmsrl(MSR_IA32_UCODE_REV, 0); |
394 | 414 | ||
395 | /* As documented in the SDM: Do a CPUID 1 here */ | 415 | /* As documented in the SDM: Do a CPUID 1 here */ |
396 | sync_core(); | 416 | cpuid_1(); |
397 | 417 | ||
398 | /* get the current revision from MSR 0x8B */ | 418 | /* get the current revision from MSR 0x8B */ |
399 | native_rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); | 419 | native_rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); |
@@ -593,7 +613,7 @@ static int apply_microcode_early(struct ucode_cpu_info *uci, bool early) | |||
593 | native_wrmsrl(MSR_IA32_UCODE_REV, 0); | 613 | native_wrmsrl(MSR_IA32_UCODE_REV, 0); |
594 | 614 | ||
595 | /* As documented in the SDM: Do a CPUID 1 here */ | 615 | /* As documented in the SDM: Do a CPUID 1 here */ |
596 | sync_core(); | 616 | cpuid_1(); |
597 | 617 | ||
598 | /* get the current revision from MSR 0x8B */ | 618 | /* get the current revision from MSR 0x8B */ |
599 | native_rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); | 619 | native_rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); |
@@ -805,7 +825,7 @@ static int apply_microcode_intel(int cpu) | |||
805 | wrmsrl(MSR_IA32_UCODE_REV, 0); | 825 | wrmsrl(MSR_IA32_UCODE_REV, 0); |
806 | 826 | ||
807 | /* As documented in the SDM: Do a CPUID 1 here */ | 827 | /* As documented in the SDM: Do a CPUID 1 here */ |
808 | sync_core(); | 828 | cpuid_1(); |
809 | 829 | ||
810 | /* get the current revision from MSR 0x8B */ | 830 | /* get the current revision from MSR 0x8B */ |
811 | rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); | 831 | rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); |