diff options
author | Chen Yu <yu.c.chen@intel.com> | 2020-01-14 12:09:45 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2020-03-20 00:32:27 -0400 |
commit | d7814c3098ddb2780bb66e787aa3949110dd4a41 (patch) | |
tree | b5af69355ac9f0674d3d1c2ffeb6abd1a6769748 /tools/power/x86/turbostat | |
parent | 23274faf96500700da83c4f0ff12d78ae03d5604 (diff) | |
download | linux-d7814c3098ddb2780bb66e787aa3949110dd4a41.tar.bz2 |
tools/power turbostat: Support Jasper Lake
Jasper Lake, like Elkhart Lake, uses a Tremont CPU.
So reuse the code.
Signed-off-by: Chen Yu <yu.c.chen@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power/x86/turbostat')
-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 26088b2a27cc..e953afb2e7a1 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -4623,6 +4623,9 @@ unsigned int intel_model_duplicates(unsigned int model) case INTEL_FAM6_ATOM_TREMONT_D: return INTEL_FAM6_ATOM_GOLDMONT_D; + case INTEL_FAM6_ATOM_TREMONT_L: + return INTEL_FAM6_ATOM_TREMONT; + case INTEL_FAM6_ICELAKE_X: return INTEL_FAM6_SKYLAKE_X; } |