aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2014-07-22 15:42:38 +0200
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2014-07-22 15:42:38 +0200
commit377d9641c52db935000a2fbd0e2c8e424ffa2e9a (patch)
tree7b9abaad588d5f9b4437c77cd524c16e6c7e3f21
parent41353952bd43d605322e6c6de0483c5a0a5ef803 (diff)
arm: mach-msm: tune thermal threasholdubuntu-ifc6410-14.07
the default thermal parameters are a bit too low for desktop-like use cases, and the CPU is very quickly max'd out at the minimal frequency. We increase slightly the limit temperature, to delay the CPU throttling. Also we reduce the hysteris setting to re-increase the cpu frequency quicker than before Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r--arch/arm/mach-msm/board-8064.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-msm/board-8064.c b/arch/arm/mach-msm/board-8064.c
index 46cf62d97804..7e374eaad4a7 100644
--- a/arch/arm/mach-msm/board-8064.c
+++ b/arch/arm/mach-msm/board-8064.c
@@ -1894,8 +1894,8 @@ static struct platform_device msm_tsens_device = {
static struct msm_thermal_data msm_thermal_pdata = {
.sensor_id = 7,
.poll_ms = 250,
- .limit_temp_degC = 60,
- .temp_hysteresis_degC = 10,
+ .limit_temp_degC = 65,
+ .temp_hysteresis_degC = 5,
.freq_step = 2,
.core_limit_temp_degC = 80,
.core_temp_hysteresis_degC = 10,