From 9de4320edb532615fb406db0fb504c26402c27bf Mon Sep 17 00:00:00 2001 From: Jithu Joseph Date: Tue, 10 Dec 2024 12:31:52 -0800 Subject: [PATCH] platform/x86/intel/ifs: Add Clearwater Forest to CPU support list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ANBZ: #25041 commit 6c0a473fc5f89dabbed0af605a09370b533aa856 upstream. Add Clearwater Forest (INTEL_ATOM_DARKMONT_X) to the x86 match table of Intel In Field Scan (IFS) driver, enabling IFS functionality on this processor. Intel-SIG: commit 6c0a473fc5f8 platform/x86/intel/ifs: Add Clearwater Forest to CPU support list Add IFS support for ClearWater Forest Signed-off-by: Jithu Joseph Link: https://lore.kernel.org/r/20241210203152.1136463-1-jithu.joseph@intel.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen [ Zhang Rui: resolve conflict (X86_MATCH changed) and amend commit log ] Signed-off-by: Zhang Rui --- drivers/platform/x86/intel/ifs/core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/platform/x86/intel/ifs/core.c b/drivers/platform/x86/intel/ifs/core.c index 4f571b79f028..b32724947263 100644 --- a/drivers/platform/x86/intel/ifs/core.c +++ b/drivers/platform/x86/intel/ifs/core.c @@ -21,6 +21,7 @@ static const struct x86_cpu_id ifs_cpu_ids[] __initconst = { X86_MATCH(GRANITERAPIDS_X, ARRAY_GEN0), X86_MATCH(GRANITERAPIDS_D, ARRAY_GEN0), X86_MATCH(ATOM_CRESTMONT_X, ARRAY_GEN1), + X86_MATCH(ATOM_DARKMONT_X, ARRAY_GEN1), {} }; MODULE_DEVICE_TABLE(x86cpu, ifs_cpu_ids); -- Gitee