diff options
author | Eric DeVolder | 2022-01-28 21:38:04 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2022-02-06 10:33:50 +0100 |
commit | f7e26ffa590ff26b4c6a2c513ad9ba1e6156f5b8 (patch) | |
tree | 549b57be5818b5e367833edbbff078c0b55901f5 /hw/acpi/meson.build | |
parent | ACPI ERST: header file for ERST (diff) | |
download | qemu-f7e26ffa590ff26b4c6a2c513ad9ba1e6156f5b8.tar.gz qemu-f7e26ffa590ff26b4c6a2c513ad9ba1e6156f5b8.tar.xz qemu-f7e26ffa590ff26b4c6a2c513ad9ba1e6156f5b8.zip |
ACPI ERST: support for ACPI ERST feature
This implements a PCI device for ACPI ERST. This implements the
non-NVRAM "mode" of operation for ERST as it is supported by
Linux and Windows.
Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
Reviewed-by: Ani Sinha <ani@anisinha.ca>
Message-Id: <1643402289-22216-6-git-send-email-eric.devolder@oracle.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/acpi/meson.build')
-rw-r--r-- | hw/acpi/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/acpi/meson.build b/hw/acpi/meson.build index adf6347bc4..f5b22983bb 100644 --- a/hw/acpi/meson.build +++ b/hw/acpi/meson.build @@ -22,6 +22,7 @@ acpi_ss.add(when: 'CONFIG_ACPI_PCIHP', if_true: files('pcihp.c')) acpi_ss.add(when: 'CONFIG_ACPI_PCIHP', if_false: files('acpi-pci-hotplug-stub.c')) acpi_ss.add(when: 'CONFIG_ACPI_VIOT', if_true: files('viot.c')) acpi_ss.add(when: 'CONFIG_ACPI_X86_ICH', if_true: files('ich9.c', 'tco.c')) +acpi_ss.add(when: 'CONFIG_ACPI_ERST', if_true: files('erst.c')) acpi_ss.add(when: 'CONFIG_IPMI', if_true: files('ipmi.c'), if_false: files('ipmi-stub.c')) acpi_ss.add(when: 'CONFIG_PC', if_false: files('acpi-x86-stub.c')) acpi_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c')) |