9 changed files with
15 additions and
37 deletions
|
|
|
|
@ -8,6 +8,5 @@ romstage-y += hsio.c
|
|
|
|
|
ramstage-y += ramstage.c
|
|
|
|
|
ramstage-y += boardid.c
|
|
|
|
|
ramstage-y += hsio.c
|
|
|
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fadt.c
|
|
|
|
|
|
|
|
|
|
CPPFLAGS_common += -Isrc/mainboard/$(MAINBOARDDIR)/
|
|
|
|
|
|
|
|
|
|
@ -22,3 +22,8 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
|
|
|
|
|
/* TPM Present */
|
|
|
|
|
gnvs->tpmp = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void motherboard_fill_fadt(acpi_fadt_t *fadt)
|
|
|
|
|
{
|
|
|
|
|
fadt->preferred_pm_profile = PM_ENTERPRISE_SERVER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -1,12 +0,0 @@
|
|
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
|
|
|
|
|
|
#include <soc/acpi.h>
|
|
|
|
|
#include <soc/soc_util.h>
|
|
|
|
|
|
|
|
|
|
void motherboard_fill_fadt(acpi_fadt_t *fadt)
|
|
|
|
|
{
|
|
|
|
|
fadt->reserved = 0;
|
|
|
|
|
fadt->preferred_pm_profile = PM_ENTERPRISE_SERVER;
|
|
|
|
|
}
|
|
|
|
|
@ -2,7 +2,6 @@
|
|
|
|
|
|
|
|
|
|
bootblock-y += bootblock.c
|
|
|
|
|
ramstage-y += ramstage.c
|
|
|
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fadt.c
|
|
|
|
|
|
|
|
|
|
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/include
|
|
|
|
|
CPPFLAGS_common += -I$(CONFIG_FSP_HEADER_PATH)
|
|
|
|
|
|
|
|
|
|
@ -9,3 +9,8 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
|
|
|
|
|
{
|
|
|
|
|
acpi_init_gnvs(gnvs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void motherboard_fill_fadt(acpi_fadt_t *fadt)
|
|
|
|
|
{
|
|
|
|
|
fadt->preferred_pm_profile = PM_ENTERPRISE_SERVER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -1,10 +0,0 @@
|
|
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
|
#include <soc/acpi.h>
|
|
|
|
|
|
|
|
|
|
void motherboard_fill_fadt(acpi_fadt_t *fadt)
|
|
|
|
|
{
|
|
|
|
|
fadt->reserved = 0;
|
|
|
|
|
fadt->preferred_pm_profile = PM_ENTERPRISE_SERVER;
|
|
|
|
|
}
|
|
|
|
|
@ -6,7 +6,6 @@ romstage-y += hsio.c
|
|
|
|
|
|
|
|
|
|
ramstage-y += ramstage.c
|
|
|
|
|
ramstage-y += hsio.c
|
|
|
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fadt.c
|
|
|
|
|
|
|
|
|
|
bootblock-y += bmcinfo.c
|
|
|
|
|
postcar-y += bmcinfo.c
|
|
|
|
|
|
|
|
|
|
@ -22,3 +22,8 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
|
|
|
|
|
/* TPM Present */
|
|
|
|
|
gnvs->tpmp = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void motherboard_fill_fadt(acpi_fadt_t *fadt)
|
|
|
|
|
{
|
|
|
|
|
fadt->preferred_pm_profile = PM_ENTERPRISE_SERVER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -1,12 +0,0 @@
|
|
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
|
|
|
|
|
|
#include <soc/acpi.h>
|
|
|
|
|
#include <soc/soc_util.h>
|
|
|
|
|
|
|
|
|
|
void motherboard_fill_fadt(acpi_fadt_t *fadt)
|
|
|
|
|
{
|
|
|
|
|
fadt->reserved = 0;
|
|
|
|
|
fadt->preferred_pm_profile = PM_ENTERPRISE_SERVER;
|
|
|
|
|
}
|