summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrover Yen <Grover_Yen@wistron.com>2015-05-26 16:16:05 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-05-28 00:17:40 +0000
commit5a523f1431ecf23f140dd680f3777843fd921650 (patch)
treeaf875b16aa3de82877810fcaa80349ce60ba4473
parentb854686e7fcac1995e5b1c639addbd39af526589 (diff)
downloadchrome-ec-5a523f1431ecf23f140dd680f3777843fd921650.tar.gz
lulu: Update thermal table.
Update thermal settings according to "Meridian thermal table x01.xlsx" BUG=chrome-os-partner:40324 BRANCH=none TEST=Flash EC firmware and apply thermalget, thermalset command in console to confirm thermal/fan settings. Change-Id: Id72d035f31cc6043914059128ec67bcf72136a73 Signed-off-by: Grover Yen <Grover_Yen@wistron.com> Reviewed-on: https://chromium-review.googlesource.com/273107 Reviewed-by: Mohammed Habibulla <moch@google.com> Tested-by: Sean Chiang <sean_fs_chiang@wistron.com> Commit-Queue: Sean Chiang <sean_fs_chiang@wistron.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 a879ed5517..d170a4619d 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 = 1000,
- .rpm_max = 5050,
+ .rpm_min = 4500,
+ .rpm_max = 6900,
.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(95), C_TO_K(97), C_TO_K(99)}, C_TO_K(55), C_TO_K(85)},
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, 0, 0},
- {{0, 0, 0}, 0, 0},
+ {{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)},
};
BUILD_ASSERT(ARRAY_SIZE(thermal_params) == TEMP_SENSOR_COUNT);