summaryrefslogtreecommitdiffstats
path: root/src/mainboard/asus/p2b
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2022-11-18 13:23:52 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2022-11-25 15:03:47 +0000
commita5fa5347051cafe627775ef48c2c9b7d7232ee16 (patch)
tree7ba802737b06978a13005ce20166f02c76cb9da0 /src/mainboard/asus/p2b
parentdd96ab698757c6b6f05612d92f38088e8f7069e5 (diff)
downloadcoreboot-a5fa5347051cafe627775ef48c2c9b7d7232ee16.tar.gz
coreboot-a5fa5347051cafe627775ef48c2c9b7d7232ee16.tar.bz2
coreboot-a5fa5347051cafe627775ef48c2c9b7d7232ee16.zip
ACPI: Flag boards with ACPI_NO_MADT
These boards do no fill MADT with useful information. Change-Id: Ie61e4e4b03c9b7fcd70aba7a2bd71eadd6f4dab1 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69777 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/asus/p2b')
-rw-r--r--src/mainboard/asus/p2b/Kconfig1
-rw-r--r--src/mainboard/asus/p2b/acpi_tables.c9
2 files changed, 1 insertions, 9 deletions
diff --git a/src/mainboard/asus/p2b/Kconfig b/src/mainboard/asus/p2b/Kconfig
index 8e46fb9b1382..986cfdeb9816 100644
--- a/src/mainboard/asus/p2b/Kconfig
+++ b/src/mainboard/asus/p2b/Kconfig
@@ -9,6 +9,7 @@ config BASE_ASUS_P2B_D
config BOARD_SPECIFIC_OPTIONS
def_bool y
+ select ACPI_NO_MADT
select CPU_INTEL_SLOT_1
select NORTHBRIDGE_INTEL_I440BX
select SOUTHBRIDGE_INTEL_I82371EB
diff --git a/src/mainboard/asus/p2b/acpi_tables.c b/src/mainboard/asus/p2b/acpi_tables.c
deleted file mode 100644
index b35610ae1b77..000000000000
--- a/src/mainboard/asus/p2b/acpi_tables.c
+++ /dev/null
@@ -1,9 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <acpi/acpi.h>
-
-unsigned long acpi_fill_madt(unsigned long current)
-{
- /* mainboard has no ioapic */
- return current;
-}