Haswell: Lower TJ_MAX to 100C. Adjust critical temps to match.
Change-Id: I3326b6e3c412b6360af37030cefd13d95b704e70 Signed-off-by: Dave Parker <dparker@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/180750 Reviewed-by: Aaron Durbin <adurbin@chromium.org> (cherry picked from commit 1978b0f91b2e91d2251721c7c6981d51a6930b61) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6615 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
parent
5a0fdb4565
commit
32193e1f20
|
@ -28,16 +28,16 @@
|
|||
#define CTDP_NOMINAL_THRESHOLD_ON 0
|
||||
|
||||
/* Config TDP Down */
|
||||
#define CTDP_DOWN_THRESHOLD_OFF 80
|
||||
#define CTDP_DOWN_THRESHOLD_ON 90
|
||||
#define CTDP_DOWN_THRESHOLD_OFF 75
|
||||
#define CTDP_DOWN_THRESHOLD_ON 85
|
||||
|
||||
/* Temperature which OS will shutdown at */
|
||||
#define CRITICAL_TEMPERATURE 104
|
||||
#define CRITICAL_TEMPERATURE 99
|
||||
|
||||
/* Temperature which OS will throttle CPU */
|
||||
#define PASSIVE_TEMPERATURE 100
|
||||
#define PASSIVE_TEMPERATURE 95
|
||||
|
||||
/* Tj_max value for calculating PECI CPU temperature */
|
||||
#define MAX_TEMPERATURE 105
|
||||
#define MAX_TEMPERATURE 100
|
||||
|
||||
#endif
|
||||
|
|
|
@ -26,12 +26,12 @@
|
|||
#define EC_THROTTLE_POWER_LIMIT 12 /* 12W */
|
||||
|
||||
/* Temperature which OS will shutdown at */
|
||||
#define CRITICAL_TEMPERATURE 104
|
||||
#define CRITICAL_TEMPERATURE 99
|
||||
|
||||
/* Temperature which OS will throttle CPU */
|
||||
#define PASSIVE_TEMPERATURE 100
|
||||
#define PASSIVE_TEMPERATURE 95
|
||||
|
||||
/* Tj_max value for calculating PECI CPU temperature */
|
||||
#define MAX_TEMPERATURE 105
|
||||
#define MAX_TEMPERATURE 100
|
||||
|
||||
#endif
|
||||
|
|
|
@ -23,16 +23,16 @@
|
|||
/* Control TDP Settings */
|
||||
#define CTL_TDP_SENSOR_ID 0 /* PECI */
|
||||
#define CTL_TDP_POWER_LIMIT 12 /* 12W */
|
||||
#define CTL_TDP_THRESHOLD_OFF 68 /* Normal at 68C */
|
||||
#define CTL_TDP_THRESHOLD_ON 73 /* Limited at 73C */
|
||||
#define CTL_TDP_THRESHOLD_OFF 80 /* Normal at 80C */
|
||||
#define CTL_TDP_THRESHOLD_ON 85 /* Limited at 85C */
|
||||
|
||||
/* Temperature which OS will shutdown at */
|
||||
#define CRITICAL_TEMPERATURE 104
|
||||
#define CRITICAL_TEMPERATURE 99
|
||||
|
||||
/* Temperature which OS will throttle CPU */
|
||||
#define PASSIVE_TEMPERATURE 100
|
||||
#define PASSIVE_TEMPERATURE 95
|
||||
|
||||
/* Tj_max value for calculating PECI CPU temperature */
|
||||
#define MAX_TEMPERATURE 105
|
||||
#define MAX_TEMPERATURE 100
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue