summaryrefslogtreecommitdiff
path: root/board/samus
diff options
context:
space:
mode:
authorRyan Zhang <Ryan.Zhang@quanta.corp-partner.google.com>2017-10-20 10:08:12 +0800
committerchrome-bot <chrome-bot@chromium.org>2017-11-06 13:48:38 -0800
commitf48cf0e8b27fb484271540e4cc272aea581a3b48 (patch)
tree08484f3eb500b2f50b0e394101fbb4e5e20225a5 /board/samus
parent1f9b681ac16fd60c245ecd86391f883035cb1037 (diff)
downloadchrome-ec-f48cf0e8b27fb484271540e4cc272aea581a3b48.tar.gz
Fizz: Modify thermal table
Modify thermal table for Fizz reference patches: 627542, 288256, 329359 on off RPM step0 0 step1 16 2 2800 step2 27 18 3200 step3 35 29 3400 step4 43 37 4200 step5 54 45 4800 step6 64 56 5200 step7 97 83 5600 Prochot degree: active when t >= 88C release when t <= 85C Shutdown degree: when t >= 90C BUG=b:67487721, b:64439568 BRANCH=master TEST=fan target speed follows table, make -j buildall pass Change-Id: I3378668a560b8ddc568fe9cbf2703613fad8e4b6 Signed-off-by: Ryan Zhang <ryan.zhang@quanta.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/729606 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'board/samus')
-rw-r--r--board/samus/board.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/board/samus/board.c b/board/samus/board.c
index 01ad05e7a2..db49a573af 100644
--- a/board/samus/board.c
+++ b/board/samus/board.c
@@ -181,21 +181,21 @@ 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(101), 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},
- {{0, 0, 0}, C_TO_K(35), C_TO_K(49)}, /* CPU die */
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, 0, 0}, /* Left C die */
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, 0, 0}, /* Right C die */
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, 0, 0}, /* Right D die */
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, C_TO_K(43), C_TO_K(54)}, /* Left D die */
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, 0, 0}, /* Battery */
+ {0, 0, 0}, C_TO_K(55), C_TO_K(90)}, /* PECI */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0}, /* EC */
+ {{0, 0, 0}, {0, 0, 0}, C_TO_K(41), C_TO_K(55)}, /* Charger die */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0},
+ {{0, 0, 0}, {0, 0, 0}, C_TO_K(35), C_TO_K(49)}, /* CPU die */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0},
+ {{0, 0, 0}, {0, 0, 0}, 0, 0}, /* Left C die */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0},
+ {{0, 0, 0}, {0, 0, 0}, 0, 0}, /* Right C die */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0},
+ {{0, 0, 0}, {0, 0, 0}, 0, 0}, /* Right D die */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0},
+ {{0, 0, 0}, {0, 0, 0}, C_TO_K(43), C_TO_K(54)}, /* Left D die */
+ {{0, 0, 0}, {0, 0, 0}, 0, 0},
+ {{0, 0, 0}, {0, 0, 0}, 0, 0}, /* Battery */
};
BUILD_ASSERT(ARRAY_SIZE(thermal_params) == TEMP_SENSOR_COUNT);