2 * Boot order test cases.
4 * Copyright (c) 2013 Red Hat Inc.
7 * Michael S. Tsirkin <mst@redhat.com>,
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include <glib/gstdio.h>
15 #include "qemu-common.h"
16 #include "hw/firmware/smbios.h"
17 #include "qemu/bitmap.h"
18 #include "acpi-utils.h"
19 #include "boot-sector.h"
21 #define MACHINE_PC "pc"
22 #define MACHINE_Q35 "q35"
24 #define ACPI_REBUILD_EXPECTED_AML "TEST_ACPI_REBUILD_AML"
33 const uint64_t ram_start
;
34 const uint64_t scan_len
;
36 uint8_t rsdp_table
[36 /* ACPI 2.0+ RSDP size */];
38 uint32_t smbios_ep_addr
;
39 struct smbios_21_entry_point smbios_ep_table
;
40 uint8_t *required_struct_types
;
41 int required_struct_types_len
;
45 static char disk
[] = "tests/acpi-test-disk-XXXXXX";
46 static const char *data_dir
= "tests/data/acpi";
48 static const char *iasl
= stringify(CONFIG_IASL
);
50 static const char *iasl
;
53 static bool compare_signature(const AcpiSdtTable
*sdt
, const char *signature
)
55 return !memcmp(sdt
->aml
, signature
, 4);
58 static void cleanup_table_descriptor(AcpiSdtTable
*table
)
61 if (table
->aml_file
&&
62 !table
->tmp_files_retain
&&
63 g_strstr_len(table
->aml_file
, -1, "aml-")) {
64 unlink(table
->aml_file
);
66 g_free(table
->aml_file
);
68 if (table
->asl_file
&&
69 !table
->tmp_files_retain
) {
70 unlink(table
->asl_file
);
72 g_free(table
->asl_file
);
75 static void free_test_data(test_data
*data
)
79 for (i
= 0; i
< data
->tables
->len
; ++i
) {
80 cleanup_table_descriptor(&g_array_index(data
->tables
, AcpiSdtTable
, i
));
83 g_array_free(data
->tables
, true);
86 static void test_acpi_rsdp_table(test_data
*data
)
88 uint8_t *rsdp_table
= data
->rsdp_table
;
90 acpi_fetch_rsdp_table(data
->qts
, data
->rsdp_addr
, rsdp_table
);
92 switch (rsdp_table
[15 /* Revision offset */]) {
93 case 0: /* ACPI 1.0 RSDP */
94 /* With rev 1, checksum is only for the first 20 bytes */
95 g_assert(!acpi_calc_checksum(rsdp_table
, 20));
97 case 2: /* ACPI 2.0+ RSDP */
98 /* With revision 2, we have 2 checksums */
99 g_assert(!acpi_calc_checksum(rsdp_table
, 20));
100 g_assert(!acpi_calc_checksum(rsdp_table
, 36));
103 g_assert_not_reached();
107 static void test_acpi_rxsdt_table(test_data
*data
)
109 const char *sig
= "RSDT";
110 AcpiSdtTable rsdt
= {};
112 int addr_off
= 16 /* RsdtAddress */;
115 if (data
->rsdp_table
[15 /* Revision offset */] != 0) {
116 addr_off
= 24 /* XsdtAddress */;
120 /* read [RX]SDT table */
121 acpi_fetch_table(data
->qts
, &rsdt
.aml
, &rsdt
.aml_len
,
122 &data
->rsdp_table
[addr_off
], entry_size
, sig
, true);
124 /* Load all tables and add to test list directly RSDT referenced tables */
125 ACPI_FOREACH_RSDT_ENTRY(rsdt
.aml
, rsdt
.aml_len
, ent
, entry_size
) {
126 AcpiSdtTable ssdt_table
= {};
128 acpi_fetch_table(data
->qts
, &ssdt_table
.aml
, &ssdt_table
.aml_len
, ent
,
129 entry_size
, NULL
, true);
130 /* Add table to ASL test tables list */
131 g_array_append_val(data
->tables
, ssdt_table
);
133 cleanup_table_descriptor(&rsdt
);
136 static void test_acpi_fadt_table(test_data
*data
)
138 /* FADT table is 1st */
139 AcpiSdtTable table
= g_array_index(data
->tables
, typeof(table
), 0);
140 uint8_t *fadt_aml
= table
.aml
;
141 uint32_t fadt_len
= table
.aml_len
;
143 int dsdt_offset
= 40 /* DSDT */;
144 int dsdt_entry_size
= 4;
146 g_assert(compare_signature(&table
, "FACP"));
148 /* Since DSDT/FACS isn't in RSDT, add them to ASL test list manually */
149 memcpy(&val
, fadt_aml
+ 112 /* Flags */, 4);
150 val
= le32_to_cpu(val
);
151 if (!(val
& 1UL << 20 /* HW_REDUCED_ACPI */)) {
152 acpi_fetch_table(data
->qts
, &table
.aml
, &table
.aml_len
,
153 fadt_aml
+ 36 /* FIRMWARE_CTRL */, 4, "FACS", false);
154 g_array_append_val(data
->tables
, table
);
157 memcpy(&val
, fadt_aml
+ dsdt_offset
, 4);
158 val
= le32_to_cpu(val
);
160 dsdt_offset
= 140 /* X_DSDT */;
163 acpi_fetch_table(data
->qts
, &table
.aml
, &table
.aml_len
,
164 fadt_aml
+ dsdt_offset
, dsdt_entry_size
, "DSDT", true);
165 g_array_append_val(data
->tables
, table
);
167 memset(fadt_aml
+ 36, 0, 4); /* sanitize FIRMWARE_CTRL ptr */
168 memset(fadt_aml
+ 40, 0, 4); /* sanitize DSDT ptr */
169 if (fadt_aml
[8 /* FADT Major Version */] >= 3) {
170 memset(fadt_aml
+ 132, 0, 8); /* sanitize X_FIRMWARE_CTRL ptr */
171 memset(fadt_aml
+ 140, 0, 8); /* sanitize X_DSDT ptr */
174 /* update checksum */
175 fadt_aml
[9 /* Checksum */] = 0;
176 fadt_aml
[9 /* Checksum */] -= acpi_calc_checksum(fadt_aml
, fadt_len
);
179 static void dump_aml_files(test_data
*data
, bool rebuild
)
182 GError
*error
= NULL
;
183 gchar
*aml_file
= NULL
;
188 for (i
= 0; i
< data
->tables
->len
; ++i
) {
189 const char *ext
= data
->variant
? data
->variant
: "";
190 sdt
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
194 aml_file
= g_strdup_printf("%s/%s/%.4s%s", data_dir
, data
->machine
,
196 fd
= g_open(aml_file
, O_WRONLY
|O_TRUNC
|O_CREAT
,
197 S_IRUSR
|S_IWUSR
|S_IRGRP
|S_IWGRP
|S_IROTH
);
203 fd
= g_file_open_tmp("aml-XXXXXX", &sdt
->aml_file
, &error
);
204 g_assert_no_error(error
);
207 ret
= qemu_write_full(fd
, sdt
->aml
, sdt
->aml_len
);
208 g_assert(ret
== sdt
->aml_len
);
216 static bool load_asl(GArray
*sdts
, AcpiSdtTable
*sdt
)
219 GError
*error
= NULL
;
220 GString
*command_line
= g_string_new(iasl
);
222 gchar
*out
, *out_err
;
226 fd
= g_file_open_tmp("asl-XXXXXX.dsl", &sdt
->asl_file
, &error
);
227 g_assert_no_error(error
);
230 /* build command line */
231 g_string_append_printf(command_line
, " -p %s ", sdt
->asl_file
);
232 if (compare_signature(sdt
, "DSDT") ||
233 compare_signature(sdt
, "SSDT")) {
234 for (i
= 0; i
< sdts
->len
; ++i
) {
235 temp
= &g_array_index(sdts
, AcpiSdtTable
, i
);
236 if (compare_signature(temp
, "DSDT") ||
237 compare_signature(temp
, "SSDT")) {
238 g_string_append_printf(command_line
, "-e %s ", temp
->aml_file
);
242 g_string_append_printf(command_line
, "-d %s", sdt
->aml_file
);
244 /* pass 'out' and 'out_err' in order to be redirected */
245 ret
= g_spawn_command_line_sync(command_line
->str
, &out
, &out_err
, NULL
, &error
);
246 g_assert_no_error(error
);
248 ret
= g_file_get_contents(sdt
->asl_file
, &sdt
->asl
,
249 &sdt
->asl_len
, &error
);
251 g_assert_no_error(error
);
252 ret
= (sdt
->asl_len
> 0);
257 g_string_free(command_line
, true);
262 #define COMMENT_END "*/"
263 #define DEF_BLOCK "DefinitionBlock ("
264 #define BLOCK_NAME_END ","
266 static GString
*normalize_asl(gchar
*asl_code
)
268 GString
*asl
= g_string_new(asl_code
);
269 gchar
*comment
, *block_name
;
271 /* strip comments (different generation days) */
272 comment
= g_strstr_len(asl
->str
, asl
->len
, COMMENT_END
);
274 comment
+= strlen(COMMENT_END
);
275 while (*comment
== '\n') {
278 asl
= g_string_erase(asl
, 0, comment
- asl
->str
);
281 /* strip def block name (it has file path in it) */
282 if (g_str_has_prefix(asl
->str
, DEF_BLOCK
)) {
283 block_name
= g_strstr_len(asl
->str
, asl
->len
, BLOCK_NAME_END
);
284 g_assert(block_name
);
285 asl
= g_string_erase(asl
, 0,
286 block_name
+ sizeof(BLOCK_NAME_END
) - asl
->str
);
292 static GArray
*load_expected_aml(test_data
*data
)
296 GError
*error
= NULL
;
300 GArray
*exp_tables
= g_array_new(false, true, sizeof(AcpiSdtTable
));
304 for (i
= 0; i
< data
->tables
->len
; ++i
) {
305 AcpiSdtTable exp_sdt
;
306 gchar
*aml_file
= NULL
;
307 const char *ext
= data
->variant
? data
->variant
: "";
309 sdt
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
311 memset(&exp_sdt
, 0, sizeof(exp_sdt
));
314 aml_file
= g_strdup_printf("%s/%s/%.4s%s", data_dir
, data
->machine
,
317 fprintf(stderr
, "Looking for expected file '%s'\n", aml_file
);
319 if (g_file_test(aml_file
, G_FILE_TEST_EXISTS
)) {
320 exp_sdt
.aml_file
= aml_file
;
321 } else if (*ext
!= '\0') {
322 /* try fallback to generic (extension less) expected file */
327 g_assert(exp_sdt
.aml_file
);
329 fprintf(stderr
, "Using expected file '%s'\n", aml_file
);
331 ret
= g_file_get_contents(aml_file
, (gchar
**)&exp_sdt
.aml
,
333 exp_sdt
.aml_len
= aml_len
;
335 g_assert_no_error(error
);
336 g_assert(exp_sdt
.aml
);
337 g_assert(exp_sdt
.aml_len
);
339 g_array_append_val(exp_tables
, exp_sdt
);
345 static bool test_acpi_find_diff_allowed(AcpiSdtTable
*sdt
)
347 const gchar
*allowed_diff_file
[] = {
348 #include "bios-tables-test-allowed-diff.h"
353 for (f
= allowed_diff_file
; *f
; ++f
) {
354 if (!g_strcmp0(sdt
->aml_file
, *f
)) {
361 /* test the list of tables in @data->tables against reference tables */
362 static void test_acpi_asl(test_data
*data
)
365 AcpiSdtTable
*sdt
, *exp_sdt
;
367 gboolean exp_err
, err
, all_tables_match
= true;
369 memset(&exp_data
, 0, sizeof(exp_data
));
370 exp_data
.tables
= load_expected_aml(data
);
371 dump_aml_files(data
, false);
372 for (i
= 0; i
< data
->tables
->len
; ++i
) {
373 GString
*asl
, *exp_asl
;
375 sdt
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
376 exp_sdt
= &g_array_index(exp_data
.tables
, AcpiSdtTable
, i
);
378 if (sdt
->aml_len
== exp_sdt
->aml_len
&&
379 !memcmp(sdt
->aml
, exp_sdt
->aml
, sdt
->aml_len
)) {
380 /* Identical table binaries: no need to disassemble. */
385 "acpi-test: Warning! %.4s binary file mismatch. "
386 "Actual [aml:%s], Expected [aml:%s].\n",
387 exp_sdt
->aml
, sdt
->aml_file
, exp_sdt
->aml_file
);
389 all_tables_match
= all_tables_match
&&
390 test_acpi_find_diff_allowed(exp_sdt
);
393 * don't try to decompile if IASL isn't present, in this case user
394 * will just 'get binary file mismatch' warnings and test failure
400 err
= load_asl(data
->tables
, sdt
);
401 asl
= normalize_asl(sdt
->asl
);
403 exp_err
= load_asl(exp_data
.tables
, exp_sdt
);
404 exp_asl
= normalize_asl(exp_sdt
->asl
);
406 /* TODO: check for warnings */
407 g_assert(!err
|| exp_err
);
409 if (g_strcmp0(asl
->str
, exp_asl
->str
)) {
412 "Warning! iasl couldn't parse the expected aml\n");
414 sdt
->tmp_files_retain
= true;
415 exp_sdt
->tmp_files_retain
= true;
417 "acpi-test: Warning! %.4s mismatch. "
418 "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
419 exp_sdt
->aml
, sdt
->asl_file
, sdt
->aml_file
,
420 exp_sdt
->asl_file
, exp_sdt
->aml_file
);
422 const char *diff_cmd
= getenv("DIFF");
424 int ret G_GNUC_UNUSED
;
425 char *diff
= g_strdup_printf("%s %s %s", diff_cmd
,
426 exp_sdt
->asl_file
, sdt
->asl_file
);
430 fprintf(stderr
, "acpi-test: Warning. not showing "
431 "difference since no diff utility is specified. "
432 "Set 'DIFF' environment variable to a preferred "
433 "diff utility and run 'make V=1 check' again to "
434 "see ASL difference.");
439 g_string_free(asl
, true);
440 g_string_free(exp_asl
, true);
442 if (!iasl
&& !all_tables_match
) {
443 fprintf(stderr
, "to see ASL diff between mismatched files install IASL,"
444 " rebuild QEMU from scratch and re-run tests with V=1"
445 " environment variable set");
447 g_assert(all_tables_match
);
449 free_test_data(&exp_data
);
452 static bool smbios_ep_table_ok(test_data
*data
)
454 struct smbios_21_entry_point
*ep_table
= &data
->smbios_ep_table
;
455 uint32_t addr
= data
->smbios_ep_addr
;
457 qtest_memread(data
->qts
, addr
, ep_table
, sizeof(*ep_table
));
458 if (memcmp(ep_table
->anchor_string
, "_SM_", 4)) {
461 if (memcmp(ep_table
->intermediate_anchor_string
, "_DMI_", 5)) {
464 if (ep_table
->structure_table_length
== 0) {
467 if (ep_table
->number_of_structures
== 0) {
470 if (acpi_calc_checksum((uint8_t *)ep_table
, sizeof *ep_table
) ||
471 acpi_calc_checksum((uint8_t *)ep_table
+ 0x10,
472 sizeof *ep_table
- 0x10)) {
478 static void test_smbios_entry_point(test_data
*data
)
482 /* find smbios entry point structure */
483 for (off
= 0xf0000; off
< 0x100000; off
+= 0x10) {
484 uint8_t sig
[] = "_SM_";
487 for (i
= 0; i
< sizeof sig
- 1; ++i
) {
488 sig
[i
] = qtest_readb(data
->qts
, off
+ i
);
491 if (!memcmp(sig
, "_SM_", sizeof sig
)) {
492 /* signature match, but is this a valid entry point? */
493 data
->smbios_ep_addr
= off
;
494 if (smbios_ep_table_ok(data
)) {
500 g_assert_cmphex(off
, <, 0x100000);
503 static inline bool smbios_single_instance(uint8_t type
)
519 static void test_smbios_structs(test_data
*data
)
521 DECLARE_BITMAP(struct_bitmap
, SMBIOS_MAX_TYPE
+1) = { 0 };
522 struct smbios_21_entry_point
*ep_table
= &data
->smbios_ep_table
;
523 uint32_t addr
= le32_to_cpu(ep_table
->structure_table_address
);
524 int i
, len
, max_len
= 0;
525 uint8_t type
, prv
, crt
;
527 /* walk the smbios tables */
528 for (i
= 0; i
< le16_to_cpu(ep_table
->number_of_structures
); i
++) {
530 /* grab type and formatted area length from struct header */
531 type
= qtest_readb(data
->qts
, addr
);
532 g_assert_cmpuint(type
, <=, SMBIOS_MAX_TYPE
);
533 len
= qtest_readb(data
->qts
, addr
+ 1);
535 /* single-instance structs must not have been encountered before */
536 if (smbios_single_instance(type
)) {
537 g_assert(!test_bit(type
, struct_bitmap
));
539 set_bit(type
, struct_bitmap
);
541 /* seek to end of unformatted string area of this struct ("\0\0") */
545 crt
= qtest_readb(data
->qts
, addr
+ len
);
549 /* keep track of max. struct size */
552 g_assert_cmpuint(max_len
, <=, ep_table
->max_structure_size
);
555 /* start of next structure */
559 /* total table length and max struct size must match entry point values */
560 g_assert_cmpuint(le16_to_cpu(ep_table
->structure_table_length
), ==,
561 addr
- le32_to_cpu(ep_table
->structure_table_address
));
562 g_assert_cmpuint(le16_to_cpu(ep_table
->max_structure_size
), ==, max_len
);
564 /* required struct types must all be present */
565 for (i
= 0; i
< data
->required_struct_types_len
; i
++) {
566 g_assert(test_bit(data
->required_struct_types
[i
], struct_bitmap
));
570 static void test_acpi_one(const char *params
, test_data
*data
)
573 bool use_uefi
= data
->uefi_fl1
&& data
->uefi_fl2
;
577 * TODO: convert '-drive if=pflash' to new syntax (see e33763be7cd3)
578 * when arm/virt boad starts to support it.
580 args
= g_strdup_printf("-machine %s,accel=%s -nodefaults -nographic "
581 "-drive if=pflash,format=raw,file=%s,readonly "
582 "-drive if=pflash,format=raw,file=%s,snapshot=on -cdrom %s %s",
583 data
->machine
, data
->accel
? data
->accel
: "kvm:tcg",
584 data
->uefi_fl1
, data
->uefi_fl2
, data
->cd
, params
? params
: "");
587 /* Disable kernel irqchip to be able to override apic irq0. */
588 args
= g_strdup_printf("-machine %s,accel=%s,kernel-irqchip=off "
589 "-net none -display none %s "
590 "-drive id=hd0,if=none,file=%s,format=raw "
591 "-device ide-hd,drive=hd0 ",
592 data
->machine
, data
->accel
? data
->accel
: "kvm:tcg",
593 params
? params
: "", disk
);
596 data
->qts
= qtest_init(args
);
599 g_assert(data
->scan_len
);
600 data
->rsdp_addr
= acpi_find_rsdp_address_uefi(data
->qts
,
601 data
->ram_start
, data
->scan_len
);
603 boot_sector_test(data
->qts
);
604 data
->rsdp_addr
= acpi_find_rsdp_address(data
->qts
);
605 g_assert_cmphex(data
->rsdp_addr
, <, 0x100000);
608 data
->tables
= g_array_new(false, true, sizeof(AcpiSdtTable
));
609 test_acpi_rsdp_table(data
);
610 test_acpi_rxsdt_table(data
);
611 test_acpi_fadt_table(data
);
613 if (getenv(ACPI_REBUILD_EXPECTED_AML
)) {
614 dump_aml_files(data
, true);
620 * TODO: make SMBIOS tests work with UEFI firmware,
621 * Bug on uefi-test-tools to provide entry point:
622 * https://bugs.launchpad.net/qemu/+bug/1821884
625 test_smbios_entry_point(data
);
626 test_smbios_structs(data
);
629 assert(!global_qtest
);
630 qtest_quit(data
->qts
);
634 static uint8_t base_required_struct_types
[] = {
635 0, 1, 3, 4, 16, 17, 19, 32, 127
638 static void test_acpi_piix4_tcg(void)
642 /* Supplying -machine accel argument overrides the default (qtest).
643 * This is to make guest actually run.
645 memset(&data
, 0, sizeof(data
));
646 data
.machine
= MACHINE_PC
;
647 data
.required_struct_types
= base_required_struct_types
;
648 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
649 test_acpi_one(NULL
, &data
);
650 free_test_data(&data
);
653 static void test_acpi_piix4_tcg_bridge(void)
657 memset(&data
, 0, sizeof(data
));
658 data
.machine
= MACHINE_PC
;
659 data
.variant
= ".bridge";
660 data
.required_struct_types
= base_required_struct_types
;
661 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
662 test_acpi_one("-device pci-bridge,chassis_nr=1", &data
);
663 free_test_data(&data
);
666 static void test_acpi_q35_tcg(void)
670 memset(&data
, 0, sizeof(data
));
671 data
.machine
= MACHINE_Q35
;
672 data
.required_struct_types
= base_required_struct_types
;
673 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
674 test_acpi_one(NULL
, &data
);
675 free_test_data(&data
);
678 static void test_acpi_q35_tcg_bridge(void)
682 memset(&data
, 0, sizeof(data
));
683 data
.machine
= MACHINE_Q35
;
684 data
.variant
= ".bridge";
685 data
.required_struct_types
= base_required_struct_types
;
686 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
687 test_acpi_one("-device pci-bridge,chassis_nr=1",
689 free_test_data(&data
);
692 static void test_acpi_q35_tcg_mmio64(void)
695 .machine
= MACHINE_Q35
,
696 .variant
= ".mmio64",
697 .required_struct_types
= base_required_struct_types
,
698 .required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
)
701 test_acpi_one("-m 128M,slots=1,maxmem=2G "
702 "-object memory-backend-ram,id=ram0,size=128M "
703 "-numa node,memdev=ram0 "
704 "-device pci-testdev,membar=2G",
706 free_test_data(&data
);
709 static void test_acpi_piix4_tcg_cphp(void)
713 memset(&data
, 0, sizeof(data
));
714 data
.machine
= MACHINE_PC
;
715 data
.variant
= ".cphp";
716 test_acpi_one("-smp 2,cores=3,sockets=2,maxcpus=6"
717 " -object memory-backend-ram,id=ram0,size=64M"
718 " -object memory-backend-ram,id=ram1,size=64M"
719 " -numa node,memdev=ram0 -numa node,memdev=ram1"
720 " -numa dist,src=0,dst=1,val=21",
722 free_test_data(&data
);
725 static void test_acpi_q35_tcg_cphp(void)
729 memset(&data
, 0, sizeof(data
));
730 data
.machine
= MACHINE_Q35
;
731 data
.variant
= ".cphp";
732 test_acpi_one(" -smp 2,cores=3,sockets=2,maxcpus=6"
733 " -object memory-backend-ram,id=ram0,size=64M"
734 " -object memory-backend-ram,id=ram1,size=64M"
735 " -numa node,memdev=ram0 -numa node,memdev=ram1"
736 " -numa dist,src=0,dst=1,val=21",
738 free_test_data(&data
);
741 static uint8_t ipmi_required_struct_types
[] = {
742 0, 1, 3, 4, 16, 17, 19, 32, 38, 127
745 static void test_acpi_q35_tcg_ipmi(void)
749 memset(&data
, 0, sizeof(data
));
750 data
.machine
= MACHINE_Q35
;
751 data
.variant
= ".ipmibt";
752 data
.required_struct_types
= ipmi_required_struct_types
;
753 data
.required_struct_types_len
= ARRAY_SIZE(ipmi_required_struct_types
);
754 test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
755 " -device isa-ipmi-bt,bmc=bmc0",
757 free_test_data(&data
);
760 static void test_acpi_piix4_tcg_ipmi(void)
764 /* Supplying -machine accel argument overrides the default (qtest).
765 * This is to make guest actually run.
767 memset(&data
, 0, sizeof(data
));
768 data
.machine
= MACHINE_PC
;
769 data
.variant
= ".ipmikcs";
770 data
.required_struct_types
= ipmi_required_struct_types
;
771 data
.required_struct_types_len
= ARRAY_SIZE(ipmi_required_struct_types
);
772 test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
773 " -device isa-ipmi-kcs,irq=0,bmc=bmc0",
775 free_test_data(&data
);
778 static void test_acpi_q35_tcg_memhp(void)
782 memset(&data
, 0, sizeof(data
));
783 data
.machine
= MACHINE_Q35
;
784 data
.variant
= ".memhp";
785 test_acpi_one(" -m 128,slots=3,maxmem=1G"
786 " -object memory-backend-ram,id=ram0,size=64M"
787 " -object memory-backend-ram,id=ram1,size=64M"
788 " -numa node,memdev=ram0 -numa node,memdev=ram1"
789 " -numa dist,src=0,dst=1,val=21",
791 free_test_data(&data
);
794 static void test_acpi_piix4_tcg_memhp(void)
798 memset(&data
, 0, sizeof(data
));
799 data
.machine
= MACHINE_PC
;
800 data
.variant
= ".memhp";
801 test_acpi_one(" -m 128,slots=3,maxmem=1G"
802 " -object memory-backend-ram,id=ram0,size=64M"
803 " -object memory-backend-ram,id=ram1,size=64M"
804 " -numa node,memdev=ram0 -numa node,memdev=ram1"
805 " -numa dist,src=0,dst=1,val=21",
807 free_test_data(&data
);
810 static void test_acpi_q35_tcg_numamem(void)
814 memset(&data
, 0, sizeof(data
));
815 data
.machine
= MACHINE_Q35
;
816 data
.variant
= ".numamem";
817 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
818 " -numa node -numa node,memdev=ram0", &data
);
819 free_test_data(&data
);
822 static void test_acpi_piix4_tcg_numamem(void)
826 memset(&data
, 0, sizeof(data
));
827 data
.machine
= MACHINE_PC
;
828 data
.variant
= ".numamem";
829 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
830 " -numa node -numa node,memdev=ram0", &data
);
831 free_test_data(&data
);
834 static void test_acpi_tcg_dimm_pxm(const char *machine
)
838 memset(&data
, 0, sizeof(data
));
839 data
.machine
= machine
;
840 data
.variant
= ".dimmpxm";
841 test_acpi_one(" -machine nvdimm=on,nvdimm-persistence=cpu"
843 " -m 128M,slots=3,maxmem=1G"
844 " -object memory-backend-ram,id=ram0,size=32M"
845 " -object memory-backend-ram,id=ram1,size=32M"
846 " -object memory-backend-ram,id=ram2,size=32M"
847 " -object memory-backend-ram,id=ram3,size=32M"
848 " -numa node,memdev=ram0,nodeid=0"
849 " -numa node,memdev=ram1,nodeid=1"
850 " -numa node,memdev=ram2,nodeid=2"
851 " -numa node,memdev=ram3,nodeid=3"
852 " -numa cpu,node-id=0,socket-id=0"
853 " -numa cpu,node-id=1,socket-id=1"
854 " -numa cpu,node-id=2,socket-id=2"
855 " -numa cpu,node-id=3,socket-id=3"
856 " -object memory-backend-ram,id=ram4,size=128M"
857 " -object memory-backend-ram,id=nvm0,size=128M"
858 " -device pc-dimm,id=dimm0,memdev=ram4,node=1"
859 " -device nvdimm,id=dimm1,memdev=nvm0,node=2",
861 free_test_data(&data
);
864 static void test_acpi_q35_tcg_dimm_pxm(void)
866 test_acpi_tcg_dimm_pxm(MACHINE_Q35
);
869 static void test_acpi_piix4_tcg_dimm_pxm(void)
871 test_acpi_tcg_dimm_pxm(MACHINE_PC
);
874 static void test_acpi_virt_tcg(void)
879 .uefi_fl1
= "pc-bios/edk2-aarch64-code.fd",
880 .uefi_fl2
= "pc-bios/edk2-arm-vars.fd",
881 .cd
= "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
882 .ram_start
= 0x40000000ULL
,
883 .scan_len
= 128ULL * 1024 * 1024,
886 test_acpi_one("-cpu cortex-a57", &data
);
887 free_test_data(&data
);
890 int main(int argc
, char *argv
[])
892 const char *arch
= qtest_get_arch();
895 g_test_init(&argc
, &argv
, NULL
);
897 if (strcmp(arch
, "i386") == 0 || strcmp(arch
, "x86_64") == 0) {
898 ret
= boot_sector_init(disk
);
903 qtest_add_func("acpi/piix4", test_acpi_piix4_tcg
);
904 qtest_add_func("acpi/piix4/bridge", test_acpi_piix4_tcg_bridge
);
905 qtest_add_func("acpi/q35", test_acpi_q35_tcg
);
906 qtest_add_func("acpi/q35/bridge", test_acpi_q35_tcg_bridge
);
907 qtest_add_func("acpi/q35/mmio64", test_acpi_q35_tcg_mmio64
);
908 qtest_add_func("acpi/piix4/ipmi", test_acpi_piix4_tcg_ipmi
);
909 qtest_add_func("acpi/q35/ipmi", test_acpi_q35_tcg_ipmi
);
910 qtest_add_func("acpi/piix4/cpuhp", test_acpi_piix4_tcg_cphp
);
911 qtest_add_func("acpi/q35/cpuhp", test_acpi_q35_tcg_cphp
);
912 qtest_add_func("acpi/piix4/memhp", test_acpi_piix4_tcg_memhp
);
913 qtest_add_func("acpi/q35/memhp", test_acpi_q35_tcg_memhp
);
914 qtest_add_func("acpi/piix4/numamem", test_acpi_piix4_tcg_numamem
);
915 qtest_add_func("acpi/q35/numamem", test_acpi_q35_tcg_numamem
);
916 qtest_add_func("acpi/piix4/dimmpxm", test_acpi_piix4_tcg_dimm_pxm
);
917 qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm
);
918 } else if (strcmp(arch
, "aarch64") == 0) {
919 qtest_add_func("acpi/virt", test_acpi_virt_tcg
);
922 boot_sector_cleanup(disk
);