diff options
author | Chen Yu <yu.c.chen@intel.com> | 2020-01-14 07:09:45 +0300 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2020-03-20 07:32:27 +0300 |
commit | d7814c3098ddb2780bb66e787aa3949110dd4a41 (patch) | |
tree | b5af69355ac9f0674d3d1c2ffeb6abd1a6769748 | |
parent | 23274faf96500700da83c4f0ff12d78ae03d5604 (diff) | |
download | linux-d7814c3098ddb2780bb66e787aa3949110dd4a41.tar.xz |
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>
-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; } |