summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2018-05-24 16:55:10 -0600
committerMartin Roth <martinroth@google.com>2018-05-31 15:25:12 +0000
commitecb4491899d83b8d5b994b464da8489877137882 (patch)
tree2ae833fd4985ca21b21365b0087eeec6f6d2cc78 /src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h
parent405eb44fdb3a8a2d0188e2550367c846a76919aa (diff)
downloadcoreboot-ecb4491899d83b8d5b994b464da8489877137882.tar.gz
coreboot-ecb4491899d83b8d5b994b464da8489877137882.tar.bz2
coreboot-ecb4491899d83b8d5b994b464da8489877137882.zip
mainboard/google/kahlee: Add careena variant
Add Careena variant, based on the grunt board. BUG=b:80106042 TEST=Build Careena Change-Id: I87a24f6d8115aacf5b21181f3820cf2718ad252a Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/26524 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h')
-rw-r--r--src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h b/src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h
new file mode 100644
index 000000000000..2c983bb738a4
--- /dev/null
+++ b/src/mainboard/google/kahlee/variants/careena/include/variant/thermal.h
@@ -0,0 +1,38 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2014 Google Inc.
+ * Copyright (C) 2017 Advanced Micro Devices, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef THERMAL_H
+#define THERMAL_H
+
+/*
+ * Stoney Ridge Thermal Requirements 12 (6W)
+ * TDP (W) 6
+ * T die,max (°C) 95
+ * T ctl,max 85
+ * T die,lmt (default) 90
+ * T ctl,lmt (default) 80
+ */
+
+/* Control TDP Settings */
+#define CTL_TDP_SENSOR_ID 0 /* EC TIN0 */
+
+/* Temperature which OS will shutdown at */
+#define CRITICAL_TEMPERATURE 94
+
+/* Temperature which OS will throttle CPU */
+#define PASSIVE_TEMPERATURE 85
+
+#endif