From 2669c65cfbc7bef081192806382a894e3d271494 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Thu, 15 Jan 2015 09:32:18 -0800 Subject: 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 Reviewed-on: https://chromium-review.googlesource.com/241011 Reviewed-by: Alec Berg --- board/samus/board.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'board/samus/board.c') 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}, -- cgit v1.2.1