Skip to content

Commit

Permalink
boards: x86: Indicate ACPI support where applicable
Browse files Browse the repository at this point in the history
There are several x86 boards that support ACPI, so indicate it in their
yaml files.

Signed-off-by: Johan Hedberg <[email protected]>
  • Loading branch information
Johan Hedberg authored and fabiobaltieri committed Nov 2, 2023
1 parent a77871b commit caf299c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions boards/x86/intel_adl/intel_adl_crb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 2048
supported:
- acpi
- watchdog
- pwm
- gpio
Expand Down
1 change: 1 addition & 0 deletions boards/x86/intel_adl/intel_adl_rvp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 2048
supported:
- acpi
- smp
- watchdog
testing:
Expand Down
1 change: 1 addition & 0 deletions boards/x86/intel_ehl/intel_ehl_crb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ toolchain:
- llvm
ram: 2048
supported:
- acpi
- gpio
- smbus
- smp
Expand Down
1 change: 1 addition & 0 deletions boards/x86/intel_rpl/intel_rpl_s_crb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 2048
supported:
- acpi
- smp
- smbus
- watchdog
Expand Down
1 change: 1 addition & 0 deletions boards/x86/qemu_x86/qemu_x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ toolchain:
- xtools
simulation: qemu
supported:
- acpi
- can
- smp
- smbus
Expand Down
1 change: 1 addition & 0 deletions boards/x86/up_squared/up_squared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ toolchain:
- zephyr
ram: 256
supported:
- acpi
- smp
testing:
ignore_tags:
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/acpi/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;
Expand Down

0 comments on commit caf299c

Please sign in to comment.