1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <acpi/acpi_gnvs.h>
4 #include <device/device.h>
7 #include <southbridge/intel/bd82x6x/pch.h>
12 void mainboard_fill_gnvs(struct global_nvs
*gnvs
)
14 /* EC handles all active thermal and fan control on Parrot. */
15 gnvs
->tcrt
= CRITICAL_TEMPERATURE
;
16 gnvs
->tpsv
= PASSIVE_TEMPERATURE
;
18 // the lid is open by default.
22 if (parrot_rev() < 0x2) { /* DVT vs PVT */
23 gnvs
->tpiq
= BOARD_TRACKPAD_IRQ_DVT
;
25 gnvs
->tpiq
= BOARD_TRACKPAD_IRQ_PVT
;