summaryrefslogtreecommitdiff
path: root/common/thermal.c
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2012-05-10 15:25:36 +0800
committerVic Yang <victoryang@chromium.org>2012-05-10 15:25:36 +0800
commit85e734d1b48a65974dd31870ac62cfa7af6e009b (patch)
treeb61e58b378926fcde78ca332951f88de2a180b2b /common/thermal.c
parent30a33e6b0412c132c375cc569f9629da6eb168f3 (diff)
downloadchrome-ec-85e734d1b48a65974dd31870ac62cfa7af6e009b.tar.gz
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 <victoryang@chromium.org> BUG=chrome-os-partner:8982 TEST=Manual Change-Id: I16a74e10af4583a59065c09e8d9538232b0fb157
Diffstat (limited to 'common/thermal.c')
-rw-r--r--common/thermal.c6
1 files 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. */