aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Wang <davidwang@zhaoxin.com>2018-04-25 06:33:39 -0400
committerThomas Gleixner <tglx@linutronix.de>2018-05-06 06:46:25 -0400
commit13e8582245267b872dc6eb4ab695fffc797d99f5 (patch)
treebee1b72d60d0ad34310a6989e7effbef2e52ade9
parentee946c36be21dcfe044f1c432cd6c6a33682e244 (diff)
x86/MCE: Enable MCE broadcasting on new Centaur CPUs
Newer Centaur multi-core CPUs also support MCE broadcasting to all cores. Add a Centaur-specific init function setting that up. [ bp: - make mce_centaur_feature_init() static - flip check to do the f/m/s first for better readability - touch up text ] Signed-off-by: David Wang <davidwang@zhaoxin.com> Signed-off-by: Borislav Petkov <bp@suse.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: lukelin@viacpu.com Cc: qiyuanwang@zhaoxin.com Cc: Greg KH <greg@kroah.com> Cc: brucechang@via-alliance.com Cc: timguo@zhaoxin.com Cc: cooperyan@zhaoxin.com Cc: Tony Luck <tony.luck@intel.com> Cc: benjaminpan@viatech.com Cc: linux-edac <linux-edac@vger.kernel.org> Link: http://lkml.kernel.org/r/1524652420-17330-2-git-send-email-davidwang@zhaoxin.com
-rw-r--r--arch/x86/kernel/cpu/mcheck/mce.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c
index 42cf2880d0ed..cd76380af79f 100644
--- a/arch/x86/kernel/cpu/mcheck/mce.c
+++ b/arch/x86/kernel/cpu/mcheck/mce.c
@@ -1727,6 +1727,21 @@ static void __mcheck_cpu_init_early(struct cpuinfo_x86 *c)
1727 } 1727 }
1728} 1728}
1729 1729
1730static void mce_centaur_feature_init(struct cpuinfo_x86 *c)
1731{
1732 struct mca_config *cfg = &mca_cfg;
1733
1734 /*
1735 * All newer Centaur CPUs support MCE broadcasting. Enable
1736 * synchronization with a one second timeout.
1737 */
1738 if ((c->x86 == 6 && c->x86_model == 0xf && c->x86_stepping >= 0xe) ||
1739 c->x86 > 6) {
1740 if (cfg->monarch_timeout < 0)
1741 cfg->monarch_timeout = USEC_PER_SEC;
1742 }
1743}
1744
1730static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c) 1745static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
1731{ 1746{
1732 switch (c->x86_vendor) { 1747 switch (c->x86_vendor) {
@@ -1739,6 +1754,9 @@ static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
1739 mce_amd_feature_init(c); 1754 mce_amd_feature_init(c);
1740 break; 1755 break;
1741 } 1756 }
1757 case X86_VENDOR_CENTAUR:
1758 mce_centaur_feature_init(c);
1759 break;
1742 1760
1743 default: 1761 default:
1744 break; 1762 break;