diff options
author | Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | 2020-03-05 14:45:15 -0800 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-03-20 14:46:19 +0200 |
commit | 6320c9fb91212bc951b3a2d2cc2fceb1de4aea43 (patch) | |
tree | 91591812f0236e9616ffe48555cae316eb39e200 /tools/power/x86 | |
parent | 143ad32209af647c76b4ce06144eb093375a8562 (diff) | |
download | linux-6320c9fb91212bc951b3a2d2cc2fceb1de4aea43.tar.bz2 |
tools/power/x86/intel-speed-select: Use more verbiage for clos information
Instead of displaying 0 and 1 for enable status, display "disabled"
and "enabled" respectively.
Similarly for priority type, display "ordered or proportional" instead
of 0 and 1.
An example display:
$intel-speed-select -c 1 core-power info
Intel(R) Speed Select Technology
..
package-0
die-0
cpu-1
core-power
support-status:supported
enable-status:enabled
clos-enable-status:enabled
priority-type:proportional
Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'tools/power/x86')
-rw-r--r-- | tools/power/x86/intel-speed-select/isst-display.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/power/x86/intel-speed-select/isst-display.c b/tools/power/x86/intel-speed-select/isst-display.c index 30377acb909d..ec737e101e52 100644 --- a/tools/power/x86/intel-speed-select/isst-display.c +++ b/tools/power/x86/intel-speed-select/isst-display.c @@ -621,11 +621,17 @@ void isst_clos_display_clos_information(int cpu, FILE *outf, format_and_print(outf, 5, header, value); snprintf(header, sizeof(header), "clos-enable-status"); - snprintf(value, sizeof(value), "%d", clos_enable); + if (clos_enable) + snprintf(value, sizeof(value), "enabled"); + else + snprintf(value, sizeof(value), "disabled"); format_and_print(outf, 5, header, value); snprintf(header, sizeof(header), "priority-type"); - snprintf(value, sizeof(value), "%d", type); + if (type) + snprintf(value, sizeof(value), "ordered"); + else + snprintf(value, sizeof(value), "proportional"); format_and_print(outf, 5, header, value); format_and_print(outf, 1, NULL, NULL); |