aboutsummaryrefslogtreecommitdiffstats
path: root/tools/power
diff options
context:
space:
mode:
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>2020-03-05 14:45:25 -0800
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-03-20 14:46:21 +0200
commit6d1f2dc8a5d9d1675e664c11ebecbcef739bf058 (patch)
tree6fa66b1030e29a7889beaf8f81c6923c44b6ed7d /tools/power
parenttools/power/x86/intel-speed-select: Check feature status first (diff)
downloadlinux-dev-6d1f2dc8a5d9d1675e664c11ebecbcef739bf058.tar.xz
linux-dev-6d1f2dc8a5d9d1675e664c11ebecbcef739bf058.zip
tools/power/x86/intel-speed-select: Display error for invalid priority type
When priority type for core-power enable command is anything more than 1 display error before change to 1, which is ordered priority. 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')
-rw-r--r--tools/power/x86/intel-speed-select/isst-core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/power/x86/intel-speed-select/isst-core.c b/tools/power/x86/intel-speed-select/isst-core.c
index 732d9a5eacf1..f69c009ef6f6 100644
--- a/tools/power/x86/intel-speed-select/isst-core.c
+++ b/tools/power/x86/intel-speed-select/isst-core.c
@@ -897,6 +897,9 @@ int isst_pm_qos_config(int cpu, int enable_clos, int priority_type)
else
req = req & ~BIT(1);
+ if (priority_type > 1)
+ fprintf(stderr, "Invalid priority type: Changing type to ordered\n");
+
if (priority_type)
req = req | BIT(2);
else