summaryrefslogtreecommitdiff
path: root/board/osiris/sensors.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/osiris/sensors.c')
-rw-r--r--board/osiris/sensors.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/board/osiris/sensors.c b/board/osiris/sensors.c
index e02bee6a20..9ad528c069 100644
--- a/board/osiris/sensors.c
+++ b/board/osiris/sensors.c
@@ -1,4 +1,4 @@
-/* Copyright 2022 The Chromium OS Authors. All rights reserved.
+/* Copyright 2022 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -63,30 +63,29 @@ const struct temp_sensor_t temp_sensors[] = {
BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
/*
- * TODO(b/234545460): update for Alder Lake/brya
- *
- * temperature limit, See thermal table in b/234545460#comment2
+ * Temperature limit, See thermal table in b/234545460#comment16
+ * For real temperature in fan control table, set temp_fan_off
+ * and temp_fan_max to 0 and 99.
*/
/*
* TODO(b/202062363): Remove when clang is fixed.
*/
-#define THERMAL_CPU \
- { \
+#define THERMAL_CPU \
+ { \
.temp_host = { \
[EC_TEMP_THRESH_HIGH] = C_TO_K(78), \
- [EC_TEMP_THRESH_HALT] = C_TO_K(90), \
+ [EC_TEMP_THRESH_HALT] = C_TO_K(80), \
}, \
.temp_host_release = { \
[EC_TEMP_THRESH_HIGH] = C_TO_K(75), \
}, \
- .temp_fan_off = C_TO_K(25), \
- .temp_fan_max = C_TO_K(89), \
+ .temp_fan_off = C_TO_K(0), \
+ .temp_fan_max = C_TO_K(99), \
}
__maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU;
-
-#define THERMAL_UNUSED \
- { \
+#define THERMAL_UNUSED \
+ { \
.temp_host = { \
[EC_TEMP_THRESH_HIGH] = 0, \
[EC_TEMP_THRESH_HALT] = 0, \