mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	x86/cpu/amd: Enumerate BTC_NO
BTC_NO indicates that hardware is not susceptible to Branch Type Confusion. Zen3 CPUs don't suffer BTC. Hypervisors are expected to synthesise BTC_NO when it is appropriate given the migration pool, to prevent kernels using heuristics. [ bp: Massage. ] Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Signed-off-by: Borislav Petkov <bp@suse.de>
This commit is contained in:
		
							parent
							
								
									7a05bc95ed
								
							
						
					
					
						commit
						26aae8ccbc
					
				
					 3 changed files with 20 additions and 8 deletions
				
			
		| 
						 | 
					@ -322,6 +322,7 @@
 | 
				
			||||||
#define X86_FEATURE_VIRT_SSBD		(13*32+25) /* Virtualized Speculative Store Bypass Disable */
 | 
					#define X86_FEATURE_VIRT_SSBD		(13*32+25) /* Virtualized Speculative Store Bypass Disable */
 | 
				
			||||||
#define X86_FEATURE_AMD_SSB_NO		(13*32+26) /* "" Speculative Store Bypass is fixed in hardware. */
 | 
					#define X86_FEATURE_AMD_SSB_NO		(13*32+26) /* "" Speculative Store Bypass is fixed in hardware. */
 | 
				
			||||||
#define X86_FEATURE_CPPC		(13*32+27) /* Collaborative Processor Performance Control */
 | 
					#define X86_FEATURE_CPPC		(13*32+27) /* Collaborative Processor Performance Control */
 | 
				
			||||||
 | 
					#define X86_FEATURE_BTC_NO		(13*32+29) /* "" Not vulnerable to Branch Type Confusion */
 | 
				
			||||||
#define X86_FEATURE_BRS			(13*32+31) /* Branch Sampling available */
 | 
					#define X86_FEATURE_BRS			(13*32+31) /* Branch Sampling available */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Thermal and Power Management Leaf, CPUID level 0x00000006 (EAX), word 14 */
 | 
					/* Thermal and Power Management Leaf, CPUID level 0x00000006 (EAX), word 14 */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -890,12 +890,21 @@ static void init_amd_zn(struct cpuinfo_x86 *c)
 | 
				
			||||||
	node_reclaim_distance = 32;
 | 
						node_reclaim_distance = 32;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/* Fix up CPUID bits, but only if not virtualised. */
 | 
				
			||||||
	 * Fix erratum 1076: CPB feature bit not being set in CPUID.
 | 
						if (!cpu_has(c, X86_FEATURE_HYPERVISOR)) {
 | 
				
			||||||
	 * Always set it, except when running under a hypervisor.
 | 
					
 | 
				
			||||||
	 */
 | 
							/* Erratum 1076: CPB feature bit not being set in CPUID. */
 | 
				
			||||||
	if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && !cpu_has(c, X86_FEATURE_CPB))
 | 
							if (!cpu_has(c, X86_FEATURE_CPB))
 | 
				
			||||||
			set_cpu_cap(c, X86_FEATURE_CPB);
 | 
								set_cpu_cap(c, X86_FEATURE_CPB);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/*
 | 
				
			||||||
 | 
							 * Zen3 (Fam19 model < 0x10) parts are not susceptible to
 | 
				
			||||||
 | 
							 * Branch Type Confusion, but predate the allocation of the
 | 
				
			||||||
 | 
							 * BTC_NO bit.
 | 
				
			||||||
 | 
							 */
 | 
				
			||||||
 | 
							if (c->x86 == 0x19 && !cpu_has(c, X86_FEATURE_BTC_NO))
 | 
				
			||||||
 | 
								set_cpu_cap(c, X86_FEATURE_BTC_NO);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void init_amd(struct cpuinfo_x86 *c)
 | 
					static void init_amd(struct cpuinfo_x86 *c)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1359,8 +1359,10 @@ static void __init cpu_set_bug_bits(struct cpuinfo_x86 *c)
 | 
				
			||||||
	    !arch_cap_mmio_immune(ia32_cap))
 | 
						    !arch_cap_mmio_immune(ia32_cap))
 | 
				
			||||||
		setup_force_cpu_bug(X86_BUG_MMIO_STALE_DATA);
 | 
							setup_force_cpu_bug(X86_BUG_MMIO_STALE_DATA);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if ((cpu_matches(cpu_vuln_blacklist, RETBLEED) || (ia32_cap & ARCH_CAP_RSBA)))
 | 
						if (!cpu_has(c, X86_FEATURE_BTC_NO)) {
 | 
				
			||||||
 | 
							if (cpu_matches(cpu_vuln_blacklist, RETBLEED) || (ia32_cap & ARCH_CAP_RSBA))
 | 
				
			||||||
			setup_force_cpu_bug(X86_BUG_RETBLEED);
 | 
								setup_force_cpu_bug(X86_BUG_RETBLEED);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (cpu_matches(cpu_vuln_whitelist, NO_MELTDOWN))
 | 
						if (cpu_matches(cpu_vuln_whitelist, NO_MELTDOWN))
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue