Rename acpi_create_gnvs() functions under mb/ to reflect their changed functionality. Remove now empty mb/acpi_tables.c files. Change-Id: Ia366867ef73d1ade9805dc29b8e14b3073f44f60 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48707 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
30 lines
653 B
C
30 lines
653 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
#include <acpi/acpi_gnvs.h>
|
|
#include <device/device.h>
|
|
#include <southbridge/intel/lynxpoint/pch.h>
|
|
#include <southbridge/intel/lynxpoint/nvs.h>
|
|
|
|
#include "thermal.h"
|
|
|
|
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|
{
|
|
/* Enable USB ports in S3 */
|
|
gnvs->s3u0 = 1;
|
|
gnvs->s3u1 = 1;
|
|
|
|
/* Disable USB ports in S5 */
|
|
gnvs->s5u0 = 0;
|
|
gnvs->s5u1 = 0;
|
|
|
|
/* TPM Present */
|
|
gnvs->tpmp = 1;
|
|
|
|
gnvs->tmps = TEMPERATURE_SENSOR_ID;
|
|
gnvs->tcrt = CRITICAL_TEMPERATURE;
|
|
gnvs->tpsv = PASSIVE_TEMPERATURE;
|
|
gnvs->tmax = MAX_TEMPERATURE;
|
|
gnvs->f0pw = EC_THROTTLE_POWER_LIMIT;
|
|
gnvs->flvl = 1;
|
|
}
|