summaryrefslogtreecommitdiff
path: root/board/samus/board.c
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2015-01-15 09:32:18 -0800
committerDuncan Laurie <dlaurie@chromium.org>2015-01-15 18:36:11 +0000
commit2669c65cfbc7bef081192806382a894e3d271494 (patch)
tree75619aa51ab4f6fcf4792d6ad146776a18c1e50c /board/samus/board.c
parentd8095f39d66ea363bff23201e19714a9f69c70cb (diff)
downloadchrome-ec-2669c65cfbc7bef081192806382a894e3d271494.tar.gz
samus: Update thermal table for adjusted Tj_max
Update the thermal table to account for Tj_max changing from 100C to 105C so the thermal shutdown temperature is 104C instead of 99C. The warn and high(prochot) values are left the same as we do want to try and throttle with some room before the critical threshold will pull power. This is mostly a concern in the factory where they may run without active cooling during MLB testing. BUG=chrome-os-partner:35483 BRANCH=samus TEST=build and boot on samus Change-Id: Iae55d7ca41f81e6b7250585be374fb8dd1b6533c Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/241011 Reviewed-by: Alec Berg <alecaberg@chromium.org>
Diffstat (limited to 'board/samus/board.c')
-rw-r--r--board/samus/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/samus/board.c b/board/samus/board.c
index 196708c9f8..3d28bfe20b 100644
--- a/board/samus/board.c
+++ b/board/samus/board.c
@@ -188,8 +188,8 @@ BUILD_ASSERT(ARRAY_SIZE(als) == ALS_COUNT);
*/
struct ec_thermal_config thermal_params[] = {
/* {Twarn, Thigh, Thalt}, fan_off, fan_max */
- {{C_TO_K(95), C_TO_K(97), C_TO_K(99)},
- C_TO_K(50), C_TO_K(85)}, /* PECI */
+ {{C_TO_K(95), C_TO_K(97), C_TO_K(104)},
+ C_TO_K(55), C_TO_K(90)}, /* PECI */
{{0, 0, 0}, 0, 0}, /* EC */
{{0, 0, 0}, C_TO_K(41), C_TO_K(55)}, /* Charger die */
{{0, 0, 0}, 0, 0},