aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t430/acpi_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/lenovo/t430/acpi_tables.c')
-rw-r--r--src/mainboard/lenovo/t430/acpi_tables.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/mainboard/lenovo/t430/acpi_tables.c b/src/mainboard/lenovo/t430/acpi_tables.c
index ea7e52f0e8..82ddd9f269 100644
--- a/src/mainboard/lenovo/t430/acpi_tables.c
+++ b/src/mainboard/lenovo/t430/acpi_tables.c
@@ -14,17 +14,20 @@
*/
#include <southbridge/intel/bd82x6x/nvs.h>
-#include "thermal.h"
void acpi_create_gnvs(global_nvs_t *gnvs)
{
- // the lid is open by default.
+ /* The lid is open by default */
gnvs->lids = 1;
- gnvs->f0of = CTDP_DOWN_THRESHOLD_OFF;
- gnvs->f0on = CTDP_DOWN_THRESHOLD_ON;
+ /* Config TDP Down */
+ gnvs->f0of = 80;
+ gnvs->f0on = 90;
- gnvs->tcrt = CRITICAL_TEMPERATURE;
- gnvs->tpsv = PASSIVE_TEMPERATURE;
- gnvs->tmax = MAX_TEMPERATURE;
+ /* Temperature at which OS will shutdown */
+ gnvs->tcrt = 100;
+ /* Temperature at which OS will throttle CPU */
+ gnvs->tpsv = 90;
+ /* Tj_max value for calculating PECI CPU temperature */
+ gnvs->tmax = 105;
}