platform/x86/intel/ifs: Add new CPU support
authorJithu Joseph <jithu.joseph@intel.com>
Thu, 5 Oct 2023 19:51:35 +0000 (12:51 -0700)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Fri, 6 Oct 2023 10:05:23 +0000 (13:05 +0300)
Add Granite Rapids(GNR) and Sierra Forest(SRF) cpuids to x86 match table
so that IFS driver can be loaded for those.

Signed-off-by: Jithu Joseph <jithu.joseph@intel.com>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Tested-by: Pengfei Xu <pengfei.xu@intel.com>
Link: https://lore.kernel.org/r/20231005195137.3117166-8-jithu.joseph@intel.com
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/intel/ifs/core.c

index 4ff2aa4b484bc5d6b0e60a65272c09ca2fa2c27d..0c8927916373608ed8de6bed72070a94bf7e5cb5 100644 (file)
@@ -18,6 +18,9 @@
 static const struct x86_cpu_id ifs_cpu_ids[] __initconst = {
        X86_MATCH(SAPPHIRERAPIDS_X),
        X86_MATCH(EMERALDRAPIDS_X),
+       X86_MATCH(GRANITERAPIDS_X),
+       X86_MATCH(GRANITERAPIDS_D),
+       X86_MATCH(ATOM_CRESTMONT_X),
        {}
 };
 MODULE_DEVICE_TABLE(x86cpu, ifs_cpu_ids);