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:
parent
a77871b2e5
commit
caf299ca23
|
@ -6,6 +6,7 @@ toolchain:
|
|||
- zephyr
|
||||
ram: 2048
|
||||
supported:
|
||||
- acpi
|
||||
- watchdog
|
||||
- pwm
|
||||
- gpio
|
||||
|
|
|
@ -6,6 +6,7 @@ toolchain:
|
|||
- zephyr
|
||||
ram: 2048
|
||||
supported:
|
||||
- acpi
|
||||
- smp
|
||||
- watchdog
|
||||
testing:
|
||||
|
|
|
@ -7,6 +7,7 @@ toolchain:
|
|||
- llvm
|
||||
ram: 2048
|
||||
supported:
|
||||
- acpi
|
||||
- gpio
|
||||
- smbus
|
||||
- smp
|
||||
|
|
|
@ -6,6 +6,7 @@ toolchain:
|
|||
- zephyr
|
||||
ram: 2048
|
||||
supported:
|
||||
- acpi
|
||||
- smp
|
||||
- smbus
|
||||
- watchdog
|
||||
|
|
|
@ -7,6 +7,7 @@ toolchain:
|
|||
- xtools
|
||||
simulation: qemu
|
||||
supported:
|
||||
- acpi
|
||||
- can
|
||||
- smp
|
||||
- smbus
|
||||
|
|
|
@ -6,6 +6,7 @@ toolchain:
|
|||
- zephyr
|
||||
ram: 256
|
||||
supported:
|
||||
- acpi
|
||||
- smp
|
||||
testing:
|
||||
ignore_tags:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue