aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/bostentech
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-08-03 13:26:21 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-08-04 12:26:14 +0000
commite0e28908d27451e85339d24f1fcf96091a1cd168 (patch)
tree1b08f72f7e15ed12c507e31e2a9c68953f947e32 /src/mainboard/bostentech
parentfe6526512a742c0bac2c1bbc919ee143ade3be06 (diff)
soc/intel/baytrail: Factor out `acpi_fill_madt()`
It is the same for the two Bay Trail boards in the tree. Change-Id: I5110cfa8807406232e4f7f1fe79dfe9c3ae4dac4 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44115 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Máté Kukri <kukri.mate@gmail.com>
Diffstat (limited to 'src/mainboard/bostentech')
-rw-r--r--src/mainboard/bostentech/gbyt4/acpi_tables.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mainboard/bostentech/gbyt4/acpi_tables.c b/src/mainboard/bostentech/gbyt4/acpi_tables.c
index 162a08c1aa..7445fb057e 100644
--- a/src/mainboard/bostentech/gbyt4/acpi_tables.c
+++ b/src/mainboard/bostentech/gbyt4/acpi_tables.c
@@ -1,13 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <types.h>
#include <acpi/acpi.h>
#include <acpi/acpi_gnvs.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(struct global_nvs *gnvs)
{
@@ -28,20 +24,6 @@ void acpi_create_gnvs(struct global_nvs *gnvs)
gnvs->dpte = 0;
}
-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_DESKTOP;