summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrover Yen <Grover_Yen@wistron.com>2015-06-18 19:44:14 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-06-22 01:50:28 +0000
commitd07d1870fa2e10c25b0062afa3036566f1304fc2 (patch)
treef28010c979b319868aebb26ef1bc11f74cf6416e
parentdb89ab5032fd1c3ac628677e8bfe12717c848bff (diff)
downloadchrome-ec-d07d1870fa2e10c25b0062afa3036566f1304fc2.tar.gz
lulu: Update thermal table.
Update thermal settings according to "Meridian thermal table x02.xlsx" BUG=chrome-os-partner:40324 BRANCH=firmware-lulu-6301.136.B TEST=Flash EC firmware and apply thermalget, thermaltest command in console to confirm thermal/fan setting. Change-Id: I374acd61600a8a96d6b81a75d92397306ab22bf0 Signed-off-by: Grover Yen <Grover_Yen@wistron.com> Reviewed-on: https://chromium-review.googlesource.com/280425 Reviewed-by: Mohammed Habibulla <moch@google.com>
-rw-r--r--board/lulu/board.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/board/lulu/board.c b/board/lulu/board.c
index d170a4619d..89b0d405e6 100644
--- a/board/lulu/board.c
+++ b/board/lulu/board.c
@@ -76,8 +76,8 @@ BUILD_ASSERT(ARRAY_SIZE(pwm_channels) == PWM_CH_COUNT);
/* Physical fans. These are logically separate from pwm_channels. */
const struct fan_t fans[] = {
{.flags = FAN_USE_RPM_MODE,
- .rpm_min = 4500,
- .rpm_max = 6900,
+ .rpm_min = 3500,
+ .rpm_max = 6600,
.ch = 2,
.pgood_gpio = GPIO_PP5000_PGOOD,
.enable_gpio = GPIO_PP5000_FAN_EN,
@@ -108,10 +108,10 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
*/
struct ec_thermal_config thermal_params[] = {
/* Only the AP affects the thermal limits and fan speed. */
- {{C_TO_K(101), C_TO_K(104), C_TO_K(105)}, C_TO_K(85), C_TO_K(98)},
- {{C_TO_K(75), C_TO_K(79), C_TO_K(80)}, C_TO_K(54), C_TO_K(70)},
- {{C_TO_K(73), C_TO_K(77), C_TO_K(81)}, C_TO_K(51), C_TO_K(58)},
- {{C_TO_K(71), C_TO_K(75), C_TO_K(79)}, C_TO_K(55), C_TO_K(72)},
+ {{C_TO_K(103), C_TO_K(104), C_TO_K(105)}, C_TO_K(85), C_TO_K(98)},
+ {{C_TO_K(71), C_TO_K(72), C_TO_K(73)}, C_TO_K(54), C_TO_K(61)},
+ {{C_TO_K(85), C_TO_K(86), C_TO_K(87)}, C_TO_K(54), C_TO_K(60)},
+ {{C_TO_K(77), C_TO_K(78), C_TO_K(79)}, C_TO_K(55), C_TO_K(62)},
};
BUILD_ASSERT(ARRAY_SIZE(thermal_params) == TEMP_SENSOR_COUNT);