aboutsummaryrefslogtreecommitdiffstats
path: root/tools/power/x86/intel-speed-select/isst-config.c
diff options
context:
space:
mode:
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>2019-11-04 03:02:43 -0800
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2019-11-07 19:00:25 +0200
commit21c3390d61286912cef312dc4752719142ce0d54 (patch)
tree8883ffc5d9746df21ef74976f3dfca8be114787e /tools/power/x86/intel-speed-select/isst-config.c
parenttools/power/x86/intel-speed-select: Make CLOS frequency in MHz (diff)
downloadlinux-dev-21c3390d61286912cef312dc4752719142ce0d54.tar.xz
linux-dev-21c3390d61286912cef312dc4752719142ce0d54.zip
tools/power/x86/intel-speed-select: Use Frequency weight for CLOS
Use different frequency weights for CLOS 0 and and CLOS1-3, to define relative priority for power budgeting. This will be used for --auto mode to enable base-freq and turbo-freq feature. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to '')
-rw-r--r--tools/power/x86/intel-speed-select/isst-config.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/power/x86/intel-speed-select/isst-config.c b/tools/power/x86/intel-speed-select/isst-config.c
index a8ada9a4f020..2d7ed27af7e0 100644
--- a/tools/power/x86/intel-speed-select/isst-config.c
+++ b/tools/power/x86/intel-speed-select/isst-config.c
@@ -1260,15 +1260,15 @@ static int set_core_priority_and_min(int cpu, int mask_size,
if (ret)
return ret;
- ret = set_clos_param(cpu, 1, 15, 0, min_low, 0xff);
+ ret = set_clos_param(cpu, 1, 15, 15, min_low, 0xff);
if (ret)
return ret;
- ret = set_clos_param(cpu, 2, 15, 0, min_low, 0xff);
+ ret = set_clos_param(cpu, 2, 15, 15, min_low, 0xff);
if (ret)
return ret;
- ret = set_clos_param(cpu, 3, 15, 0, min_low, 0xff);
+ ret = set_clos_param(cpu, 3, 15, 15, min_low, 0xff);
if (ret)
return ret;
@@ -1589,15 +1589,15 @@ static void set_fact_enable(int arg)
if (ret)
goto error_disp;
- ret = set_clos_param(i, 1, 15, 0, 0, 0xff);
+ ret = set_clos_param(i, 1, 15, 15, 0, 0xff);
if (ret)
goto error_disp;
- ret = set_clos_param(i, 2, 15, 0, 0, 0xff);
+ ret = set_clos_param(i, 2, 15, 15, 0, 0xff);
if (ret)
goto error_disp;
- ret = set_clos_param(i, 3, 15, 0, 0, 0xff);
+ ret = set_clos_param(i, 3, 15, 15, 0, 0xff);
if (ret)
goto error_disp;