summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Huang <david.huang@quanta.corp-partner.google.com>2021-06-17 11:00:12 +0800
committerCommit Bot <commit-bot@chromium.org>2021-07-21 17:48:05 +0000
commite14b074cfaff902040f131d6e541ac4f34bfa2ac (patch)
treebcfd7a2e01a050c605210b2ce765d9c5761fb515
parent6018e85036dd3680b7fba9bb36b4226fff4a2aa2 (diff)
downloadchrome-ec-e14b074cfaff902040f131d6e541ac4f34bfa2ac.tar.gz
Endeavour: Update thermal table
Update new thermal table BUG=b:191187610 BRANCH=endeavour TEST=Thermal team verified thermal policy is expected. Signed-off-by: David Huang <david.huang@quanta.corp-partner.google.com> Change-Id: Icc0a6e49bb2d74559c7a75a981fb69ba5a39ab0f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3034799 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Commit-Queue: Jack Rosenthal <jrosenth@chromium.org> (cherry picked from commit 2dd687f160dcda988ba9cb93ffb07d58680de572) Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3043553 Tested-by: Jeff Chase <jnchase@google.com> Auto-Submit: Jeff Chase <jnchase@google.com> Reviewed-by: Joe Tessler <jrt@chromium.org> Commit-Queue: Joe Tessler <jrt@chromium.org>
-rw-r--r--board/endeavour/board.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/board/endeavour/board.c b/board/endeavour/board.c
index b3d44ec777..e59985729d 100644
--- a/board/endeavour/board.c
+++ b/board/endeavour/board.c
@@ -125,7 +125,7 @@ struct ec_thermal_config thermal_params[] = {
* fan_off, fan_max
*/
{{0, C_TO_K(81), C_TO_K(82)}, {0, C_TO_K(77), 0},
- C_TO_K(43), C_TO_K(76)}, /* TMP431_Internal */
+ C_TO_K(19), C_TO_K(74)}, /* TMP431_Internal */
{{0, 0, 0}, {0, 0, 0}, 0, 0}, /* TMP431_Sensor_1 */
};
BUILD_ASSERT(ARRAY_SIZE(thermal_params) == TEMP_SENSOR_COUNT);
@@ -309,14 +309,14 @@ struct fan_step {
/* Note: Do not make the fan on/off point equal to 0 or 100 */
static const struct fan_step fan_table0[] = {
- {.on = 0, .off = 3, .rpm = 0},
- {.on = 15, .off = 3, .rpm = 2500},
- {.on = 36, .off = 18, .rpm = 3200},
- {.on = 52, .off = 39, .rpm = 3500},
- {.on = 61, .off = 55, .rpm = 3900},
- {.on = 70, .off = 64, .rpm = 4500},
- {.on = 82, .off = 73, .rpm = 5100},
- {.on = 97, .off = 85, .rpm = 5400},
+ {.on = 0, .off = 2, .rpm = 0},
+ {.on = 11, .off = 2, .rpm = 2500},
+ {.on = 38, .off = 29, .rpm = 3200},
+ {.on = 65, .off = 36, .rpm = 3500},
+ {.on = 76, .off = 64, .rpm = 3900},
+ {.on = 84, .off = 75, .rpm = 4500},
+ {.on = 91, .off = 82, .rpm = 5100},
+ {.on = 98, .off = 89, .rpm = 5400},
};
/* All fan tables must have the same number of levels */
#define NUM_FAN_LEVELS ARRAY_SIZE(fan_table0)