diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-04-08 07:27:40 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-04-08 07:27:40 -0400 |
commit | 8c73c4d8319f38ec1a1fc630a88cbcb79cb1a8f6 (patch) | |
tree | 66bfc4406ddd5d6c4f4526b99536ee54f735d057 /drivers/cpuidle | |
parent | 48edb259863ffa1ab958ffe4eca39d7f1a02e0c0 (diff) | |
parent | 73df623addeaa6154b325b429a6c06eb6ad36004 (diff) |
Merge branch 'pm-cpuidle'
* pm-cpuidle:
cpuidle: sysfs: Export target residency information
intel_idle: fine-tune IVT residency targets
tools/power turbostat: Run on Broadwell
tools/power turbostat: simplify output, add Avg_MHz
intel_idle: Add CPU model 54 (Atom N2000 series)
intel_idle: support Bay Trail
intel_idle: allow sparse sub-state numbering, for Bay Trail
ACPI idle: permit sparse C-state sub-state numbers
Diffstat (limited to 'drivers/cpuidle')
-rw-r--r-- | drivers/cpuidle/sysfs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/cpuidle/sysfs.c b/drivers/cpuidle/sysfs.c index e918b6d0caf7..efe2f175168f 100644 --- a/drivers/cpuidle/sysfs.c +++ b/drivers/cpuidle/sysfs.c | |||
@@ -293,6 +293,7 @@ static ssize_t show_state_##_name(struct cpuidle_state *state, \ | |||
293 | } | 293 | } |
294 | 294 | ||
295 | define_show_state_function(exit_latency) | 295 | define_show_state_function(exit_latency) |
296 | define_show_state_function(target_residency) | ||
296 | define_show_state_function(power_usage) | 297 | define_show_state_function(power_usage) |
297 | define_show_state_ull_function(usage) | 298 | define_show_state_ull_function(usage) |
298 | define_show_state_ull_function(time) | 299 | define_show_state_ull_function(time) |
@@ -304,6 +305,7 @@ define_store_state_ull_function(disable) | |||
304 | define_one_state_ro(name, show_state_name); | 305 | define_one_state_ro(name, show_state_name); |
305 | define_one_state_ro(desc, show_state_desc); | 306 | define_one_state_ro(desc, show_state_desc); |
306 | define_one_state_ro(latency, show_state_exit_latency); | 307 | define_one_state_ro(latency, show_state_exit_latency); |
308 | define_one_state_ro(residency, show_state_target_residency); | ||
307 | define_one_state_ro(power, show_state_power_usage); | 309 | define_one_state_ro(power, show_state_power_usage); |
308 | define_one_state_ro(usage, show_state_usage); | 310 | define_one_state_ro(usage, show_state_usage); |
309 | define_one_state_ro(time, show_state_time); | 311 | define_one_state_ro(time, show_state_time); |
@@ -313,6 +315,7 @@ static struct attribute *cpuidle_state_default_attrs[] = { | |||
313 | &attr_name.attr, | 315 | &attr_name.attr, |
314 | &attr_desc.attr, | 316 | &attr_desc.attr, |
315 | &attr_latency.attr, | 317 | &attr_latency.attr, |
318 | &attr_residency.attr, | ||
316 | &attr_power.attr, | 319 | &attr_power.attr, |
317 | &attr_usage.attr, | 320 | &attr_usage.attr, |
318 | &attr_time.attr, | 321 | &attr_time.attr, |