aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/s230u/acpi_tables.c
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2018-10-10 14:28:44 +0200
committerPhilipp Deppenwiese <zaolin.daisuki@gmail.com>2019-05-25 12:10:49 +0000
commita6f9ee39065ecd6ec24f5f09616bddef17e894d6 (patch)
tree9773e15d2084a1ccaaafec42969c6fbfcc2f7762 /src/mainboard/lenovo/s230u/acpi_tables.c
parent43f6d9d7160be96460f77993465de1570568c569 (diff)
mb/lenovo: Unify thermal threshold handling
Unify thermal handling across Lenovo boards (except g505, which is different). Namely, do the following: * Move thermal levels from acpi_tables to thermal.h (and create if necessary). * Don't use board-specific ifdef guards. * Set thermal levels using dedicated acpi_update_thermal_table function as almost all Lenovo boards do. * Update list of authors in comments. Merge all author's entries. * Minor whitespace and formatting. This makes diff -ruw between the Lenovo boards smaller. Change-Id: If569f67c932b7fbf14893b890a5588df4994daeb Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/29659 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo/s230u/acpi_tables.c')
-rw-r--r--src/mainboard/lenovo/s230u/acpi_tables.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/s230u/acpi_tables.c b/src/mainboard/lenovo/s230u/acpi_tables.c
index 21fce85f5a..8d6d93f1c3 100644
--- a/src/mainboard/lenovo/s230u/acpi_tables.c
+++ b/src/mainboard/lenovo/s230u/acpi_tables.c
@@ -14,6 +14,13 @@
*/
#include <southbridge/intel/bd82x6x/nvs.h>
+#include "thermal.h"
+
+static void acpi_update_thermal_table(global_nvs_t *gnvs)
+{
+ gnvs->tcrt = CRITICAL_TEMPERATURE;
+ gnvs->tpsv = PASSIVE_TEMPERATURE;
+}
void acpi_create_gnvs(global_nvs_t *gnvs)
{
@@ -28,6 +35,5 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
/* The LID is open by default */
gnvs->lids = 1;
- gnvs->tcrt = 100;
- gnvs->tpsv = 90;
+ acpi_update_thermal_table(gnvs);
}