summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--baseboard/kalista/baseboard.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/baseboard/kalista/baseboard.c b/baseboard/kalista/baseboard.c
index c31ec24c84..53e75508a9 100644
--- a/baseboard/kalista/baseboard.c
+++ b/baseboard/kalista/baseboard.c
@@ -124,9 +124,9 @@ const struct fan_conf fan_conf_0 = {
};
const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 2200,
- .rpm_start = 2200,
- .rpm_max = 5600,
+ .rpm_min = 2180,
+ .rpm_start = 2180,
+ .rpm_max = 4900,
};
struct fan_t fans[] = {
@@ -435,14 +435,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 = 1, .rpm = 0},
- {.on = 36, .off = 1, .rpm = 2800},
- {.on = 58, .off = 58, .rpm = 3200},
- {.on = 66, .off = 61, .rpm = 3400},
- {.on = 75, .off = 69, .rpm = 4200},
- {.on = 81, .off = 76, .rpm = 4800},
- {.on = 88, .off = 83, .rpm = 5200},
- {.on = 98, .off = 91, .rpm = 5600},
+ {.on = 0, .off = 5, .rpm = 0},
+ {.on = 30, .off = 5, .rpm = 2180},
+ {.on = 49, .off = 46, .rpm = 2680},
+ {.on = 53, .off = 50, .rpm = 3300},
+ {.on = 58, .off = 54, .rpm = 3760},
+ {.on = 63, .off = 59, .rpm = 4220},
+ {.on = 68, .off = 64, .rpm = 4660},
+ {.on = 75, .off = 70, .rpm = 4900},
};
/* All fan tables must have the same number of levels */
#define NUM_FAN_LEVELS ARRAY_SIZE(fan_table0)