summaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorJesse Barnes2010-10-05 20:26:22 +0200
committerMatthew Garrett2010-10-05 20:59:25 +0200
commit4fd07ac00d87b942cc8d8f30a27192fea2fc4ab2 (patch)
tree64b9b818b8a1ae4f01a3adee62e3f2474025b058 /drivers/platform
parentintel_ips -- ensure we do not enable gpu turbo mode without driver linkage (diff)
downloadkernel-qcow2-linux-4fd07ac00d87b942cc8d8f30a27192fea2fc4ab2.tar.gz
kernel-qcow2-linux-4fd07ac00d87b942cc8d8f30a27192fea2fc4ab2.tar.xz
kernel-qcow2-linux-4fd07ac00d87b942cc8d8f30a27192fea2fc4ab2.zip
IPS driver: apply BIOS provided CPU limit if different from default
The BIOS may hand us a lower CPU power limit than the default for a given SKU. We should use it in case the platform isn't designed to dissapate the full TDP of a given part. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/intel_ips.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c
index 76e41dc45f76..50ab1c93e369 100644
--- a/drivers/platform/x86/intel_ips.c
+++ b/drivers/platform/x86/intel_ips.c
@@ -1391,9 +1391,10 @@ static struct ips_mcp_limits *ips_detect_cpu(struct ips_driver *ips)
tdp = turbo_power & TURBO_TDP_MASK;
/* Sanity check TDP against CPU */
- if (limits->mcp_power_limit != (tdp / 8) * 1000) {
- dev_warn(&ips->dev->dev, "Warning: CPU TDP doesn't match expected value (found %d, expected %d)\n",
- tdp / 8, limits->mcp_power_limit / 1000);
+ if (limits->core_power_limit != (tdp / 8) * 1000) {
+ dev_info(&ips->dev->dev, "CPU TDP doesn't match expected value (found %d, expected %d)\n",
+ tdp / 8, limits->core_power_limit / 1000);
+ limits->core_power_limit = (tdp / 8) * 1000;
}
out: