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>
This commit is contained in:
Srinivas Pandruvada 2019-11-04 03:02:43 -08:00 committed by Andy Shevchenko
parent 40dee9dda3
commit 21c3390d61

View file

@ -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;