mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] x86: print out microcode patch level
@ 2009-09-27  7:15 Yinghai Lu
  0 siblings, 0 replies; only message in thread
From: Yinghai Lu @ 2009-09-27  7:15 UTC (permalink / raw)
  To: Ingo Molnar, Thomas Gleixner, H. Peter Anvin; +Cc: linux-kernel


warning if there are not consistent between cpus

Signed-off-by: Yinghai Lu <yinghai@kernel.org>

---
 arch/x86/kernel/cpu/amd.c   |   27 +++++++++++++++++++++++++++
 arch/x86/kernel/cpu/intel.c |   27 +++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

Index: linux-2.6/arch/x86/kernel/cpu/amd.c
===================================================================
--- linux-2.6.orig/arch/x86/kernel/cpu/amd.c
+++ linux-2.6/arch/x86/kernel/cpu/amd.c
@@ -439,6 +439,31 @@ static void __cpuinit early_init_amd(str
 #endif
 }
 
+static u32 __cpuinitdata boot_cpu_microcode_level;
+
+static void __cpuinit check_amd_microcode_level(struct cpuinfo_x86 *c)
+{
+	u32 level, dummy;
+	unsigned int cpu_index = 0;
+
+#ifdef CONFIG_SMP
+	cpu_index = c->cpu_index;
+#endif
+
+	rdmsr(MSR_AMD64_PATCH_LEVEL, level, dummy);
+
+	printk(KERN_INFO "CPU %d microcode level: 0x%x\n", cpu_index, level);
+
+#ifdef CONFIG_SMP
+	if (cpu_index == boot_cpu_id)
+		boot_cpu_microcode_level = level;
+	else if (boot_cpu_microcode_level != level)
+		printk(KERN_WARNING
+		       "CPU %d microcode level 0x%x is not same to boot cpu\n",
+			cpu_index, level);
+#endif
+}
+
 static void __cpuinit init_amd(struct cpuinfo_x86 *c)
 {
 #ifdef CONFIG_SMP
@@ -562,6 +587,8 @@ static void __cpuinit init_amd(struct cp
 		set_cpu_cap(c, X86_FEATURE_MFENCE_RDTSC);
 	}
 
+	check_amd_microcode_level(c);
+
 #ifdef CONFIG_X86_64
 	if (c->x86 == 0x10) {
 		/* do this for boot cpu */
Index: linux-2.6/arch/x86/kernel/cpu/intel.c
===================================================================
--- linux-2.6.orig/arch/x86/kernel/cpu/intel.c
+++ linux-2.6/arch/x86/kernel/cpu/intel.c
@@ -327,6 +327,31 @@ static void __cpuinit detect_vmx_virtcap
 	}
 }
 
+static u32 __cpuinitdata boot_cpu_microcode_level;
+
+static void __cpuinit check_intel_microcode_level(struct cpuinfo_x86 *c)
+{
+	u32 level, dummy;
+	unsigned int cpu_index = 0;
+
+#ifdef CONFIG_SMP
+	cpu_index = c->cpu_index;
+#endif
+
+	rdmsr(MSR_IA32_UCODE_REV, dummy, level);
+
+	printk(KERN_INFO "CPU %d microcode level: 0x%x\n", cpu_index, level);
+
+#ifdef CONFIG_SMP
+	if (cpu_index == boot_cpu_id)
+		boot_cpu_microcode_level = level;
+	else if (boot_cpu_microcode_level != level)
+		printk(KERN_WARNING
+		       "CPU %d microcode level 0x%x is not same to boot cpu\n",
+			cpu_index, level);
+#endif
+}
+
 static void __cpuinit init_intel(struct cpuinfo_x86 *c)
 {
 	unsigned int l2 = 0;
@@ -432,6 +457,8 @@ static void __cpuinit init_intel(struct
 	/* Work around errata */
 	srat_detect_node(c);
 
+	check_intel_microcode_level(c);
+
 	if (cpu_has(c, X86_FEATURE_VMX))
 		detect_vmx_virtcap(c);
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-09-27  7:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-27  7:15 [PATCH] x86: print out microcode patch level Yinghai Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome