summaryrefslogtreecommitdiff
path: root/common/thermal.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/thermal.c')
-rw-r--r--common/thermal.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/common/thermal.c b/common/thermal.c
index 97c12412e0..873a8a1981 100644
--- a/common/thermal.c
+++ b/common/thermal.c
@@ -23,6 +23,19 @@
#define CPUTS(outstr) cputs(CC_THERMAL, outstr)
#define CPRINTF(format, args...) cprintf(CC_THERMAL, format, ## args)
+/*****************************************************************************/
+/* DPTF temperature thresholds */
+
+void dptf_set_temp_threshold(int sensor_id, int temp, int idx, int enable)
+{
+ /* TODO(crosbug.com/p/23970) */
+ CPRINTF("[%T DPTF sensor %d, threshold %d C, index %d, %sabled]\n",
+ sensor_id, K_TO_C(temp), idx, enable ? "en" : "dis");
+}
+
+/*****************************************************************************/
+/* EC-specific thermal controls */
+
test_mockable_static void smi_sensor_failure_warning(void)
{
CPRINTF("[%T can't read any temp sensors!]\n");