From 85e734d1b48a65974dd31870ac62cfa7af6e009b Mon Sep 17 00:00:00 2001 From: Vic Yang Date: Thu, 10 May 2012 15:25:36 +0800 Subject: [PATCH] Adjust fan speed control thresholds This CL set higher temperature thresholds for CPU temperature to reduce fan noise. Also set temperature thresholds for case temperature so that we can adjust fan speed according to them. Signed-off-by: Vic Yang BUG=chrome-os-partner:8982 TEST=Manual Change-Id: I16a74e10af4583a59065c09e8d9538232b0fb157 --- common/thermal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/thermal.c b/common/thermal.c index a7e8d0eb8c..74e00d8de9 100644 --- a/common/thermal.c +++ b/common/thermal.c @@ -30,12 +30,12 @@ extern const struct temp_sensor_t temp_sensors[TEMP_SENSOR_COUNT]; static struct thermal_config_t thermal_config[TEMP_SENSOR_TYPE_COUNT] = { /* TEMP_SENSOR_TYPE_CPU */ {THERMAL_CONFIG_WARNING_ON_FAIL, - {341, 358, 368, 318, 323, 328, 333, 338}}, + {368, 373, 383, 328, 338, 348, 358, 368}}, /* TEMP_SENSOR_TYPE_BOARD */ {THERMAL_CONFIG_NO_FLAG, {THERMAL_THRESHOLD_DISABLE_ALL}}, /* TEMP_SENSOR_TYPE_CASE */ - {THERMAL_CONFIG_NO_FLAG, {333, THERMAL_THRESHOLD_DISABLE, 348, - THERMAL_THRESHOLD_DISABLE_ALL}}, + {THERMAL_CONFIG_NO_FLAG, {341, THERMAL_THRESHOLD_DISABLE, 353, + 318, 323, 348, 333, 338}}, }; /* Fan speed settings. */