Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

x86/split_lock: Add Tremont family CPU models

Tremont CPUs support IA32_CORE_CAPABILITIES bits to indicate whether
specific SKUs have support for split lock detection.

Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200416205754.21177-4-tony.luck@intel.com

authored by

Tony Luck and committed by
Thomas Gleixner
8b9a18a9 48fd5b5e

+3
+3
arch/x86/kernel/cpu/intel.c
··· 1135 1135 static const struct x86_cpu_id split_lock_cpu_ids[] __initconst = { 1136 1136 X86_MATCH_INTEL_FAM6_MODEL(ICELAKE_X, 0), 1137 1137 X86_MATCH_INTEL_FAM6_MODEL(ICELAKE_L, 0), 1138 + X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT, 1), 1139 + X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_D, 1), 1140 + X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_L, 1), 1138 1141 {} 1139 1142 }; 1140 1143