From 0202e565ab5f6af2849fd660702bc837a2034692 Mon Sep 17 00:00:00 2001 From: Gordon Kelly Date: Thu, 7 Dec 2017 12:08:14 -0500 Subject: [PATCH] turbostat: Add support of reporting GPU power on SKL in turbostat Change-Id: Icb57cf5ab116069b1e4d9580e248af1207e3282b --- src/turbostat.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/turbostat.c b/src/turbostat.c index e4419b85..85f7d87f 100644 --- a/src/turbostat.c +++ b/src/turbostat.c @@ -586,7 +586,8 @@ static int submit_counters(struct thread_data *t, struct core_data *c, /* If not using logical core numbering, set core id */ if (!config_lcn) { if (topology.num_packages > 1) - snprintf(name, sizeof(name), "pkg%02d-core%02d", p->package_id, c->core_id); + snprintf(name, sizeof(name), "pkg%02d-core%02d", p->package_id, + c->core_id); else snprintf(name, sizeof(name), "core%02d", c->core_id); } @@ -977,6 +978,7 @@ static int __attribute__((warn_unused_result)) probe_cpu(void) { case 0x45: /* HSW */ case 0x46: /* HSW */ case 0x3D: /* BDW */ + case 0x5E: /* SKL */ do_rapl = RAPL_PKG | RAPL_CORES | RAPL_GFX; break; case 0x3F: /* HSX */ -- 2.11.0