Message ID | 20211004105224.3145916-1-dedekind1@gmail.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Len Brown |
Headers | show |
Series | turbostat: fix PC6 displaying on some systems | expand |
On Mon, 2021-10-04 at 13:52 +0300, Artem Bityutskiy wrote: > From: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> > > 'MSR_PKG_CST_CONFIG_CONTROL' encodes the deepest allowed package C-state limit, > and turbostat decodes it. > > Before this patch: turbostat does not recognize value "3" on Ice Lake Xeon > (ICX), treats it as "unknown", and does not display any package C-states in the > results table. > > After this patch: turbostat recognizes value 3 on ICX, treats it as "PC6", and > correctly displays package C-states in the results table. > > Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Hi, any chance for this patch to be picked? Thanks, Artem.
Hi, any feed-back on this patch, or a chance for it to be picked up? Thanks! On Mon, 2021-10-04 at 13:52 +0300, Artem Bityutskiy wrote: > From: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> > > 'MSR_PKG_CST_CONFIG_CONTROL' encodes the deepest allowed package C-state > limit, > and turbostat decodes it. > > Before this patch: turbostat does not recognize value "3" on Ice Lake Xeon > (ICX), treats it as "unknown", and does not display any package C-states in > the > results table. > > After this patch: turbostat recognizes value 3 on ICX, treats it as "PC6", and > correctly displays package C-states in the results table. > > Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
On Mon, 2021-10-04 at 13:52 +0300, Artem Bityutskiy wrote: > From: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> > > 'MSR_PKG_CST_CONFIG_CONTROL' encodes the deepest allowed package C-state limit, > and turbostat decodes it. > > Before this patch: turbostat does not recognize value "3" on Ice Lake Xeon > (ICX), treats it as "unknown", and does not display any package C-states in the > results table. > > After this patch: turbostat recognizes value 3 on ICX, treats it as "PC6", and > correctly displays package C-states in the results table. > > Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Hi Rafael, would you please take a look at this patch and possibly apply it? Thanks!
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 47d3ba895d6d..bc5ae0872fed 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -2323,7 +2323,7 @@ int skx_pkg_cstate_limits[16] = }; int icx_pkg_cstate_limits[16] = - { PCL__0, PCL__2, PCL__6, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, + { PCL__0, PCL__2, PCL__6, PCL__6, PCLRSV, PCLRSV, PCLRSV, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV };