summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarthur.lin <arthur.lin@lcfc.corp-partner.google.com>2021-03-18 20:42:08 +0800
committerCommit Bot <commit-bot@chromium.org>2021-03-25 16:38:19 +0000
commit9ff965d972a1a8dc4fdcb9133e17a903bdd4fc73 (patch)
treea420f4134c9570da142f90ef656b8804b86e8b18
parent1876ca65793e601004f2f047f28a61b72354bd3c (diff)
downloadchrome-ec-9ff965d972a1a8dc4fdcb9133e17a903bdd4fc73.tar.gz
lindar: update thermal table.
Update thermal table setting for thermal team request. BRANCH=firmware-volteer-13672.B BUG=b:183306212 TEST=make buildall -j Signed-off-by: arthur.lin <arthur.lin@lcfc.corp-partner.google.com> Change-Id: I88118210b33781adcfaafa831e86a54d2c2b731a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2772402 Reviewed-by: Keith Short <keithshort@chromium.org> Reviewed-by: Zhuohao Lee <zhuohao@chromium.org> Commit-Queue: Zhuohao Lee <zhuohao@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2784335 Reviewed-by: Abe Levkoy <alevkoy@chromium.org> Commit-Queue: Abe Levkoy <alevkoy@chromium.org> Tested-by: Abe Levkoy <alevkoy@chromium.org>
-rw-r--r--board/lindar/board.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/board/lindar/board.c b/board/lindar/board.c
index 8168b9c51a..c65421b08b 100644
--- a/board/lindar/board.c
+++ b/board/lindar/board.c
@@ -250,18 +250,18 @@ const struct fan_t fans[FAN_CH_COUNT] = {
/*
* Tiger Lake specifies 100 C as maximum TDP temperature. THRMTRIP# occurs at
* 130 C. However, sensor is located next to DDR, so we need to use the lower
- * DDR temperature limit (85 C)
+ * DDR temperature limit (100 C)
*/
const static struct ec_thermal_config thermal_cpu = {
.temp_host = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(70),
- [EC_TEMP_THRESH_HALT] = C_TO_K(80),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(90),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(100),
},
.temp_host_release = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(85),
},
- .temp_fan_off = C_TO_K(35),
- .temp_fan_max = C_TO_K(50),
+ .temp_fan_off = C_TO_K(30),
+ .temp_fan_max = C_TO_K(60),
};
/*
@@ -273,18 +273,18 @@ const static struct ec_thermal_config thermal_cpu = {
* PP3300 regulator: operating range -40 C to 145 C
*
* Inductors: limit of 125c
- * PCB: limit is 80c
+ * PCB: limit is 100c
*/
const static struct ec_thermal_config thermal_inductor = {
.temp_host = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
- [EC_TEMP_THRESH_HALT] = C_TO_K(80),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(90),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(100),
},
.temp_host_release = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(85),
},
- .temp_fan_off = C_TO_K(40),
- .temp_fan_max = C_TO_K(55),
+ .temp_fan_off = C_TO_K(30),
+ .temp_fan_max = C_TO_K(60),
};