summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChromeOS Developer <dparker@chromium.org>2013-12-17 14:38:15 -0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-12-18 22:27:52 +0000
commit52c14a9be114e4dc21ff819cb263dc3a6bf0a695 (patch)
tree0fb9c6d7870d1d1183d435f1b956ecd351b621b9
parentb3379a5798a879a81f9b395b7c85b78826491fb5 (diff)
downloadchrome-ec-52c14a9be114e4dc21ff819cb263dc3a6bf0a695.tar.gz
Wolf: Lower temp thresholds to match updated PECI TjMax
Temps in the fan table are lowered by 5 degreess to match the corrected TjMax temp at 100C (from 105C). Also updates the the warning, cpu power off, and system power off thresholds to be less than TjMax. BUG=chrome-os-partner:24455 BRANCH=wolf TEST=Manual. Run a device with the fan disabled until it shuts down at 97C. Change-Id: I317d7a65ebc154ee37f7db3499eafb794649c7d6 Signed-off-by: Dave Parker <dparker@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/180525 Reviewed-by: Alec Berg <alecaberg@chromium.org>
-rw-r--r--common/thermal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/thermal.c b/common/thermal.c
index 3f67d8d2d4..a02c35279e 100644
--- a/common/thermal.c
+++ b/common/thermal.c
@@ -36,8 +36,8 @@ test_export_static struct thermal_config_t
thermal_config[TEMP_SENSOR_TYPE_COUNT] = {
/* TEMP_SENSOR_TYPE_CPU */
{THERMAL_CONFIG_WARNING_ON_FAIL,
- {368, 373, 378,
- 318, 323, 328, 332, 335, 338, 341} } ,
+ {368, 370, 372,
+ 313, 318, 323, 327, 330, 333, 336} } ,
/* TEMP_SENSOR_TYPE_BOARD */
{THERMAL_CONFIG_NO_FLAG, {THERMAL_THRESHOLD_DISABLE_ALL} },
/* TEMP_SENSOR_TYPE_CASE */