Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9270
-gerrit
commit 595752c102062d51c47e13f247c5d301e98c7b30 Author: Duncan Laurie dlaurie@chromium.org Date: Mon Nov 3 08:53:21 2014 -0800
samus: Update thermal max for broadwell
Broadwell Tj_max is 105C, update accordingly.
BUG=chrome-os-partner:28234 BRANCH=samus TEST=build and boot on samus
Change-Id: I001e17287ebbcbfdd909428e149a95878734dab9 Signed-off-by: Stefan Reinauer reinauer@chromium.org Original-Commit-Id: fb1de7a9e1d84f592b785a1b495e4aaf434f23a2 Original-Change-Id: If6a3fd682f4ee9b8010982870a61b76e33010fd4 Original-Signed-off-by: Duncan Laurie dlaurie@chromium.org Original-Reviewed-on: https://chromium-review.googlesource.com/226952 Original-Reviewed-by: Aaron Durbin adurbin@chromium.org --- src/mainboard/google/samus/thermal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mainboard/google/samus/thermal.h b/src/mainboard/google/samus/thermal.h index 9bea3f0..2e3f450 100644 --- a/src/mainboard/google/samus/thermal.h +++ b/src/mainboard/google/samus/thermal.h @@ -23,12 +23,12 @@ #define TEMPERATURE_SENSOR_ID 0 /* PECI */
/* Temperature which OS will shutdown at */ -#define CRITICAL_TEMPERATURE 99 +#define CRITICAL_TEMPERATURE 104
/* Temperature which OS will throttle CPU */ #define PASSIVE_TEMPERATURE 95
/* Tj_max value for calculating PECI CPU temperature */ -#define MAX_TEMPERATURE 100 +#define MAX_TEMPERATURE 105
#endif