summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-10-08 11:34:28 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-10-09 16:42:04 +0000
commit784b03edce2d10f0c7e86d1c7c3f0a96cd4720ab (patch)
treea8f7ebf11eeb76788d56530a4eb70b1e6cde4f2c
parent0fd73ae937c7cc4b2947d25b7bd129c09c9a8875 (diff)
downloadchrome-ec-784b03edce2d10f0c7e86d1c7c3f0a96cd4720ab.tar.gz
samus: start fans a little sooner to keep things cool
This lowers the CPU temp at which the fans start up, from 55C to 43C. It also increases the slope a bit, so that they run a little faster as well. BUG=chrome-os-partner:32260 BRANCH=ToT,samus TEST=manual Visit www.fishgl.com/?full both before and after this CL. Before, the keyboard got a little too warm. After, the fans come on sooner and the keyboard is cooler. Change-Id: I5c4947c5d2bb4a28c0ac449e109e2bd1af84068c Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/222171 Reviewed-by: Sameer Nanda <snanda@chromium.org>
-rw-r--r--board/samus/board.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board/samus/board.c b/board/samus/board.c
index 85550909e2..ff443b96f8 100644
--- a/board/samus/board.c
+++ b/board/samus/board.c
@@ -183,7 +183,7 @@ BUILD_ASSERT(ARRAY_SIZE(als) == ALS_COUNT);
*/
struct ec_thermal_config thermal_params[] = {
/* Only the AP affects the thermal limits and fan speed. */
- {{C_TO_K(95), C_TO_K(97), C_TO_K(99)}, C_TO_K(55), C_TO_K(85)},
+ {{C_TO_K(95), C_TO_K(97), C_TO_K(99)}, C_TO_K(43), C_TO_K(75)},
{{0, 0, 0}, 0, 0},
{{0, 0, 0}, 0, 0},
{{0, 0, 0}, 0, 0},
@@ -305,4 +305,3 @@ const struct accel_orientation acc_orient = {
},
.hinge_axis = {0, 1, 0},
};
-