The current output of 'intel-speed-select -c 53 perf-profile info -l 0'
shows

        speed-select-turbo-freq-support:1
        speed-select-base-freq-support:1
        speed-select-base-freq-enabled:0
        speed-select-turbo-freq-enabled:0

Simplify the output to single lines displaying status of disabled,
enabled, and unsupported.

Signed-off-by: Prarit Bhargava <pra...@redhat.com>
Cc: Srinivas Pandruvada <srinivas.pandruv...@linux.intel.com>
Cc: David Arcari <darc...@redhat.com>
Cc: linux-kernel@vger.kernel.org
---
 .../x86/intel-speed-select/isst-display.c     | 30 ++++++++++---------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/tools/power/x86/intel-speed-select/isst-display.c 
b/tools/power/x86/intel-speed-select/isst-display.c
index 0d9a53a5da2d..3ae693efceaa 100644
--- a/tools/power/x86/intel-speed-select/isst-display.c
+++ b/tools/power/x86/intel-speed-select/isst-display.c
@@ -297,23 +297,25 @@ void isst_ctdp_display_information(int cpu, FILE *outf, 
int tdp_level,
                format_and_print(outf, base_level + 4, header, value);
 
                snprintf(header, sizeof(header),
-                        "speed-select-turbo-freq-support");
-               snprintf(value, sizeof(value), "%d", ctdp_level->fact_support);
+                        "speed-select-turbo-freq");
+               if (ctdp_level->fact_support) {
+                       if (ctdp_level->fact_enabled)
+                               snprintf(value, sizeof(value), "enabled");
+                       else
+                               snprintf(value, sizeof(value), "disabled");
+               } else
+                       snprintf(value, sizeof(value), "unsupported");
                format_and_print(outf, base_level + 4, header, value);
 
                snprintf(header, sizeof(header),
-                        "speed-select-base-freq-support");
-               snprintf(value, sizeof(value), "%d", ctdp_level->pbf_support);
-               format_and_print(outf, base_level + 4, header, value);
-
-               snprintf(header, sizeof(header),
-                        "speed-select-base-freq-enabled");
-               snprintf(value, sizeof(value), "%d", ctdp_level->pbf_enabled);
-               format_and_print(outf, base_level + 4, header, value);
-
-               snprintf(header, sizeof(header),
-                        "speed-select-turbo-freq-enabled");
-               snprintf(value, sizeof(value), "%d", ctdp_level->fact_enabled);
+                        "speed-select-base-freq");
+               if (ctdp_level->pbf_support) {
+                       if (ctdp_level->pbf_enabled)
+                               snprintf(value, sizeof(value), "enabled");
+                       else
+                               snprintf(value, sizeof(value), "disabled");
+               } else
+                       snprintf(value, sizeof(value), "unsupported");
                format_and_print(outf, base_level + 4, header, value);
 
                snprintf(header, sizeof(header), "thermal-design-power(W)");
-- 
2.21.0

Reply via email to