ACPI ERST: bios-tables-test testcase
This change implements the test suite checks for the ERST table. Signed-off-by: Eric DeVolder <eric.devolder@oracle.com> Reviewed-by: Ani Sinha <ani@anisinha.ca> Message-Id: <1643402289-22216-10-git-send-email-eric.devolder@oracle.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
bd24550e5c
commit
646a793cc3
@ -1447,6 +1447,57 @@ static void test_acpi_piix4_tcg_acpi_hmat(void)
|
||||
test_acpi_tcg_acpi_hmat(MACHINE_PC);
|
||||
}
|
||||
|
||||
static void test_acpi_erst(const char *machine)
|
||||
{
|
||||
gchar *tmp_path = g_dir_make_tmp("qemu-test-erst.XXXXXX", NULL);
|
||||
gchar *params;
|
||||
test_data data;
|
||||
|
||||
memset(&data, 0, sizeof(data));
|
||||
data.machine = machine;
|
||||
data.variant = ".acpierst";
|
||||
params = g_strdup_printf(
|
||||
" -object memory-backend-file,id=erstnvram,"
|
||||
"mem-path=%s,size=0x10000,share=on"
|
||||
" -device acpi-erst,memdev=erstnvram", tmp_path);
|
||||
test_acpi_one(params, &data);
|
||||
free_test_data(&data);
|
||||
g_free(params);
|
||||
g_assert(g_rmdir(tmp_path) == 0);
|
||||
g_free(tmp_path);
|
||||
}
|
||||
|
||||
static void test_acpi_piix4_acpi_erst(void)
|
||||
{
|
||||
test_acpi_erst(MACHINE_PC);
|
||||
}
|
||||
|
||||
static void test_acpi_q35_acpi_erst(void)
|
||||
{
|
||||
test_acpi_erst(MACHINE_Q35);
|
||||
}
|
||||
|
||||
static void test_acpi_microvm_acpi_erst(void)
|
||||
{
|
||||
gchar *tmp_path = g_dir_make_tmp("qemu-test-erst.XXXXXX", NULL);
|
||||
gchar *params;
|
||||
test_data data;
|
||||
|
||||
test_acpi_microvm_prepare(&data);
|
||||
data.variant = ".pcie";
|
||||
data.tcg_only = true; /* need constant host-phys-bits */
|
||||
params = g_strdup_printf(" -machine microvm,"
|
||||
"acpi=on,ioapic2=off,rtc=off,pcie=on"
|
||||
" -object memory-backend-file,id=erstnvram,"
|
||||
"mem-path=%s,size=0x10000,share=on"
|
||||
" -device acpi-erst,memdev=erstnvram", tmp_path);
|
||||
test_acpi_one(params, &data);
|
||||
g_free(params);
|
||||
g_assert(g_rmdir(tmp_path) == 0);
|
||||
g_free(tmp_path);
|
||||
free_test_data(&data);
|
||||
}
|
||||
|
||||
static void test_acpi_virt_tcg(void)
|
||||
{
|
||||
test_data data = {
|
||||
@ -1672,6 +1723,8 @@ int main(int argc, char *argv[])
|
||||
qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm);
|
||||
qtest_add_func("acpi/piix4/acpihmat", test_acpi_piix4_tcg_acpi_hmat);
|
||||
qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat);
|
||||
qtest_add_func("acpi/piix4/acpierst", test_acpi_piix4_acpi_erst);
|
||||
qtest_add_func("acpi/q35/acpierst", test_acpi_q35_acpi_erst);
|
||||
qtest_add_func("acpi/microvm", test_acpi_microvm_tcg);
|
||||
qtest_add_func("acpi/microvm/usb", test_acpi_microvm_usb_tcg);
|
||||
qtest_add_func("acpi/microvm/rtc", test_acpi_microvm_rtc_tcg);
|
||||
@ -1681,6 +1734,7 @@ int main(int argc, char *argv[])
|
||||
qtest_add_func("acpi/q35/ivrs", test_acpi_q35_tcg_ivrs);
|
||||
if (strcmp(arch, "x86_64") == 0) {
|
||||
qtest_add_func("acpi/microvm/pcie", test_acpi_microvm_pcie_tcg);
|
||||
qtest_add_func("acpi/microvm/acpierst", test_acpi_microvm_acpi_erst);
|
||||
}
|
||||
}
|
||||
if (has_kvm) {
|
||||
|
Loading…
Reference in New Issue
Block a user