summaryrefslogtreecommitdiff
path: root/drivers/mfd
diff options
context:
space:
mode:
authorJae Hyun Yoo <jae.hyun.yoo@intel.com>2018-11-07 03:25:58 +0300
committerJae Hyun Yoo <jae.hyun.yoo@linux.intel.com>2021-11-05 10:22:14 +0300
commitb15fedcdef61345058498e0e8aca6acb7d332229 (patch)
tree0b5c5fbc9cc90642454ae95d7194779ac27e6bfd /drivers/mfd
parentcd17b65e196a67d52388f75bd277e041d0638c0c (diff)
downloadlinux-b15fedcdef61345058498e0e8aca6acb7d332229.tar.xz
mfd: peci: Add ICX generation info
This commit adds CPU generation info for ICX family. Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/intel-peci-client.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/intel-peci-client.c b/drivers/mfd/intel-peci-client.c
index 3fcdd89d0b15..1b96cefb8563 100644
--- a/drivers/mfd/intel-peci-client.c
+++ b/drivers/mfd/intel-peci-client.c
@@ -50,6 +50,12 @@ static const struct cpu_gen_info cpu_gen_info_table[] = {
.core_mask_bits = CORE_MASK_BITS_ON_SKXD,
.chan_rank_max = CHAN_RANK_MAX_ON_SKXD,
.dimm_idx_max = DIMM_IDX_MAX_ON_SKXD },
+ { /* Icelake Xeon */
+ .family = INTEL_FAM6,
+ .model = INTEL_FAM6_ICELAKE_X,
+ .core_mask_bits = CORE_MASK_BITS_ON_ICX,
+ .chan_rank_max = CHAN_RANK_MAX_ON_ICX,
+ .dimm_idx_max = DIMM_IDX_MAX_ON_ICX },
};
static int peci_client_get_cpu_gen_info(struct peci_client_manager *priv)