x86/bugs: Fix the AMD SSBD usage of the SPEC_CTRL MSR

On AMD, the presence of the MSR_SPEC_CTRL feature does not imply that the
SSBD mitigation support should use the SPEC_CTRL MSR. Other features could
have caused the MSR_SPEC_CTRL feature to be set, while a different SSBD
mitigation option is in place.

Update the SSBD support to check for the actual SSBD features that will
use the SPEC_CTRL MSR.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Cc: Borislav Petkov <bpetkov@suse.de>
Cc: David Woodhouse <dwmw@amazon.co.uk>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Fixes: 6ac2f49edb1e ("x86/bugs: Add AMD's SPEC_CTRL MSR usage")
Link: http://lkml.kernel.org/r/20180702213602.29202.33151.stgit@tlendack-t1.amdoffice.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by Tom Lendacky and committed by Ingo Molnar 612bc3b3 845d382b

Changed files
+5 -3
arch
x86
kernel
cpu
+5 -3
arch/x86/kernel/cpu/bugs.c
··· 155 155 guestval |= guest_spec_ctrl & x86_spec_ctrl_mask; 156 156 157 157 /* SSBD controlled in MSR_SPEC_CTRL */ 158 - if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD)) 158 + if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) || 159 + static_cpu_has(X86_FEATURE_AMD_SSBD)) 159 160 hostval |= ssbd_tif_to_spec_ctrl(ti->flags); 160 161 161 162 if (hostval != guestval) { ··· 534 533 * Intel uses the SPEC CTRL MSR Bit(2) for this, while AMD may 535 534 * use a completely different MSR and bit dependent on family. 536 535 */ 537 - if (!static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) 536 + if (!static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) && 537 + !static_cpu_has(X86_FEATURE_AMD_SSBD)) { 538 538 x86_amd_ssb_disable(); 539 - else { 539 + } else { 540 540 x86_spec_ctrl_base |= SPEC_CTRL_SSBD; 541 541 x86_spec_ctrl_mask |= SPEC_CTRL_SSBD; 542 542 wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base);