The prefix mainboard_ was used everywhere else. Change-Id: Ie576fd47301aa484cb1396e0c6f7260b7698af4d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42007 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
48 lines
863 B
C
48 lines
863 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <types.h>
|
|
#include <acpi/acpi.h>
|
|
#include <arch/ioapic.h>
|
|
#include <device/device.h>
|
|
#include <soc/acpi.h>
|
|
#include <soc/nvs.h>
|
|
#include <soc/iomap.h>
|
|
|
|
void acpi_create_gnvs(global_nvs_t *gnvs)
|
|
{
|
|
acpi_init_gnvs(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;
|
|
|
|
/* Enable DPTF */
|
|
gnvs->dpte = 1;
|
|
}
|
|
|
|
unsigned long acpi_fill_madt(unsigned long current)
|
|
{
|
|
/* Local APICs */
|
|
current = acpi_create_madt_lapics(current);
|
|
|
|
/* IOAPIC */
|
|
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
|
|
2, IO_APIC_ADDR, 0);
|
|
|
|
current = acpi_madt_irq_overrides(current);
|
|
|
|
return current;
|
|
}
|
|
|
|
void mainboard_fill_fadt(acpi_fadt_t *fadt)
|
|
{
|
|
fadt->preferred_pm_profile = PM_MOBILE;
|
|
}
|