diff options
author | Zhang Rui <rui.zhang@intel.com> | 2023-01-04 22:23:53 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2023-03-17 11:36:46 -0400 |
commit | 93cac4150727dae0ee89f501dd75413b88eedec0 (patch) | |
tree | a06688901d00ce9dc5f3e1e9b679f6426864a56f /tools | |
parent | 6cbfedc7afc93a7f06d4a2f7c4d4732b20adfc2b (diff) |
tools/power turbostat: Introduce support for EMR
Introduce support for EMR.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Reviewed-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Tested-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 649b48e53a31..eba8a20a4b00 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -5462,6 +5462,9 @@ unsigned int intel_model_duplicates(unsigned int model) case INTEL_FAM6_ICELAKE_D: return INTEL_FAM6_ICELAKE_X; + + case INTEL_FAM6_EMERALDRAPIDS_X: + return INTEL_FAM6_SAPPHIRERAPIDS_X; } return model; } |