aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/x60/acpi_tables.c
diff options
context:
space:
mode:
authorPatrick Rudolph <siro@das-labor.org>2017-08-23 17:42:28 +0200
committerPatrick Rudolph <siro@das-labor.org>2017-08-27 13:07:21 +0000
commitafa627db2ee414db4e31c64082bdee267e33af0b (patch)
treec41ec1645c1e3cac143780e6f0522177916e26df /src/mainboard/lenovo/x60/acpi_tables.c
parent9c7ce28b2fe3f1b077562dc1f47679bf5115c0cf (diff)
mb/lenovo/*/acpi_tables: Add critical and passive threshold
Add critical and passive threshold to be advertised in thermal zone 0. Change-Id: Ic75a80994b27ac19651ed52b7fc3c00c65cd9c01 Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/21160 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/lenovo/x60/acpi_tables.c')
-rw-r--r--src/mainboard/lenovo/x60/acpi_tables.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x60/acpi_tables.c b/src/mainboard/lenovo/x60/acpi_tables.c
index b5b51a045d..d29a6ccb9d 100644
--- a/src/mainboard/lenovo/x60/acpi_tables.c
+++ b/src/mainboard/lenovo/x60/acpi_tables.c
@@ -32,4 +32,7 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
gnvs->cmap = 0x01;
gnvs->cmbp = 0x01;
+ /* Set thermal levels */
+ gnvs->tcrt = 100;
+ gnvs->tpsv = 90;
}