boards: x86: Indicate ACPI support where applicable

There are several x86 boards that support ACPI, so indicate it in their
yaml files.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Johan Hedberg 2023-11-01 10:33:14 +02:00 committed by Fabio Baltieri
parent a77871b2e5
commit caf299ca23
7 changed files with 8 additions and 2 deletions

View file

@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 2048
supported:
- acpi
- watchdog
- pwm
- gpio

View file

@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 2048
supported:
- acpi
- smp
- watchdog
testing:

View file

@ -7,6 +7,7 @@ toolchain:
- llvm
ram: 2048
supported:
- acpi
- gpio
- smbus
- smp

View file

@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 2048
supported:
- acpi
- smp
- smbus
- watchdog

View file

@ -7,6 +7,7 @@ toolchain:
- xtools
simulation: qemu
supported:
- acpi
- can
- smp
- smbus

View file

@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 256
supported:
- acpi
- smp
testing:
ignore_tags:

View file

@ -8,7 +8,7 @@
#include <zephyr/kernel.h>
#include <zephyr/acpi/acpi.h>
ZTEST(acpi, mcfg_table)
ZTEST(acpi, test_mcfg_table)
{
struct acpi_mcfg *mcfg;
@ -17,7 +17,7 @@ ZTEST(acpi, mcfg_table)
zassert_not_null(mcfg, "Failed to get MCFG table");
}
ZTEST(acpi, irq_routing_table)
ZTEST(acpi, test_irq_routing_table)
{
static ACPI_PCI_ROUTING_TABLE irq_prt_table[CONFIG_ACPI_MAX_PRT_ENTRY];
int status;