]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
x86/CPU: Add a microcode loader callback
authorBorislav Petkov <bp@suse.de>
Fri, 16 Feb 2018 11:26:39 +0000 (12:26 +0100)
committerThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Thu, 12 Apr 2018 13:06:42 +0000 (10:06 -0300)
BugLink: http://bugs.launchpad.net/bugs/1763366
commit 1008c52c09dcb23d93f8e0ea83a6246265d2cce0 upstream.

Add a callback function which the microcode loader calls when microcode
has been updated to a newer revision. Do the callback only when no error
was encountered during loading.

Tested-by: Ashok Raj <ashok.raj@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Ashok Raj <ashok.raj@intel.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20180216112640.11554-3-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
arch/x86/include/asm/processor.h
arch/x86/kernel/cpu/common.c
arch/x86/kernel/cpu/microcode/core.c

index 44c2c4ec6d60e5daab494026e38a26a6ae7ad538..a5fc8f8bfb83ca383799e5f16c912733af8f79a0 100644 (file)
@@ -969,4 +969,5 @@ bool xen_set_default_idle(void);
 
 void stop_this_cpu(void *dummy);
 void df_debug(struct pt_regs *regs, long error_code);
+void microcode_check(void);
 #endif /* _ASM_X86_PROCESSOR_H */
index 824aee0117bb5402d52fb5c8958e98b0bebfdf0c..84f1cd88608b1a9ab44684f6cc91d2df09cb3320 100644 (file)
@@ -1749,3 +1749,13 @@ static int __init init_cpu_syscore(void)
        return 0;
 }
 core_initcall(init_cpu_syscore);
+
+/*
+ * The microcode loader calls this upon late microcode load to recheck features,
+ * only when microcode has been updated. Caller holds microcode_mutex and CPU
+ * hotplug lock.
+ */
+void microcode_check(void)
+{
+       perf_check_microcode();
+}
index 6fdaf7cf3182db6e00c9c456421942376e37163a..aa1b9a422f2be0daf18a7084837165172ef0fafb 100644 (file)
@@ -509,6 +509,7 @@ static ssize_t reload_store(struct device *dev,
                            const char *buf, size_t size)
 {
        enum ucode_state tmp_ret = UCODE_OK;
+       bool do_callback = false;
        unsigned long val;
        ssize_t ret = 0;
        int cpu;
@@ -531,10 +532,13 @@ static ssize_t reload_store(struct device *dev,
                        if (!ret)
                                ret = -EINVAL;
                }
+
+               if (tmp_ret == UCODE_UPDATED)
+                       do_callback = true;
        }
 
-       if (!ret && tmp_ret == UCODE_UPDATED)
-               perf_check_microcode();
+       if (!ret && do_callback)
+               microcode_check();
 
        mutex_unlock(&microcode_mutex);
        put_online_cpus();