aboutsummaryrefslogtreecommitdiffstats
path: root/tools/power/x86/turbostat/turbostat.c
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2022-02-10 21:06:56 -0500
committerLen Brown <len.brown@intel.com>2022-04-16 21:58:15 -0400
commit6397b6418935773a34b533b3348b03f4ce3d7050 (patch)
treea9aa34ce013c168971e7209c81f47e54c3100401 /tools/power/x86/turbostat/turbostat.c
parenttools/power turbostat: Support thermal throttle count print (diff)
downloadlinux-dev-6397b6418935773a34b533b3348b03f4ce3d7050.tar.xz
linux-dev-6397b6418935773a34b533b3348b03f4ce3d7050.zip
tools/power turbostat: fix ICX DRAM power numbers
ICX (and its duplicates) require special hard-coded DRAM RAPL units, rather than using the generic RAPL energy units. Reported-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to '')
-rw-r--r--tools/power/x86/turbostat/turbostat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c
index e194f3a0e2d7..dbc01af5fd3d 100644
--- a/tools/power/x86/turbostat/turbostat.c
+++ b/tools/power/x86/turbostat/turbostat.c
@@ -4430,6 +4430,7 @@ static double rapl_dram_energy_units_probe(int model, double rapl_energy_units)
case INTEL_FAM6_BROADWELL_X: /* BDX */
case INTEL_FAM6_SKYLAKE_X: /* SKX */
case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
+ case INTEL_FAM6_ICELAKE_X: /* ICX */
return (rapl_dram_energy_units = 15.3 / 1000000);
default:
return (rapl_energy_units);