1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #include <acpi/acpi_gnvs.h> 4 #include <soc/nvs.h> 5 mainboard_fill_gnvs(struct global_nvs * gnvs)6void mainboard_fill_gnvs(struct global_nvs *gnvs) 7 { 8 /* The lid is open by default */ 9 gnvs->lids = 1; 10 11 /* Temperature at which OS will shutdown */ 12 gnvs->tcrt = 100; 13 /* Temperature at which OS will throttle CPU */ 14 gnvs->tpsv = 90; 15 } 16