Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1272654

[PATCH V3] SKL intel_pstate update MSR values when changing governors

From Alexandra Yates <alexandra.yates@linux.intel.com>
Newsgroups linux.kernel
Subject [PATCH V3] SKL intel_pstate update MSR values when changing governors
Date 2015-11-19 00:00 +0100
Message-ID <qwjRL-YV-5@gated-at.bofh.it> (permalink)
References (3 earlier) <qw0cq-4zs-15@gated-at.bofh.it> <qw0cq-4zs-17@gated-at.bofh.it> <qw0cq-4zs-19@gated-at.bofh.it> <qw0cq-4zs-21@gated-at.bofh.it> <qw0cq-4zs-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


When changing from powersave to performance governors
Intel_pstate fails to update the MSR values that reflect the
max_perf_pct to 100%. For instance in SKL reading rdmsr 0x774:

Governor 	MSR			max_perf_pct
=========	========		============
Powersave 	80002808		100%
Powersave	80002008		80%
Performance	80002028 [error]	100%
Performance	80002828 [expected]	100%

The line label [error] shows the culprit. At this point the MSR
should reflect the max_perf_pct that is 100%, that corresponds
to MSR 80002828 as shown on the next line of the example. Which
is the maximum performance for the Performance governor.
Instead it holds back the MSR value previously set by the
Powersave, in this case 80002028.

This patch allows the system to print the correct MSR value
80002828 that corresponds to the 100% max_perf_pct when changing
from powersave to performance governors.

For more information on the MSR values for SKL please visit
ISDM under Managing HWP.

Signed-off-by: Alexandra Yates <alexandra.yates@linux.intel.com>
---
 drivers/cpufreq/intel_pstate.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
index 2e31d09..0eeb7da 100644
--- a/drivers/cpufreq/intel_pstate.c
+++ b/drivers/cpufreq/intel_pstate.c
@@ -1242,6 +1242,8 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
 	    policy->max >= policy->cpuinfo.max_freq) {
 		pr_debug("intel_pstate: set performance\n");
 		limits = &performance_limits;
+		if (hwp_active)
+			intel_pstate_hwp_set();
 		return 0;
 	}
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH V3] SKL intel_pstate update MSR values when changing governors Alexandra Yates <alexandra.yates@linux.intel.com> - 2015-11-19 00:00 +0100
  Re: [PATCH V3] SKL intel_pstate update MSR values when changing governors Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2015-11-21 01:20 +0100
    Re: [PATCH V3] SKL intel_pstate update MSR values when changing governors "Rafael J. Wysocki" <rafael@kernel.org> - 2015-11-24 02:10 +0100
      Re: [PATCH V3] SKL intel_pstate update MSR values when changing  governors Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2015-11-24 02:20 +0100
        Re: [PATCH V3] SKL intel_pstate update MSR values when changing governors "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2015-11-24 15:00 +0100
          Re: [PATCH V3] SKL intel_pstate update MSR values when changing  governors Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2015-11-24 17:00 +0100
            Re: [PATCH V3] SKL intel_pstate update MSR values when changing governors "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2015-11-24 17:10 +0100
              Re: [PATCH V3] SKL intel_pstate update MSR values when changing  governors Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2015-11-24 17:40 +0100

csiph-web