xref: /openbmc/qemu/tests/qtest/bios-tables-test.c (revision 30216b3e)
1 /*
2  * Boot order test cases.
3  *
4  * Copyright (c) 2013 Red Hat Inc.
5  *
6  * Authors:
7  *  Michael S. Tsirkin <mst@redhat.com>,
8  *
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.
11  */
12 
13 /*
14  * How to add or update the tests or commit changes that affect ACPI tables:
15  * Contributor:
16  * 1. add empty files for new tables, if any, under tests/data/acpi
17  * 2. list any changed files in tests/qtest/bios-tables-test-allowed-diff.h
18  * 3. commit the above *before* making changes that affect the tables
19  *
20  * Contributor or ACPI Maintainer (steps 4-7 need to be redone to resolve conflicts
21  * in binary commit created in step 6):
22  *
23  * After 1-3 above tests will pass but ignore differences with the expected files.
24  * You will also notice that tests/qtest/bios-tables-test-allowed-diff.h lists
25  * a bunch of files. This is your hint that you need to do the below:
26  * 4. Run
27  *      make check V=2
28  * this will produce a bunch of warnings about differences
29  * beween actual and expected ACPI tables. If you have IASL installed,
30  * they will also be disassembled so you can look at the disassembled
31  * output. If not - disassemble them yourself in any way you like.
32  * Look at the differences - make sure they make sense and match what the
33  * changes you are merging are supposed to do.
34  * Save the changes, preferably in form of ASL diff for the commit log in
35  * step 6.
36  *
37  * 5. From build directory, run:
38  *      $(SRC_PATH)/tests/data/acpi/rebuild-expected-aml.sh
39  * 6. Now commit any changes to the expected binary, include diff from step 4
40  *    in commit log.
41  *    Expected binary updates needs to be a separate patch from the code that
42  *    introduces changes to ACPI tables. It lets the maintainer drop
43  *    and regenerate binary updates in case of merge conflicts. Further, a code
44  *    change is easily reviewable but a binary blob is not (without doing a
45  *    disassembly).
46  * 7. Before sending patches to the list (Contributor)
47  *    or before doing a pull request (Maintainer), make sure
48  *    tests/qtest/bios-tables-test-allowed-diff.h is empty - this will ensure
49  *    following changes to ACPI tables will be noticed.
50  *
51  * The resulting patchset/pull request then looks like this:
52  * - patch 1: list changed files in tests/qtest/bios-tables-test-allowed-diff.h.
53  * - patches 2 - n: real changes, may contain multiple patches.
54  * - patch n + 1: update golden master binaries and empty
55  *   tests/qtest/bios-tables-test-allowed-diff.h
56  */
57 
58 #include "qemu/osdep.h"
59 #include <glib/gstdio.h>
60 #include "hw/firmware/smbios.h"
61 #include "qemu/bitmap.h"
62 #include "acpi-utils.h"
63 #include "boot-sector.h"
64 #include "tpm-emu.h"
65 #include "hw/acpi/tpm.h"
66 #include "qemu/cutils.h"
67 
68 #define MACHINE_PC "pc"
69 #define MACHINE_Q35 "q35"
70 
71 #define ACPI_REBUILD_EXPECTED_AML "TEST_ACPI_REBUILD_AML"
72 
73 #define OEM_ID             "TEST"
74 #define OEM_TABLE_ID       "OEM"
75 #define OEM_TEST_ARGS      "-machine x-oem-id=" OEM_ID ",x-oem-table-id=" \
76                            OEM_TABLE_ID
77 
78 typedef struct {
79     bool tcg_only;
80     const char *machine;
81     const char *machine_param;
82     const char *variant;
83     const char *uefi_fl1;
84     const char *uefi_fl2;
85     const char *blkdev;
86     const char *cd;
87     const uint64_t ram_start;
88     const uint64_t scan_len;
89     uint64_t rsdp_addr;
90     uint8_t rsdp_table[36 /* ACPI 2.0+ RSDP size */];
91     GArray *tables;
92     uint64_t smbios_ep_addr[SMBIOS_ENTRY_POINT_TYPE__MAX];
93     SmbiosEntryPoint smbios_ep_table;
94     uint16_t smbios_cpu_max_speed;
95     uint16_t smbios_cpu_curr_speed;
96     uint8_t smbios_core_count;
97     uint16_t smbios_core_count2;
98     uint8_t *required_struct_types;
99     int required_struct_types_len;
100     QTestState *qts;
101 } test_data;
102 
103 static char disk[] = "tests/acpi-test-disk-XXXXXX";
104 static const char *data_dir = "tests/data/acpi";
105 #ifdef CONFIG_IASL
106 static const char *iasl = CONFIG_IASL;
107 #else
108 static const char *iasl;
109 #endif
110 
111 static int verbosity_level;
112 
113 static bool compare_signature(const AcpiSdtTable *sdt, const char *signature)
114 {
115    return !memcmp(sdt->aml, signature, 4);
116 }
117 
118 static void cleanup_table_descriptor(AcpiSdtTable *table)
119 {
120     g_free(table->aml);
121     if (table->aml_file &&
122         !table->tmp_files_retain &&
123         g_strstr_len(table->aml_file, -1, "aml-")) {
124         unlink(table->aml_file);
125     }
126     g_free(table->aml_file);
127     g_free(table->asl);
128     if (table->asl_file &&
129         !table->tmp_files_retain) {
130         unlink(table->asl_file);
131     }
132     g_free(table->asl_file);
133 }
134 
135 static void free_test_data(test_data *data)
136 {
137     int i;
138 
139     if (!data->tables) {
140         return;
141     }
142     for (i = 0; i < data->tables->len; ++i) {
143         cleanup_table_descriptor(&g_array_index(data->tables, AcpiSdtTable, i));
144     }
145 
146     g_array_free(data->tables, true);
147 }
148 
149 static void test_acpi_rsdp_table(test_data *data)
150 {
151     uint8_t *rsdp_table = data->rsdp_table;
152 
153     acpi_fetch_rsdp_table(data->qts, data->rsdp_addr, rsdp_table);
154 
155     switch (rsdp_table[15 /* Revision offset */]) {
156     case 0: /* ACPI 1.0 RSDP */
157         /* With rev 1, checksum is only for the first 20 bytes */
158         g_assert(!acpi_calc_checksum(rsdp_table,  20));
159         break;
160     case 2: /* ACPI 2.0+ RSDP */
161         /* With revision 2, we have 2 checksums */
162         g_assert(!acpi_calc_checksum(rsdp_table, 20));
163         g_assert(!acpi_calc_checksum(rsdp_table, 36));
164         break;
165     default:
166         g_assert_not_reached();
167     }
168 }
169 
170 static void test_acpi_rxsdt_table(test_data *data)
171 {
172     const char *sig = "RSDT";
173     AcpiSdtTable rsdt = {};
174     int entry_size = 4;
175     int addr_off = 16 /* RsdtAddress */;
176     uint8_t *ent;
177 
178     if (data->rsdp_table[15 /* Revision offset */] != 0) {
179         addr_off = 24 /* XsdtAddress */;
180         entry_size = 8;
181         sig = "XSDT";
182     }
183     /* read [RX]SDT table */
184     acpi_fetch_table(data->qts, &rsdt.aml, &rsdt.aml_len,
185                      &data->rsdp_table[addr_off], entry_size, sig, true);
186 
187     /* Load all tables and add to test list directly RSDT referenced tables */
188     ACPI_FOREACH_RSDT_ENTRY(rsdt.aml, rsdt.aml_len, ent, entry_size) {
189         AcpiSdtTable ssdt_table = {};
190 
191         acpi_fetch_table(data->qts, &ssdt_table.aml, &ssdt_table.aml_len, ent,
192                          entry_size, NULL, true);
193         /* Add table to ASL test tables list */
194         g_array_append_val(data->tables, ssdt_table);
195     }
196     cleanup_table_descriptor(&rsdt);
197 }
198 
199 static void test_acpi_fadt_table(test_data *data)
200 {
201     /* FADT table is 1st */
202     AcpiSdtTable table = g_array_index(data->tables, typeof(table), 0);
203     uint8_t *fadt_aml = table.aml;
204     uint32_t fadt_len = table.aml_len;
205     uint32_t val;
206     int dsdt_offset = 40 /* DSDT */;
207     int dsdt_entry_size = 4;
208 
209     g_assert(compare_signature(&table, "FACP"));
210 
211     /* Since DSDT/FACS isn't in RSDT, add them to ASL test list manually */
212     memcpy(&val, fadt_aml + 112 /* Flags */, 4);
213     val = le32_to_cpu(val);
214     if (!(val & 1UL << 20 /* HW_REDUCED_ACPI */)) {
215         acpi_fetch_table(data->qts, &table.aml, &table.aml_len,
216                          fadt_aml + 36 /* FIRMWARE_CTRL */, 4, "FACS", false);
217         g_array_append_val(data->tables, table);
218     }
219 
220     memcpy(&val, fadt_aml + dsdt_offset, 4);
221     val = le32_to_cpu(val);
222     if (!val) {
223         dsdt_offset = 140 /* X_DSDT */;
224         dsdt_entry_size = 8;
225     }
226     acpi_fetch_table(data->qts, &table.aml, &table.aml_len,
227                      fadt_aml + dsdt_offset, dsdt_entry_size, "DSDT", true);
228     g_array_append_val(data->tables, table);
229 
230     memset(fadt_aml + 36, 0, 4); /* sanitize FIRMWARE_CTRL ptr */
231     memset(fadt_aml + 40, 0, 4); /* sanitize DSDT ptr */
232     if (fadt_aml[8 /* FADT Major Version */] >= 3) {
233         memset(fadt_aml + 132, 0, 8); /* sanitize X_FIRMWARE_CTRL ptr */
234         memset(fadt_aml + 140, 0, 8); /* sanitize X_DSDT ptr */
235     }
236 
237     /* update checksum */
238     fadt_aml[9 /* Checksum */] = 0;
239     fadt_aml[9 /* Checksum */] -= acpi_calc_checksum(fadt_aml, fadt_len);
240 }
241 
242 static void dump_aml_files(test_data *data, bool rebuild)
243 {
244     AcpiSdtTable *sdt;
245     GError *error = NULL;
246     gchar *aml_file = NULL;
247     gint fd;
248     ssize_t ret;
249     int i;
250 
251     for (i = 0; i < data->tables->len; ++i) {
252         const char *ext = data->variant ? data->variant : "";
253         sdt = &g_array_index(data->tables, AcpiSdtTable, i);
254         g_assert(sdt->aml);
255 
256         if (rebuild) {
257             aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine,
258                                        sdt->aml, ext);
259             fd = g_open(aml_file, O_WRONLY|O_TRUNC|O_CREAT,
260                         S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH);
261             if (fd < 0) {
262                 perror(aml_file);
263             }
264             g_assert(fd >= 0);
265         } else {
266             fd = g_file_open_tmp("aml-XXXXXX", &sdt->aml_file, &error);
267             g_assert_no_error(error);
268         }
269 
270         ret = qemu_write_full(fd, sdt->aml, sdt->aml_len);
271         g_assert(ret == sdt->aml_len);
272 
273         close(fd);
274 
275         g_free(aml_file);
276     }
277 }
278 
279 static bool create_tmp_asl(AcpiSdtTable *sdt)
280 {
281     GError *error = NULL;
282     gint fd;
283 
284     fd = g_file_open_tmp("asl-XXXXXX.dsl", &sdt->asl_file, &error);
285     g_assert_no_error(error);
286     close(fd);
287 
288     return false;
289 }
290 
291 static bool load_asl(GArray *sdts, AcpiSdtTable *sdt)
292 {
293     AcpiSdtTable *temp;
294     GError *error = NULL;
295     GString *command_line = g_string_new(iasl);
296     gchar *out, *out_err;
297     gboolean ret;
298     int i;
299 
300     create_tmp_asl(sdt);
301 
302     /* build command line */
303     g_string_append_printf(command_line, " -p %s ", sdt->asl_file);
304     if (compare_signature(sdt, "DSDT") ||
305         compare_signature(sdt, "SSDT")) {
306         for (i = 0; i < sdts->len; ++i) {
307             temp = &g_array_index(sdts, AcpiSdtTable, i);
308             if (compare_signature(temp, "DSDT") ||
309                 compare_signature(temp, "SSDT")) {
310                 g_string_append_printf(command_line, "-e %s ", temp->aml_file);
311             }
312         }
313     }
314     g_string_append_printf(command_line, "-d %s", sdt->aml_file);
315 
316     /* pass 'out' and 'out_err' in order to be redirected */
317     ret = g_spawn_command_line_sync(command_line->str, &out, &out_err, NULL, &error);
318     g_assert_no_error(error);
319     if (ret) {
320         ret = g_file_get_contents(sdt->asl_file, &sdt->asl,
321                                   &sdt->asl_len, &error);
322         g_assert(ret);
323         g_assert_no_error(error);
324         ret = (sdt->asl_len > 0);
325     }
326 
327     g_free(out);
328     g_free(out_err);
329     g_string_free(command_line, true);
330 
331     return !ret;
332 }
333 
334 #define COMMENT_END "*/"
335 #define DEF_BLOCK "DefinitionBlock ("
336 #define BLOCK_NAME_END ","
337 
338 static GString *normalize_asl(gchar *asl_code)
339 {
340     GString *asl = g_string_new(asl_code);
341     gchar *comment, *block_name;
342 
343     /* strip comments (different generation days) */
344     comment = g_strstr_len(asl->str, asl->len, COMMENT_END);
345     if (comment) {
346         comment += strlen(COMMENT_END);
347         while (*comment == '\n') {
348             comment++;
349         }
350         asl = g_string_erase(asl, 0, comment - asl->str);
351     }
352 
353     /* strip def block name (it has file path in it) */
354     if (g_str_has_prefix(asl->str, DEF_BLOCK)) {
355         block_name = g_strstr_len(asl->str, asl->len, BLOCK_NAME_END);
356         g_assert(block_name);
357         asl = g_string_erase(asl, 0,
358                              block_name + sizeof(BLOCK_NAME_END) - asl->str);
359     }
360 
361     return asl;
362 }
363 
364 static GArray *load_expected_aml(test_data *data)
365 {
366     int i;
367     AcpiSdtTable *sdt;
368     GError *error = NULL;
369     gboolean ret;
370     gsize aml_len;
371 
372     GArray *exp_tables = g_array_new(false, true, sizeof(AcpiSdtTable));
373     if (verbosity_level >= 2) {
374         fputc('\n', stderr);
375     }
376     for (i = 0; i < data->tables->len; ++i) {
377         AcpiSdtTable exp_sdt;
378         gchar *aml_file = NULL;
379         const char *ext = data->variant ? data->variant : "";
380 
381         sdt = &g_array_index(data->tables, AcpiSdtTable, i);
382 
383         memset(&exp_sdt, 0, sizeof(exp_sdt));
384 
385 try_again:
386         aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine,
387                                    sdt->aml, ext);
388         if (verbosity_level >= 2) {
389             fprintf(stderr, "Looking for expected file '%s'\n", aml_file);
390         }
391         if (g_file_test(aml_file, G_FILE_TEST_EXISTS)) {
392             exp_sdt.aml_file = aml_file;
393         } else if (*ext != '\0') {
394             /* try fallback to generic (extension less) expected file */
395             ext = "";
396             g_free(aml_file);
397             goto try_again;
398         }
399         g_assert(exp_sdt.aml_file);
400         if (verbosity_level >= 2) {
401             fprintf(stderr, "Using expected file '%s'\n", aml_file);
402         }
403         ret = g_file_get_contents(aml_file, (gchar **)&exp_sdt.aml,
404                                   &aml_len, &error);
405         exp_sdt.aml_len = aml_len;
406         g_assert(ret);
407         g_assert_no_error(error);
408         g_assert(exp_sdt.aml);
409         if (!exp_sdt.aml_len) {
410             fprintf(stderr, "Warning! zero length expected file '%s'\n",
411                     aml_file);
412         }
413 
414         g_array_append_val(exp_tables, exp_sdt);
415     }
416 
417     return exp_tables;
418 }
419 
420 static bool test_acpi_find_diff_allowed(AcpiSdtTable *sdt)
421 {
422     const gchar *allowed_diff_file[] = {
423 #include "bios-tables-test-allowed-diff.h"
424         NULL
425     };
426     const gchar **f;
427 
428     for (f = allowed_diff_file; *f; ++f) {
429         if (!g_strcmp0(sdt->aml_file, *f)) {
430             return true;
431         }
432     }
433     return false;
434 }
435 
436 /* test the list of tables in @data->tables against reference tables */
437 static void test_acpi_asl(test_data *data)
438 {
439     int i;
440     AcpiSdtTable *sdt, *exp_sdt;
441     test_data exp_data;
442     gboolean exp_err, err, all_tables_match = true;
443 
444     memset(&exp_data, 0, sizeof(exp_data));
445     exp_data.tables = load_expected_aml(data);
446     dump_aml_files(data, false);
447     for (i = 0; i < data->tables->len; ++i) {
448         GString *asl, *exp_asl;
449 
450         sdt = &g_array_index(data->tables, AcpiSdtTable, i);
451         exp_sdt = &g_array_index(exp_data.tables, AcpiSdtTable, i);
452 
453         if (sdt->aml_len == exp_sdt->aml_len &&
454             !memcmp(sdt->aml, exp_sdt->aml, sdt->aml_len)) {
455             /* Identical table binaries: no need to disassemble. */
456             continue;
457         }
458 
459         fprintf(stderr,
460                 "acpi-test: Warning! %.4s binary file mismatch. "
461                 "Actual [aml:%s], Expected [aml:%s].\n"
462                 "See source file tests/qtest/bios-tables-test.c "
463                 "for instructions on how to update expected files.\n",
464                 exp_sdt->aml, sdt->aml_file, exp_sdt->aml_file);
465 
466         all_tables_match = all_tables_match &&
467             test_acpi_find_diff_allowed(exp_sdt);
468 
469         /*
470          *  don't try to decompile if IASL isn't present, in this case user
471          * will just 'get binary file mismatch' warnings and test failure
472          */
473         if (!iasl) {
474             continue;
475         }
476 
477         err = load_asl(data->tables, sdt);
478         asl = normalize_asl(sdt->asl);
479 
480         /*
481          * If expected file is empty - it's likely that it was a stub just
482          * created for step 1 above: we do want to decompile the actual one.
483          */
484         if (exp_sdt->aml_len) {
485             exp_err = load_asl(exp_data.tables, exp_sdt);
486             exp_asl = normalize_asl(exp_sdt->asl);
487         } else {
488             exp_err = create_tmp_asl(exp_sdt);
489             exp_asl = g_string_new("");
490         }
491 
492         /* TODO: check for warnings */
493         g_assert(!err || exp_err || !exp_sdt->aml_len);
494 
495         if (g_strcmp0(asl->str, exp_asl->str)) {
496             sdt->tmp_files_retain = true;
497             if (exp_err) {
498                 fprintf(stderr,
499                         "Warning! iasl couldn't parse the expected aml\n");
500             } else {
501                 exp_sdt->tmp_files_retain = true;
502                 fprintf(stderr,
503                         "acpi-test: Warning! %.4s mismatch. "
504                         "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
505                         exp_sdt->aml, sdt->asl_file, sdt->aml_file,
506                         exp_sdt->asl_file, exp_sdt->aml_file);
507                 fflush(stderr);
508                 if (verbosity_level >= 1) {
509                     const char *diff_env = getenv("DIFF");
510                     const char *diff_cmd = diff_env ? diff_env : "diff -U 16";
511                     char *diff = g_strdup_printf("%s %s %s", diff_cmd,
512                                                  exp_sdt->asl_file, sdt->asl_file);
513                     int out = dup(STDOUT_FILENO);
514                     int ret G_GNUC_UNUSED;
515                     int dupret;
516 
517                     g_assert(out >= 0);
518                     dupret = dup2(STDERR_FILENO, STDOUT_FILENO);
519                     g_assert(dupret >= 0);
520                     ret = system(diff) ;
521                     dupret = dup2(out, STDOUT_FILENO);
522                     g_assert(dupret >= 0);
523                     close(out);
524                     g_free(diff);
525                 }
526             }
527         }
528         g_string_free(asl, true);
529         g_string_free(exp_asl, true);
530     }
531     if (!iasl && !all_tables_match) {
532         fprintf(stderr, "to see ASL diff between mismatched files install IASL,"
533                 " rebuild QEMU from scratch and re-run tests with V=1"
534                 " environment variable set");
535     }
536     g_assert(all_tables_match);
537 
538     free_test_data(&exp_data);
539 }
540 
541 static bool smbios_ep2_table_ok(test_data *data, uint32_t addr)
542 {
543     struct smbios_21_entry_point *ep_table = &data->smbios_ep_table.ep21;
544 
545     qtest_memread(data->qts, addr, ep_table, sizeof(*ep_table));
546     if (memcmp(ep_table->anchor_string, "_SM_", 4)) {
547         return false;
548     }
549     if (memcmp(ep_table->intermediate_anchor_string, "_DMI_", 5)) {
550         return false;
551     }
552     if (ep_table->structure_table_length == 0) {
553         return false;
554     }
555     if (ep_table->number_of_structures == 0) {
556         return false;
557     }
558     if (acpi_calc_checksum((uint8_t *)ep_table, sizeof *ep_table) ||
559         acpi_calc_checksum((uint8_t *)ep_table + 0x10,
560                            sizeof *ep_table - 0x10)) {
561         return false;
562     }
563     return true;
564 }
565 
566 static bool smbios_ep3_table_ok(test_data *data, uint64_t addr)
567 {
568     struct smbios_30_entry_point *ep_table = &data->smbios_ep_table.ep30;
569 
570     qtest_memread(data->qts, addr, ep_table, sizeof(*ep_table));
571     if (memcmp(ep_table->anchor_string, "_SM3_", 5)) {
572         return false;
573     }
574 
575     if (acpi_calc_checksum((uint8_t *)ep_table, sizeof *ep_table)) {
576         return false;
577     }
578 
579     return true;
580 }
581 
582 static SmbiosEntryPointType test_smbios_entry_point(test_data *data)
583 {
584     uint32_t off;
585 
586     /* find smbios entry point structure */
587     for (off = 0xf0000; off < 0x100000; off += 0x10) {
588         uint8_t sig[] = "_SM_", sig3[] = "_SM3_";
589         int i;
590 
591         for (i = 0; i < sizeof sig - 1; ++i) {
592             sig[i] = qtest_readb(data->qts, off + i);
593         }
594 
595         if (!memcmp(sig, "_SM_", sizeof sig)) {
596             /* signature match, but is this a valid entry point? */
597             if (smbios_ep2_table_ok(data, off)) {
598                 data->smbios_ep_addr[SMBIOS_ENTRY_POINT_TYPE_32] = off;
599             }
600         }
601 
602         for (i = 0; i < sizeof sig3 - 1; ++i) {
603             sig3[i] = qtest_readb(data->qts, off + i);
604         }
605 
606         if (!memcmp(sig3, "_SM3_", sizeof sig3)) {
607             if (smbios_ep3_table_ok(data, off)) {
608                 data->smbios_ep_addr[SMBIOS_ENTRY_POINT_TYPE_64] = off;
609                 /* found 64-bit entry point, no need to look for 32-bit one */
610                 break;
611             }
612         }
613     }
614 
615     /* found at least one entry point */
616     g_assert_true(data->smbios_ep_addr[SMBIOS_ENTRY_POINT_TYPE_32] ||
617                   data->smbios_ep_addr[SMBIOS_ENTRY_POINT_TYPE_64]);
618 
619     return data->smbios_ep_addr[SMBIOS_ENTRY_POINT_TYPE_64] ?
620            SMBIOS_ENTRY_POINT_TYPE_64 : SMBIOS_ENTRY_POINT_TYPE_32;
621 }
622 
623 static inline bool smbios_single_instance(uint8_t type)
624 {
625     switch (type) {
626     case 0:
627     case 1:
628     case 2:
629     case 3:
630     case 16:
631     case 32:
632     case 127:
633         return true;
634     default:
635         return false;
636     }
637 }
638 
639 static void smbios_cpu_test(test_data *data, uint32_t addr,
640                             SmbiosEntryPointType ep_type)
641 {
642     uint8_t core_count, expected_core_count = data->smbios_core_count;
643     uint16_t speed, expected_speed[2];
644     uint16_t core_count2, expected_core_count2 = data->smbios_core_count2;
645     int offset[2];
646     int i;
647 
648     /* Check CPU speed for backward compatibility */
649     offset[0] = offsetof(struct smbios_type_4, max_speed);
650     offset[1] = offsetof(struct smbios_type_4, current_speed);
651     expected_speed[0] = data->smbios_cpu_max_speed ? : 2000;
652     expected_speed[1] = data->smbios_cpu_curr_speed ? : 2000;
653 
654     for (i = 0; i < 2; i++) {
655         speed = qtest_readw(data->qts, addr + offset[i]);
656         g_assert_cmpuint(speed, ==, expected_speed[i]);
657     }
658 
659     core_count = qtest_readb(data->qts,
660                     addr + offsetof(struct smbios_type_4, core_count));
661 
662     if (expected_core_count) {
663         g_assert_cmpuint(core_count, ==, expected_core_count);
664     }
665 
666     if (ep_type == SMBIOS_ENTRY_POINT_TYPE_64) {
667         core_count2 = qtest_readw(data->qts,
668                           addr + offsetof(struct smbios_type_4, core_count2));
669 
670         /* Core Count has reached its limit, checking Core Count 2 */
671         if (expected_core_count == 0xFF && expected_core_count2) {
672             g_assert_cmpuint(core_count2, ==, expected_core_count2);
673         }
674     }
675 }
676 
677 static void test_smbios_structs(test_data *data, SmbiosEntryPointType ep_type)
678 {
679     DECLARE_BITMAP(struct_bitmap, SMBIOS_MAX_TYPE+1) = { 0 };
680 
681     SmbiosEntryPoint *ep_table = &data->smbios_ep_table;
682     int i = 0, len, max_len = 0;
683     uint8_t type, prv, crt;
684     uint64_t addr;
685 
686     if (ep_type == SMBIOS_ENTRY_POINT_TYPE_32) {
687         addr = le32_to_cpu(ep_table->ep21.structure_table_address);
688     } else {
689         addr = le64_to_cpu(ep_table->ep30.structure_table_address);
690     }
691 
692     /* walk the smbios tables */
693     do {
694 
695         /* grab type and formatted area length from struct header */
696         type = qtest_readb(data->qts, addr);
697         g_assert_cmpuint(type, <=, SMBIOS_MAX_TYPE);
698         len = qtest_readb(data->qts, addr + 1);
699 
700         /* single-instance structs must not have been encountered before */
701         if (smbios_single_instance(type)) {
702             g_assert(!test_bit(type, struct_bitmap));
703         }
704         set_bit(type, struct_bitmap);
705 
706         if (type == 4) {
707             smbios_cpu_test(data, addr, ep_type);
708         }
709 
710         /* seek to end of unformatted string area of this struct ("\0\0") */
711         prv = crt = 1;
712         while (prv || crt) {
713             prv = crt;
714             crt = qtest_readb(data->qts, addr + len);
715             len++;
716         }
717 
718         /* keep track of max. struct size */
719         if (ep_type == SMBIOS_ENTRY_POINT_TYPE_32 && max_len < len) {
720             max_len = len;
721             g_assert_cmpuint(max_len, <=, ep_table->ep21.max_structure_size);
722         }
723 
724         /* start of next structure */
725         addr += len;
726 
727     /*
728      * Until all structures have been scanned (ep21)
729      * or an EOF structure is found (ep30)
730      */
731     } while (ep_type == SMBIOS_ENTRY_POINT_TYPE_32 ?
732                 ++i < le16_to_cpu(ep_table->ep21.number_of_structures) :
733                 type != 127);
734 
735     if (ep_type == SMBIOS_ENTRY_POINT_TYPE_32) {
736         /*
737          * Total table length and max struct size
738          * must match entry point values
739          */
740         g_assert_cmpuint(le16_to_cpu(ep_table->ep21.structure_table_length), ==,
741             addr - le32_to_cpu(ep_table->ep21.structure_table_address));
742 
743         g_assert_cmpuint(le16_to_cpu(ep_table->ep21.max_structure_size), ==,
744             max_len);
745     }
746 
747     /* required struct types must all be present */
748     for (i = 0; i < data->required_struct_types_len; i++) {
749         g_assert(test_bit(data->required_struct_types[i], struct_bitmap));
750     }
751 }
752 
753 static void test_acpi_load_tables(test_data *data)
754 {
755     if (data->uefi_fl1 && data->uefi_fl2) { /* use UEFI */
756         g_assert(data->scan_len);
757         data->rsdp_addr = acpi_find_rsdp_address_uefi(data->qts,
758             data->ram_start, data->scan_len);
759     } else {
760         boot_sector_test(data->qts);
761         data->rsdp_addr = acpi_find_rsdp_address(data->qts);
762         g_assert_cmphex(data->rsdp_addr, <, 0x100000);
763     }
764 
765     data->tables = g_array_new(false, true, sizeof(AcpiSdtTable));
766     test_acpi_rsdp_table(data);
767     test_acpi_rxsdt_table(data);
768     test_acpi_fadt_table(data);
769 }
770 
771 static char *test_acpi_create_args(test_data *data, const char *params)
772 {
773     char *args;
774 
775     if (data->uefi_fl1 && data->uefi_fl2) { /* use UEFI */
776         /*
777          * TODO: convert '-drive if=pflash' to new syntax (see e33763be7cd3)
778          * when arm/virt boad starts to support it.
779          */
780         if (data->cd) {
781             args = g_strdup_printf("-machine %s%s %s -accel tcg "
782                 "-nodefaults -nographic "
783                 "-drive if=pflash,format=raw,file=%s,readonly=on "
784                 "-drive if=pflash,format=raw,file=%s,snapshot=on -cdrom %s %s",
785                 data->machine, data->machine_param ?: "",
786                 data->tcg_only ? "" : "-accel kvm",
787                 data->uefi_fl1, data->uefi_fl2, data->cd, params ? params : "");
788         } else {
789             args = g_strdup_printf("-machine %s%s %s -accel tcg "
790                 "-nodefaults -nographic "
791                 "-drive if=pflash,format=raw,file=%s,readonly=on "
792                 "-drive if=pflash,format=raw,file=%s,snapshot=on %s",
793                 data->machine, data->machine_param ?: "",
794                 data->tcg_only ? "" : "-accel kvm",
795                 data->uefi_fl1, data->uefi_fl2, params ? params : "");
796         }
797     } else {
798         args = g_strdup_printf("-machine %s%s %s -accel tcg "
799             "-net none %s "
800             "-drive id=hd0,if=none,file=%s,format=raw "
801             "-device %s,drive=hd0 ",
802              data->machine, data->machine_param ?: "",
803              data->tcg_only ? "" : "-accel kvm",
804              params ? params : "", disk,
805              data->blkdev ?: "ide-hd");
806     }
807     return args;
808 }
809 
810 static void test_vm_prepare(const char *params, test_data *data)
811 {
812     char *args = test_acpi_create_args(data, params);
813     data->qts = qtest_init(args);
814     g_free(args);
815 }
816 
817 static void process_acpi_tables_noexit(test_data *data)
818 {
819     test_acpi_load_tables(data);
820 
821     if (getenv(ACPI_REBUILD_EXPECTED_AML)) {
822         dump_aml_files(data, true);
823     } else {
824         test_acpi_asl(data);
825     }
826 
827     /*
828      * TODO: make SMBIOS tests work with UEFI firmware,
829      * Bug on uefi-test-tools to provide entry point:
830      * https://bugs.launchpad.net/qemu/+bug/1821884
831      */
832     if (!(data->uefi_fl1 && data->uefi_fl2)) {
833         SmbiosEntryPointType ep_type = test_smbios_entry_point(data);
834         test_smbios_structs(data, ep_type);
835     }
836 }
837 
838 static void process_acpi_tables(test_data *data)
839 {
840     process_acpi_tables_noexit(data);
841     qtest_quit(data->qts);
842 }
843 
844 static void test_acpi_one(const char *params, test_data *data)
845 {
846     test_vm_prepare(params, data);
847     process_acpi_tables(data);
848 }
849 
850 static uint8_t base_required_struct_types[] = {
851     0, 1, 3, 4, 16, 17, 19, 32, 127
852 };
853 
854 static void test_acpi_piix4_tcg(void)
855 {
856     test_data data;
857 
858     /* Supplying -machine accel argument overrides the default (qtest).
859      * This is to make guest actually run.
860      */
861     memset(&data, 0, sizeof(data));
862     data.machine = MACHINE_PC;
863     data.required_struct_types = base_required_struct_types;
864     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
865     test_acpi_one(NULL, &data);
866     free_test_data(&data);
867 }
868 
869 static void test_acpi_piix4_tcg_bridge(void)
870 {
871     test_data data;
872 
873     memset(&data, 0, sizeof(data));
874     data.machine = MACHINE_PC;
875     data.variant = ".bridge";
876     data.required_struct_types = base_required_struct_types;
877     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
878     test_vm_prepare("-S"
879         " -device pci-bridge,chassis_nr=1"
880         " -device pci-bridge,bus=pci.1,addr=1.0,chassis_nr=2"
881         " -device pci-testdev,bus=pci.0,addr=5.0"
882         " -device pci-testdev,bus=pci.1", &data);
883 
884     /* hotplugged bridges section */
885     qtest_qmp_device_add(data.qts, "pci-bridge", "hpbr",
886         "{'bus': 'pci.1', 'addr': '2.0', 'chassis_nr': 3 }");
887     qtest_qmp_device_add(data.qts, "pci-bridge", "hpbr_multifunc",
888         "{'bus': 'pci.1', 'addr': '0xf.1', 'chassis_nr': 4 }");
889     qtest_qmp_device_add(data.qts, "pci-bridge", "hpbrhost",
890         "{'bus': 'pci.0', 'addr': '4.0', 'chassis_nr': 5 }");
891     qtest_qmp_device_add(data.qts, "pci-testdev", "d1", "{'bus': 'pci.0' }");
892     qtest_qmp_device_add(data.qts, "pci-testdev", "d2", "{'bus': 'pci.1' }");
893     qtest_qmp_device_add(data.qts, "pci-testdev", "d3", "{'bus': 'hpbr', "
894                                    "'addr': '1.0' }");
895     qtest_qmp_send(data.qts, "{'execute':'cont' }");
896     qtest_qmp_eventwait(data.qts, "RESUME");
897 
898     process_acpi_tables_noexit(&data);
899     free_test_data(&data);
900 
901     /* check that reboot/reset doesn't change any ACPI tables  */
902     qtest_qmp_send(data.qts, "{'execute':'system_reset' }");
903     process_acpi_tables(&data);
904     free_test_data(&data);
905 }
906 
907 static void test_acpi_piix4_no_root_hotplug(void)
908 {
909     test_data data;
910 
911     memset(&data, 0, sizeof(data));
912     data.machine = MACHINE_PC;
913     data.variant = ".roothp";
914     data.required_struct_types = base_required_struct_types;
915     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
916     test_acpi_one("-global PIIX4_PM.acpi-root-pci-hotplug=off "
917                   "-device pci-bridge,chassis_nr=1 "
918                   "-device pci-bridge,bus=pci.1,addr=1.0,chassis_nr=2 "
919                   "-device pci-testdev,bus=pci.0 "
920                   "-device pci-testdev,bus=pci.1", &data);
921     free_test_data(&data);
922 }
923 
924 static void test_acpi_piix4_no_bridge_hotplug(void)
925 {
926     test_data data;
927 
928     memset(&data, 0, sizeof(data));
929     data.machine = MACHINE_PC;
930     data.variant = ".hpbridge";
931     data.required_struct_types = base_required_struct_types;
932     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
933     test_acpi_one("-global PIIX4_PM.acpi-pci-hotplug-with-bridge-support=off "
934                   "-device pci-bridge,chassis_nr=1 "
935                   "-device pci-bridge,bus=pci.1,addr=1.0,chassis_nr=2 "
936                   "-device pci-testdev,bus=pci.0 "
937                   "-device pci-testdev,bus=pci.1,addr=2.0", &data);
938     free_test_data(&data);
939 }
940 
941 static void test_acpi_piix4_no_acpi_pci_hotplug(void)
942 {
943     test_data data;
944 
945     memset(&data, 0, sizeof(data));
946     data.machine = MACHINE_PC;
947     data.variant = ".hpbrroot";
948     data.required_struct_types = base_required_struct_types;
949     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
950     test_acpi_one("-global PIIX4_PM.acpi-root-pci-hotplug=off "
951                   "-global PIIX4_PM.acpi-pci-hotplug-with-bridge-support=off "
952                   "-device pci-bridge,chassis_nr=1,addr=4.0 "
953                   "-device pci-testdev,bus=pci.0,addr=5.0 "
954                   "-device pci-testdev,bus=pci.0,addr=6.0,acpi-index=101 "
955                   "-device pci-testdev,bus=pci.1,addr=1.0 "
956                   "-device pci-testdev,bus=pci.1,addr=2.0,acpi-index=201 "
957                   "-device pci-bridge,id=nhpbr,chassis_nr=2,shpc=off,addr=7.0 "
958                   "-device pci-testdev,bus=nhpbr,addr=1.0,acpi-index=301 "
959                   , &data);
960     free_test_data(&data);
961 }
962 
963 static void test_acpi_q35_tcg(void)
964 {
965     test_data data;
966 
967     memset(&data, 0, sizeof(data));
968     data.machine = MACHINE_Q35;
969     data.required_struct_types = base_required_struct_types;
970     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
971     test_acpi_one(NULL, &data);
972     free_test_data(&data);
973 
974     data.smbios_cpu_max_speed = 3000;
975     data.smbios_cpu_curr_speed = 2600;
976     test_acpi_one("-smbios type=4,max-speed=3000,current-speed=2600", &data);
977     free_test_data(&data);
978 }
979 
980 static void test_acpi_q35_tcg_core_count2(void)
981 {
982     test_data data = {
983         .machine = MACHINE_Q35,
984         .variant = ".core-count2",
985         .required_struct_types = base_required_struct_types,
986         .required_struct_types_len = ARRAY_SIZE(base_required_struct_types),
987         .smbios_core_count = 0xFF,
988         .smbios_core_count2 = 275,
989     };
990 
991     test_acpi_one("-machine smbios-entry-point-type=64 -smp 275", &data);
992     free_test_data(&data);
993 }
994 
995 static void test_acpi_q35_tcg_bridge(void)
996 {
997     test_data data;
998 
999     memset(&data, 0, sizeof(data));
1000     data.machine = MACHINE_Q35;
1001     data.variant = ".bridge";
1002     data.required_struct_types = base_required_struct_types;
1003     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
1004     test_acpi_one("-device pci-bridge,chassis_nr=1,id=br1"
1005                   " -device pci-testdev,bus=pcie.0"
1006                   " -device pci-testdev,bus=br1", &data);
1007     free_test_data(&data);
1008 }
1009 
1010 static void test_acpi_q35_tcg_no_acpi_hotplug(void)
1011 {
1012     test_data data;
1013 
1014     memset(&data, 0, sizeof(data));
1015     data.machine = MACHINE_Q35;
1016     data.variant = ".noacpihp";
1017     data.required_struct_types = base_required_struct_types;
1018     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
1019     test_acpi_one("-global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off"
1020         " -device pci-testdev,bus=pcie.0,acpi-index=101,addr=3.0"
1021         " -device pci-bridge,chassis_nr=1,id=shpcbr,addr=4.0"
1022         " -device pci-testdev,bus=shpcbr,addr=1.0,acpi-index=201"
1023         " -device pci-bridge,chassis_nr=2,shpc=off,id=noshpcbr,addr=5.0"
1024         " -device pci-testdev,bus=noshpcbr,addr=1.0,acpi-index=301"
1025         " -device pcie-root-port,id=hprp,port=0x0,chassis=1,addr=6.0"
1026         " -device pci-testdev,bus=hprp,acpi-index=401"
1027         " -device pcie-root-port,id=nohprp,port=0x0,chassis=2,hotplug=off,"
1028                                  "addr=7.0"
1029         " -device pci-testdev,bus=nohprp,acpi-index=501"
1030         " -device pcie-root-port,id=nohprpint,port=0x0,chassis=3,hotplug=off,"
1031                                  "addr=8.0"
1032         " -device pcie-root-port,id=hprp2,port=0x0,chassis=4,bus=nohprpint,"
1033                                  "addr=9.0"
1034         " -device pci-testdev,bus=hprp2,acpi-index=601"
1035         , &data);
1036     free_test_data(&data);
1037 }
1038 
1039 static void test_acpi_q35_multif_bridge(void)
1040 {
1041     test_data data = {
1042         .machine = MACHINE_Q35,
1043         .variant = ".multi-bridge",
1044     };
1045     test_vm_prepare("-S"
1046         " -device virtio-balloon,id=balloon0,addr=0x4.0x2"
1047         " -device pcie-root-port,id=rp0,multifunction=on,"
1048                   "port=0x0,chassis=1,addr=0x2"
1049         " -device pcie-root-port,id=rp1,port=0x1,chassis=2,addr=0x3.0x1"
1050         " -device pcie-root-port,id=rp2,port=0x0,chassis=3,bus=rp1,addr=0.0"
1051         " -device pci-bridge,bus=rp2,chassis_nr=4,id=br1"
1052         " -device pcie-root-port,id=rphptgt1,port=0x0,chassis=5,addr=2.1"
1053         " -device pcie-root-port,id=rphptgt2,port=0x0,chassis=6,addr=2.2"
1054         " -device pcie-root-port,id=rphptgt3,port=0x0,chassis=7,addr=2.3"
1055         " -device pci-testdev,bus=pcie.0,addr=2.4"
1056         " -device pci-testdev,bus=pcie.0,addr=5.0"
1057         " -device pci-testdev,bus=rp0,addr=0.0"
1058         " -device pci-testdev,bus=br1"
1059         " -device pcie-root-port,id=rpnohp,chassis=8,addr=0xA.0,hotplug=off"
1060         " -device pcie-root-port,id=rp3,chassis=9,bus=rpnohp"
1061         , &data);
1062 
1063     /* hotplugged bridges section */
1064     qtest_qmp_device_add(data.qts, "pci-bridge", "hpbr1",
1065         "{'bus': 'br1', 'addr': '6.0', 'chassis_nr': 128 }");
1066     qtest_qmp_device_add(data.qts, "pci-bridge", "hpbr2-multiif",
1067         "{ 'bus': 'br1', 'addr': '2.2', 'chassis_nr': 129 }");
1068     qtest_qmp_device_add(data.qts, "pcie-pci-bridge", "hpbr3",
1069         "{'bus': 'rphptgt1', 'addr': '0.0' }");
1070     qtest_qmp_device_add(data.qts, "pcie-root-port", "hprp",
1071         "{'bus': 'rphptgt2', 'addr': '0.0' }");
1072     qtest_qmp_device_add(data.qts, "pci-testdev", "hpnic",
1073         "{'bus': 'rphptgt3', 'addr': '0.0' }");
1074     qtest_qmp_send(data.qts, "{'execute':'cont' }");
1075     qtest_qmp_eventwait(data.qts, "RESUME");
1076 
1077     process_acpi_tables_noexit(&data);
1078     free_test_data(&data);
1079 
1080     /* check that reboot/reset doesn't change any ACPI tables  */
1081     qtest_qmp_send(data.qts, "{'execute':'system_reset' }");
1082     process_acpi_tables(&data);
1083     free_test_data(&data);
1084 }
1085 
1086 static void test_acpi_q35_tcg_mmio64(void)
1087 {
1088     test_data data = {
1089         .machine = MACHINE_Q35,
1090         .variant = ".mmio64",
1091         .required_struct_types = base_required_struct_types,
1092         .required_struct_types_len = ARRAY_SIZE(base_required_struct_types)
1093     };
1094 
1095     test_acpi_one("-m 128M,slots=1,maxmem=2G "
1096                   "-object memory-backend-ram,id=ram0,size=128M "
1097                   "-numa node,memdev=ram0 "
1098                   "-device pci-testdev,membar=2G",
1099                   &data);
1100     free_test_data(&data);
1101 }
1102 
1103 static void test_acpi_piix4_tcg_cphp(void)
1104 {
1105     test_data data;
1106 
1107     memset(&data, 0, sizeof(data));
1108     data.machine = MACHINE_PC;
1109     data.variant = ".cphp";
1110     test_acpi_one("-smp 2,cores=3,sockets=2,maxcpus=6"
1111                   " -object memory-backend-ram,id=ram0,size=64M"
1112                   " -object memory-backend-ram,id=ram1,size=64M"
1113                   " -numa node,memdev=ram0 -numa node,memdev=ram1"
1114                   " -numa dist,src=0,dst=1,val=21",
1115                   &data);
1116     free_test_data(&data);
1117 }
1118 
1119 static void test_acpi_q35_tcg_cphp(void)
1120 {
1121     test_data data;
1122 
1123     memset(&data, 0, sizeof(data));
1124     data.machine = MACHINE_Q35;
1125     data.variant = ".cphp";
1126     test_acpi_one(" -smp 2,cores=3,sockets=2,maxcpus=6"
1127                   " -object memory-backend-ram,id=ram0,size=64M"
1128                   " -object memory-backend-ram,id=ram1,size=64M"
1129                   " -numa node,memdev=ram0 -numa node,memdev=ram1"
1130                   " -numa dist,src=0,dst=1,val=21",
1131                   &data);
1132     free_test_data(&data);
1133 }
1134 
1135 static uint8_t ipmi_required_struct_types[] = {
1136     0, 1, 3, 4, 16, 17, 19, 32, 38, 127
1137 };
1138 
1139 static void test_acpi_q35_tcg_ipmi(void)
1140 {
1141     test_data data;
1142 
1143     memset(&data, 0, sizeof(data));
1144     data.machine = MACHINE_Q35;
1145     data.variant = ".ipmibt";
1146     data.required_struct_types = ipmi_required_struct_types;
1147     data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types);
1148     test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
1149                   " -device isa-ipmi-bt,bmc=bmc0",
1150                   &data);
1151     free_test_data(&data);
1152 }
1153 
1154 static void test_acpi_q35_tcg_smbus_ipmi(void)
1155 {
1156     test_data data;
1157 
1158     memset(&data, 0, sizeof(data));
1159     data.machine = MACHINE_Q35;
1160     data.variant = ".ipmismbus";
1161     data.required_struct_types = ipmi_required_struct_types;
1162     data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types);
1163     test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
1164                   " -device smbus-ipmi,bmc=bmc0",
1165                   &data);
1166     free_test_data(&data);
1167 }
1168 
1169 static void test_acpi_piix4_tcg_ipmi(void)
1170 {
1171     test_data data;
1172 
1173     /* Supplying -machine accel argument overrides the default (qtest).
1174      * This is to make guest actually run.
1175      */
1176     memset(&data, 0, sizeof(data));
1177     data.machine = MACHINE_PC;
1178     data.variant = ".ipmikcs";
1179     data.required_struct_types = ipmi_required_struct_types;
1180     data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types);
1181     test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
1182                   " -device isa-ipmi-kcs,irq=0,bmc=bmc0",
1183                   &data);
1184     free_test_data(&data);
1185 }
1186 
1187 static void test_acpi_q35_tcg_memhp(void)
1188 {
1189     test_data data;
1190 
1191     memset(&data, 0, sizeof(data));
1192     data.machine = MACHINE_Q35;
1193     data.variant = ".memhp";
1194     test_acpi_one(" -m 128,slots=3,maxmem=1G"
1195                   " -object memory-backend-ram,id=ram0,size=64M"
1196                   " -object memory-backend-ram,id=ram1,size=64M"
1197                   " -numa node,memdev=ram0 -numa node,memdev=ram1"
1198                   " -numa dist,src=0,dst=1,val=21",
1199                   &data);
1200     free_test_data(&data);
1201 }
1202 
1203 static void test_acpi_piix4_tcg_memhp(void)
1204 {
1205     test_data data;
1206 
1207     memset(&data, 0, sizeof(data));
1208     data.machine = MACHINE_PC;
1209     data.variant = ".memhp";
1210     test_acpi_one(" -m 128,slots=3,maxmem=1G"
1211                   " -object memory-backend-ram,id=ram0,size=64M"
1212                   " -object memory-backend-ram,id=ram1,size=64M"
1213                   " -numa node,memdev=ram0 -numa node,memdev=ram1"
1214                   " -numa dist,src=0,dst=1,val=21",
1215                   &data);
1216     free_test_data(&data);
1217 }
1218 
1219 static void test_acpi_piix4_tcg_nosmm(void)
1220 {
1221     test_data data;
1222 
1223     memset(&data, 0, sizeof(data));
1224     data.machine = MACHINE_PC;
1225     data.variant = ".nosmm";
1226     test_acpi_one("-machine smm=off", &data);
1227     free_test_data(&data);
1228 }
1229 
1230 static void test_acpi_piix4_tcg_smm_compat(void)
1231 {
1232     test_data data;
1233 
1234     memset(&data, 0, sizeof(data));
1235     data.machine = MACHINE_PC;
1236     data.variant = ".smm-compat";
1237     test_acpi_one("-global PIIX4_PM.smm-compat=on", &data);
1238     free_test_data(&data);
1239 }
1240 
1241 static void test_acpi_piix4_tcg_smm_compat_nosmm(void)
1242 {
1243     test_data data;
1244 
1245     memset(&data, 0, sizeof(data));
1246     data.machine = MACHINE_PC;
1247     data.variant = ".smm-compat-nosmm";
1248     test_acpi_one("-global PIIX4_PM.smm-compat=on -machine smm=off", &data);
1249     free_test_data(&data);
1250 }
1251 
1252 static void test_acpi_piix4_tcg_nohpet(void)
1253 {
1254     test_data data;
1255 
1256     memset(&data, 0, sizeof(data));
1257     data.machine = MACHINE_PC;
1258     data.machine_param = ",hpet=off";
1259     data.variant = ".nohpet";
1260     test_acpi_one(NULL, &data);
1261     free_test_data(&data);
1262 }
1263 
1264 static void test_acpi_q35_tcg_numamem(void)
1265 {
1266     test_data data;
1267 
1268     memset(&data, 0, sizeof(data));
1269     data.machine = MACHINE_Q35;
1270     data.variant = ".numamem";
1271     test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
1272                   " -numa node -numa node,memdev=ram0", &data);
1273     free_test_data(&data);
1274 }
1275 
1276 static void test_acpi_q35_kvm_xapic(void)
1277 {
1278     test_data data;
1279 
1280     memset(&data, 0, sizeof(data));
1281     data.machine = MACHINE_Q35;
1282     data.variant = ".xapic";
1283     test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
1284                   " -numa node -numa node,memdev=ram0"
1285                   " -machine kernel-irqchip=on -smp 1,maxcpus=288", &data);
1286     free_test_data(&data);
1287 }
1288 
1289 static void test_acpi_q35_tcg_nosmm(void)
1290 {
1291     test_data data;
1292 
1293     memset(&data, 0, sizeof(data));
1294     data.machine = MACHINE_Q35;
1295     data.variant = ".nosmm";
1296     test_acpi_one("-machine smm=off", &data);
1297     free_test_data(&data);
1298 }
1299 
1300 static void test_acpi_q35_tcg_smm_compat(void)
1301 {
1302     test_data data;
1303 
1304     memset(&data, 0, sizeof(data));
1305     data.machine = MACHINE_Q35;
1306     data.variant = ".smm-compat";
1307     test_acpi_one("-global ICH9-LPC.smm-compat=on", &data);
1308     free_test_data(&data);
1309 }
1310 
1311 static void test_acpi_q35_tcg_smm_compat_nosmm(void)
1312 {
1313     test_data data;
1314 
1315     memset(&data, 0, sizeof(data));
1316     data.machine = MACHINE_Q35;
1317     data.variant = ".smm-compat-nosmm";
1318     test_acpi_one("-global ICH9-LPC.smm-compat=on -machine smm=off", &data);
1319     free_test_data(&data);
1320 }
1321 
1322 static void test_acpi_q35_tcg_nohpet(void)
1323 {
1324     test_data data;
1325 
1326     memset(&data, 0, sizeof(data));
1327     data.machine = MACHINE_Q35;
1328     data.machine_param = ",hpet=off";
1329     data.variant = ".nohpet";
1330     test_acpi_one(NULL, &data);
1331     free_test_data(&data);
1332 }
1333 
1334 static void test_acpi_q35_kvm_dmar(void)
1335 {
1336     test_data data;
1337 
1338     memset(&data, 0, sizeof(data));
1339     data.machine = MACHINE_Q35;
1340     data.variant = ".dmar";
1341     test_acpi_one("-machine kernel-irqchip=split -accel kvm"
1342                   " -device intel-iommu,intremap=on,device-iotlb=on", &data);
1343     free_test_data(&data);
1344 }
1345 
1346 static void test_acpi_q35_tcg_ivrs(void)
1347 {
1348     test_data data;
1349 
1350     memset(&data, 0, sizeof(data));
1351     data.machine = MACHINE_Q35;
1352     data.variant = ".ivrs";
1353     data.tcg_only = true,
1354     test_acpi_one(" -device amd-iommu", &data);
1355     free_test_data(&data);
1356 }
1357 
1358 static void test_acpi_piix4_tcg_numamem(void)
1359 {
1360     test_data data;
1361 
1362     memset(&data, 0, sizeof(data));
1363     data.machine = MACHINE_PC;
1364     data.variant = ".numamem";
1365     test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
1366                   " -numa node -numa node,memdev=ram0", &data);
1367     free_test_data(&data);
1368 }
1369 
1370 uint64_t tpm_tis_base_addr;
1371 
1372 static void test_acpi_tcg_tpm(const char *machine, const char *tpm_if,
1373                               uint64_t base, enum TPMVersion tpm_version)
1374 {
1375     gchar *tmp_dir_name = g_strdup_printf("qemu-test_acpi_%s_tcg_%s.XXXXXX",
1376                                           machine, tpm_if);
1377     char *tmp_path = g_dir_make_tmp(tmp_dir_name, NULL);
1378     TPMTestState test;
1379     test_data data;
1380     GThread *thread;
1381     const char *suffix = tpm_version == TPM_VERSION_2_0 ? "tpm2" : "tpm12";
1382     char *args, *variant = g_strdup_printf(".%s.%s", tpm_if, suffix);
1383 
1384     tpm_tis_base_addr = base;
1385 
1386     module_call_init(MODULE_INIT_QOM);
1387 
1388     test.addr = g_new0(SocketAddress, 1);
1389     test.addr->type = SOCKET_ADDRESS_TYPE_UNIX;
1390     test.addr->u.q_unix.path = g_build_filename(tmp_path, "sock", NULL);
1391     g_mutex_init(&test.data_mutex);
1392     g_cond_init(&test.data_cond);
1393     test.data_cond_signal = false;
1394     test.tpm_version = tpm_version;
1395 
1396     thread = g_thread_new(NULL, tpm_emu_ctrl_thread, &test);
1397     tpm_emu_test_wait_cond(&test);
1398 
1399     memset(&data, 0, sizeof(data));
1400     data.machine = machine;
1401     data.variant = variant;
1402 
1403     args = g_strdup_printf(
1404         " -chardev socket,id=chr,path=%s"
1405         " -tpmdev emulator,id=dev,chardev=chr"
1406         " -device tpm-%s,tpmdev=dev",
1407         test.addr->u.q_unix.path, tpm_if);
1408 
1409     test_acpi_one(args, &data);
1410 
1411     g_thread_join(thread);
1412     g_unlink(test.addr->u.q_unix.path);
1413     qapi_free_SocketAddress(test.addr);
1414     g_rmdir(tmp_path);
1415     g_free(variant);
1416     g_free(tmp_path);
1417     g_free(tmp_dir_name);
1418     g_free(args);
1419     free_test_data(&data);
1420 }
1421 
1422 static void test_acpi_q35_tcg_tpm2_tis(void)
1423 {
1424     test_acpi_tcg_tpm("q35", "tis", 0xFED40000, TPM_VERSION_2_0);
1425 }
1426 
1427 static void test_acpi_q35_tcg_tpm12_tis(void)
1428 {
1429     test_acpi_tcg_tpm("q35", "tis", 0xFED40000, TPM_VERSION_1_2);
1430 }
1431 
1432 static void test_acpi_tcg_dimm_pxm(const char *machine)
1433 {
1434     test_data data;
1435 
1436     memset(&data, 0, sizeof(data));
1437     data.machine = machine;
1438     data.variant = ".dimmpxm";
1439     test_acpi_one(" -machine nvdimm=on,nvdimm-persistence=cpu"
1440                   " -smp 4,sockets=4"
1441                   " -m 128M,slots=3,maxmem=1G"
1442                   " -object memory-backend-ram,id=ram0,size=32M"
1443                   " -object memory-backend-ram,id=ram1,size=32M"
1444                   " -object memory-backend-ram,id=ram2,size=32M"
1445                   " -object memory-backend-ram,id=ram3,size=32M"
1446                   " -numa node,memdev=ram0,nodeid=0"
1447                   " -numa node,memdev=ram1,nodeid=1"
1448                   " -numa node,memdev=ram2,nodeid=2"
1449                   " -numa node,memdev=ram3,nodeid=3"
1450                   " -numa cpu,node-id=0,socket-id=0"
1451                   " -numa cpu,node-id=1,socket-id=1"
1452                   " -numa cpu,node-id=2,socket-id=2"
1453                   " -numa cpu,node-id=3,socket-id=3"
1454                   " -object memory-backend-ram,id=ram4,size=128M"
1455                   " -object memory-backend-ram,id=nvm0,size=128M"
1456                   " -device pc-dimm,id=dimm0,memdev=ram4,node=1"
1457                   " -device nvdimm,id=dimm1,memdev=nvm0,node=2",
1458                   &data);
1459     free_test_data(&data);
1460 }
1461 
1462 static void test_acpi_q35_tcg_dimm_pxm(void)
1463 {
1464     test_acpi_tcg_dimm_pxm(MACHINE_Q35);
1465 }
1466 
1467 static void test_acpi_piix4_tcg_dimm_pxm(void)
1468 {
1469     test_acpi_tcg_dimm_pxm(MACHINE_PC);
1470 }
1471 
1472 static void test_acpi_virt_tcg_memhp(void)
1473 {
1474     test_data data = {
1475         .machine = "virt",
1476         .tcg_only = true,
1477         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1478         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1479         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1480         .ram_start = 0x40000000ULL,
1481         .scan_len = 256ULL * 1024 * 1024,
1482     };
1483 
1484     data.variant = ".memhp";
1485     test_acpi_one(" -machine nvdimm=on"
1486                   " -cpu cortex-a57"
1487                   " -m 256M,slots=3,maxmem=1G"
1488                   " -object memory-backend-ram,id=ram0,size=128M"
1489                   " -object memory-backend-ram,id=ram1,size=128M"
1490                   " -numa node,memdev=ram0 -numa node,memdev=ram1"
1491                   " -numa dist,src=0,dst=1,val=21"
1492                   " -object memory-backend-ram,id=ram2,size=128M"
1493                   " -object memory-backend-ram,id=nvm0,size=128M"
1494                   " -device pc-dimm,id=dimm0,memdev=ram2,node=0"
1495                   " -device nvdimm,id=dimm1,memdev=nvm0,node=1",
1496                   &data);
1497 
1498     free_test_data(&data);
1499 
1500 }
1501 
1502 static void test_acpi_microvm_prepare(test_data *data)
1503 {
1504     memset(data, 0, sizeof(*data));
1505     data->machine = "microvm";
1506     data->required_struct_types = NULL; /* no smbios */
1507     data->required_struct_types_len = 0;
1508     data->blkdev = "virtio-blk-device";
1509 }
1510 
1511 static void test_acpi_microvm_tcg(void)
1512 {
1513     test_data data;
1514 
1515     test_acpi_microvm_prepare(&data);
1516     test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,rtc=off",
1517                   &data);
1518     free_test_data(&data);
1519 }
1520 
1521 static void test_acpi_microvm_usb_tcg(void)
1522 {
1523     test_data data;
1524 
1525     test_acpi_microvm_prepare(&data);
1526     data.variant = ".usb";
1527     test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,usb=on,rtc=off",
1528                   &data);
1529     free_test_data(&data);
1530 }
1531 
1532 static void test_acpi_microvm_rtc_tcg(void)
1533 {
1534     test_data data;
1535 
1536     test_acpi_microvm_prepare(&data);
1537     data.variant = ".rtc";
1538     test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,rtc=on",
1539                   &data);
1540     free_test_data(&data);
1541 }
1542 
1543 static void test_acpi_microvm_pcie_tcg(void)
1544 {
1545     test_data data;
1546 
1547     test_acpi_microvm_prepare(&data);
1548     data.variant = ".pcie";
1549     data.tcg_only = true; /* need constant host-phys-bits */
1550     test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,rtc=off,pcie=on",
1551                   &data);
1552     free_test_data(&data);
1553 }
1554 
1555 static void test_acpi_microvm_ioapic2_tcg(void)
1556 {
1557     test_data data;
1558 
1559     test_acpi_microvm_prepare(&data);
1560     data.variant = ".ioapic2";
1561     test_acpi_one(" -machine microvm,acpi=on,ioapic2=on,rtc=off",
1562                   &data);
1563     free_test_data(&data);
1564 }
1565 
1566 static void test_acpi_virt_tcg_numamem(void)
1567 {
1568     test_data data = {
1569         .machine = "virt",
1570         .tcg_only = true,
1571         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1572         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1573         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1574         .ram_start = 0x40000000ULL,
1575         .scan_len = 128ULL * 1024 * 1024,
1576     };
1577 
1578     data.variant = ".numamem";
1579     test_acpi_one(" -cpu cortex-a57"
1580                   " -object memory-backend-ram,id=ram0,size=128M"
1581                   " -numa node,memdev=ram0",
1582                   &data);
1583 
1584     free_test_data(&data);
1585 
1586 }
1587 
1588 static void test_acpi_virt_tcg_pxb(void)
1589 {
1590     test_data data = {
1591         .machine = "virt",
1592         .tcg_only = true,
1593         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1594         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1595         .ram_start = 0x40000000ULL,
1596         .scan_len = 128ULL * 1024 * 1024,
1597     };
1598     /*
1599      * While using -cdrom, the cdrom would auto plugged into pxb-pcie,
1600      * the reason is the bus of pxb-pcie is also root bus, it would lead
1601      * to the error only PCI/PCIE bridge could plug onto pxb.
1602      * Therefore,thr cdrom is defined and plugged onto the scsi controller
1603      * to solve the conflicts.
1604      */
1605     data.variant = ".pxb";
1606     test_acpi_one(" -device pcie-root-port,chassis=1,id=pci.1"
1607                   " -device virtio-scsi-pci,id=scsi0,bus=pci.1"
1608                   " -drive file="
1609                   "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2,"
1610                   "if=none,media=cdrom,id=drive-scsi0-0-0-1,readonly=on"
1611                   " -device scsi-cd,bus=scsi0.0,scsi-id=0,"
1612                   "drive=drive-scsi0-0-0-1,id=scsi0-0-0-1,bootindex=1"
1613                   " -cpu cortex-a57"
1614                   " -device pxb-pcie,bus_nr=128",
1615                   &data);
1616 
1617     free_test_data(&data);
1618 }
1619 
1620 static void test_acpi_tcg_acpi_hmat(const char *machine)
1621 {
1622     test_data data;
1623 
1624     memset(&data, 0, sizeof(data));
1625     data.machine = machine;
1626     data.variant = ".acpihmat";
1627     test_acpi_one(" -machine hmat=on"
1628                   " -smp 2,sockets=2"
1629                   " -m 128M,slots=2,maxmem=1G"
1630                   " -object memory-backend-ram,size=64M,id=m0"
1631                   " -object memory-backend-ram,size=64M,id=m1"
1632                   " -numa node,nodeid=0,memdev=m0"
1633                   " -numa node,nodeid=1,memdev=m1,initiator=0"
1634                   " -numa cpu,node-id=0,socket-id=0"
1635                   " -numa cpu,node-id=0,socket-id=1"
1636                   " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1637                   "data-type=access-latency,latency=1"
1638                   " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1639                   "data-type=access-bandwidth,bandwidth=65534M"
1640                   " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1641                   "data-type=access-latency,latency=65534"
1642                   " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1643                   "data-type=access-bandwidth,bandwidth=32767M"
1644                   " -numa hmat-cache,node-id=0,size=10K,level=1,"
1645                   "associativity=direct,policy=write-back,line=8"
1646                   " -numa hmat-cache,node-id=1,size=10K,level=1,"
1647                   "associativity=direct,policy=write-back,line=8",
1648                   &data);
1649     free_test_data(&data);
1650 }
1651 
1652 static void test_acpi_q35_tcg_acpi_hmat(void)
1653 {
1654     test_acpi_tcg_acpi_hmat(MACHINE_Q35);
1655 }
1656 
1657 static void test_acpi_piix4_tcg_acpi_hmat(void)
1658 {
1659     test_acpi_tcg_acpi_hmat(MACHINE_PC);
1660 }
1661 
1662 static void test_acpi_virt_tcg_acpi_hmat(void)
1663 {
1664     test_data data = {
1665         .machine = "virt",
1666         .tcg_only = true,
1667         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1668         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1669         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1670         .ram_start = 0x40000000ULL,
1671         .scan_len = 128ULL * 1024 * 1024,
1672     };
1673 
1674     data.variant = ".acpihmatvirt";
1675 
1676     test_acpi_one(" -machine hmat=on"
1677                   " -cpu cortex-a57"
1678                   " -smp 4,sockets=2"
1679                   " -m 256M"
1680                   " -object memory-backend-ram,size=64M,id=ram0"
1681                   " -object memory-backend-ram,size=64M,id=ram1"
1682                   " -object memory-backend-ram,size=128M,id=ram2"
1683                   " -numa node,nodeid=0,memdev=ram0"
1684                   " -numa node,nodeid=1,memdev=ram1"
1685                   " -numa node,nodeid=2,memdev=ram2"
1686                   " -numa cpu,node-id=0,socket-id=0"
1687                   " -numa cpu,node-id=0,socket-id=0"
1688                   " -numa cpu,node-id=1,socket-id=1"
1689                   " -numa cpu,node-id=1,socket-id=1"
1690                   " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1691                   "data-type=access-latency,latency=10"
1692                   " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1693                   "data-type=access-bandwidth,bandwidth=10485760"
1694                   " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1695                   "data-type=access-latency,latency=20"
1696                   " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1697                   "data-type=access-bandwidth,bandwidth=5242880"
1698                   " -numa hmat-lb,initiator=0,target=2,hierarchy=memory,"
1699                   "data-type=access-latency,latency=30"
1700                   " -numa hmat-lb,initiator=0,target=2,hierarchy=memory,"
1701                   "data-type=access-bandwidth,bandwidth=1048576"
1702                   " -numa hmat-lb,initiator=1,target=0,hierarchy=memory,"
1703                   "data-type=access-latency,latency=20"
1704                   " -numa hmat-lb,initiator=1,target=0,hierarchy=memory,"
1705                   "data-type=access-bandwidth,bandwidth=5242880"
1706                   " -numa hmat-lb,initiator=1,target=1,hierarchy=memory,"
1707                   "data-type=access-latency,latency=10"
1708                   " -numa hmat-lb,initiator=1,target=1,hierarchy=memory,"
1709                   "data-type=access-bandwidth,bandwidth=10485760"
1710                   " -numa hmat-lb,initiator=1,target=2,hierarchy=memory,"
1711                   "data-type=access-latency,latency=30"
1712                   " -numa hmat-lb,initiator=1,target=2,hierarchy=memory,"
1713                   "data-type=access-bandwidth,bandwidth=1048576",
1714                   &data);
1715 
1716     free_test_data(&data);
1717 }
1718 
1719 static void test_acpi_q35_tcg_acpi_hmat_noinitiator(void)
1720 {
1721     test_data data;
1722 
1723     memset(&data, 0, sizeof(data));
1724     data.machine = MACHINE_Q35;
1725     data.variant = ".acpihmat-noinitiator";
1726     test_acpi_one(" -machine hmat=on"
1727                   " -smp 4,sockets=2"
1728                   " -m 128M"
1729                   " -object memory-backend-ram,size=32M,id=ram0"
1730                   " -object memory-backend-ram,size=32M,id=ram1"
1731                   " -object memory-backend-ram,size=64M,id=ram2"
1732                   " -numa node,nodeid=0,memdev=ram0"
1733                   " -numa node,nodeid=1,memdev=ram1"
1734                   " -numa node,nodeid=2,memdev=ram2"
1735                   " -numa cpu,node-id=0,socket-id=0"
1736                   " -numa cpu,node-id=0,socket-id=0"
1737                   " -numa cpu,node-id=1,socket-id=1"
1738                   " -numa cpu,node-id=1,socket-id=1"
1739                   " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1740                   "data-type=access-latency,latency=10"
1741                   " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1742                   "data-type=access-bandwidth,bandwidth=10485760"
1743                   " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1744                   "data-type=access-latency,latency=20"
1745                   " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1746                   "data-type=access-bandwidth,bandwidth=5242880"
1747                   " -numa hmat-lb,initiator=0,target=2,hierarchy=memory,"
1748                   "data-type=access-latency,latency=30"
1749                   " -numa hmat-lb,initiator=0,target=2,hierarchy=memory,"
1750                   "data-type=access-bandwidth,bandwidth=1048576"
1751                   " -numa hmat-lb,initiator=1,target=0,hierarchy=memory,"
1752                   "data-type=access-latency,latency=20"
1753                   " -numa hmat-lb,initiator=1,target=0,hierarchy=memory,"
1754                   "data-type=access-bandwidth,bandwidth=5242880"
1755                   " -numa hmat-lb,initiator=1,target=1,hierarchy=memory,"
1756                   "data-type=access-latency,latency=10"
1757                   " -numa hmat-lb,initiator=1,target=1,hierarchy=memory,"
1758                   "data-type=access-bandwidth,bandwidth=10485760"
1759                   " -numa hmat-lb,initiator=1,target=2,hierarchy=memory,"
1760                   "data-type=access-latency,latency=30"
1761                   " -numa hmat-lb,initiator=1,target=2,hierarchy=memory,"
1762                   "data-type=access-bandwidth,bandwidth=1048576",
1763                   &data);
1764     free_test_data(&data);
1765 }
1766 
1767 #ifdef CONFIG_POSIX
1768 static void test_acpi_erst(const char *machine)
1769 {
1770     gchar *tmp_path = g_dir_make_tmp("qemu-test-erst.XXXXXX", NULL);
1771     gchar *params;
1772     test_data data;
1773 
1774     memset(&data, 0, sizeof(data));
1775     data.machine = machine;
1776     data.variant = ".acpierst";
1777     params = g_strdup_printf(
1778         " -object memory-backend-file,id=erstnvram,"
1779             "mem-path=%s,size=0x10000,share=on"
1780         " -device acpi-erst,memdev=erstnvram", tmp_path);
1781     test_acpi_one(params, &data);
1782     free_test_data(&data);
1783     g_free(params);
1784     g_assert(g_rmdir(tmp_path) == 0);
1785     g_free(tmp_path);
1786 }
1787 
1788 static void test_acpi_piix4_acpi_erst(void)
1789 {
1790     test_acpi_erst(MACHINE_PC);
1791 }
1792 
1793 static void test_acpi_q35_acpi_erst(void)
1794 {
1795     test_acpi_erst(MACHINE_Q35);
1796 }
1797 
1798 static void test_acpi_microvm_acpi_erst(void)
1799 {
1800     gchar *tmp_path = g_dir_make_tmp("qemu-test-erst.XXXXXX", NULL);
1801     gchar *params;
1802     test_data data;
1803 
1804     test_acpi_microvm_prepare(&data);
1805     data.variant = ".pcie";
1806     data.tcg_only = true; /* need constant host-phys-bits */
1807     params = g_strdup_printf(" -machine microvm,"
1808         "acpi=on,ioapic2=off,rtc=off,pcie=on"
1809         " -object memory-backend-file,id=erstnvram,"
1810            "mem-path=%s,size=0x10000,share=on"
1811         " -device acpi-erst,memdev=erstnvram", tmp_path);
1812     test_acpi_one(params, &data);
1813     g_free(params);
1814     g_assert(g_rmdir(tmp_path) == 0);
1815     g_free(tmp_path);
1816     free_test_data(&data);
1817 }
1818 #endif /* CONFIG_POSIX */
1819 
1820 static void test_acpi_virt_tcg(void)
1821 {
1822     test_data data = {
1823         .machine = "virt",
1824         .tcg_only = true,
1825         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1826         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1827         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1828         .ram_start = 0x40000000ULL,
1829         .scan_len = 128ULL * 1024 * 1024,
1830     };
1831 
1832     data.smbios_cpu_max_speed = 2900;
1833     data.smbios_cpu_curr_speed = 2700;
1834     test_acpi_one("-cpu cortex-a57 "
1835                   "-smbios type=4,max-speed=2900,current-speed=2700", &data);
1836     free_test_data(&data);
1837 }
1838 
1839 static void test_acpi_virt_tcg_topology(void)
1840 {
1841     test_data data = {
1842         .machine = "virt",
1843         .variant = ".topology",
1844         .tcg_only = true,
1845         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1846         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1847         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1848         .ram_start = 0x40000000ULL,
1849         .scan_len = 128ULL * 1024 * 1024,
1850     };
1851 
1852     test_acpi_one("-cpu cortex-a57 "
1853                   "-smp sockets=1,clusters=2,cores=2,threads=2", &data);
1854     free_test_data(&data);
1855 }
1856 
1857 static void test_acpi_q35_viot(void)
1858 {
1859     test_data data = {
1860         .machine = MACHINE_Q35,
1861         .variant = ".viot",
1862     };
1863 
1864     /*
1865      * To keep things interesting, two buses bypass the IOMMU.
1866      * VIOT should only describes the other two buses.
1867      */
1868     test_acpi_one("-machine default_bus_bypass_iommu=on "
1869                   "-device virtio-iommu-pci "
1870                   "-device pxb-pcie,bus_nr=0x10,id=pcie.100,bus=pcie.0 "
1871                   "-device pxb-pcie,bus_nr=0x20,id=pcie.200,bus=pcie.0,bypass_iommu=on "
1872                   "-device pxb-pcie,bus_nr=0x30,id=pcie.300,bus=pcie.0",
1873                   &data);
1874     free_test_data(&data);
1875 }
1876 
1877 #ifdef CONFIG_POSIX
1878 static void test_acpi_q35_cxl(void)
1879 {
1880     gchar *tmp_path = g_dir_make_tmp("qemu-test-cxl.XXXXXX", NULL);
1881     gchar *params;
1882 
1883     test_data data = {
1884         .machine = MACHINE_Q35,
1885         .variant = ".cxl",
1886     };
1887     /*
1888      * A complex CXL setup.
1889      */
1890     params = g_strdup_printf(" -machine cxl=on"
1891                              " -object memory-backend-file,id=cxl-mem1,mem-path=%s,size=256M"
1892                              " -object memory-backend-file,id=cxl-mem2,mem-path=%s,size=256M"
1893                              " -object memory-backend-file,id=cxl-mem3,mem-path=%s,size=256M"
1894                              " -object memory-backend-file,id=cxl-mem4,mem-path=%s,size=256M"
1895                              " -object memory-backend-file,id=lsa1,mem-path=%s,size=256M"
1896                              " -object memory-backend-file,id=lsa2,mem-path=%s,size=256M"
1897                              " -object memory-backend-file,id=lsa3,mem-path=%s,size=256M"
1898                              " -object memory-backend-file,id=lsa4,mem-path=%s,size=256M"
1899                              " -device pxb-cxl,bus_nr=12,bus=pcie.0,id=cxl.1"
1900                              " -device pxb-cxl,bus_nr=222,bus=pcie.0,id=cxl.2"
1901                              " -device cxl-rp,port=0,bus=cxl.1,id=rp1,chassis=0,slot=2"
1902                              " -device cxl-type3,bus=rp1,memdev=cxl-mem1,lsa=lsa1"
1903                              " -device cxl-rp,port=1,bus=cxl.1,id=rp2,chassis=0,slot=3"
1904                              " -device cxl-type3,bus=rp2,memdev=cxl-mem2,lsa=lsa2"
1905                              " -device cxl-rp,port=0,bus=cxl.2,id=rp3,chassis=0,slot=5"
1906                              " -device cxl-type3,bus=rp3,memdev=cxl-mem3,lsa=lsa3"
1907                              " -device cxl-rp,port=1,bus=cxl.2,id=rp4,chassis=0,slot=6"
1908                              " -device cxl-type3,bus=rp4,memdev=cxl-mem4,lsa=lsa4"
1909                              " -M cxl-fmw.0.targets.0=cxl.1,cxl-fmw.0.size=4G,cxl-fmw.0.interleave-granularity=8k,"
1910                              "cxl-fmw.1.targets.0=cxl.1,cxl-fmw.1.targets.1=cxl.2,cxl-fmw.1.size=4G,cxl-fmw.1.interleave-granularity=8k",
1911                              tmp_path, tmp_path, tmp_path, tmp_path,
1912                              tmp_path, tmp_path, tmp_path, tmp_path);
1913     test_acpi_one(params, &data);
1914 
1915     g_free(params);
1916     g_assert(g_rmdir(tmp_path) == 0);
1917     g_free(tmp_path);
1918     free_test_data(&data);
1919 }
1920 #endif /* CONFIG_POSIX */
1921 
1922 static void test_acpi_virt_viot(void)
1923 {
1924     test_data data = {
1925         .machine = "virt",
1926         .tcg_only = true,
1927         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1928         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1929         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1930         .ram_start = 0x40000000ULL,
1931         .scan_len = 128ULL * 1024 * 1024,
1932     };
1933 
1934     test_acpi_one("-cpu cortex-a57 "
1935                   "-device virtio-iommu-pci", &data);
1936     free_test_data(&data);
1937 }
1938 
1939 #ifndef _WIN32
1940 # define DEV_NULL "/dev/null"
1941 #else
1942 # define DEV_NULL "nul"
1943 #endif
1944 
1945 static void test_acpi_q35_slic(void)
1946 {
1947     test_data data = {
1948         .machine = MACHINE_Q35,
1949         .variant = ".slic",
1950     };
1951 
1952     test_acpi_one("-acpitable sig=SLIC,oem_id=\"CRASH \",oem_table_id=ME,"
1953                   "oem_rev=00002210,asl_compiler_id=qemu,"
1954                   "asl_compiler_rev=00000000,data=" DEV_NULL,
1955                   &data);
1956     free_test_data(&data);
1957 }
1958 
1959 static void test_acpi_q35_applesmc(void)
1960 {
1961     test_data data = {
1962         .machine = MACHINE_Q35,
1963         .variant = ".applesmc",
1964     };
1965 
1966     /* supply fake 64-byte OSK to silence missing key warning */
1967     test_acpi_one("-device isa-applesmc,osk=any64characterfakeoskisenough"
1968                   "topreventinvalidkeywarningsonstderr", &data);
1969     free_test_data(&data);
1970 }
1971 
1972 static void test_acpi_q35_pvpanic_isa(void)
1973 {
1974     test_data data = {
1975         .machine = MACHINE_Q35,
1976         .variant = ".pvpanic-isa",
1977     };
1978 
1979     test_acpi_one("-device pvpanic", &data);
1980     free_test_data(&data);
1981 }
1982 
1983 static void test_oem_fields(test_data *data)
1984 {
1985     int i;
1986 
1987     for (i = 0; i < data->tables->len; ++i) {
1988         AcpiSdtTable *sdt;
1989 
1990         sdt = &g_array_index(data->tables, AcpiSdtTable, i);
1991         /* FACS doesn't have OEMID and OEMTABLEID fields */
1992         if (compare_signature(sdt, "FACS")) {
1993             continue;
1994         }
1995 
1996         g_assert(strncmp((char *)sdt->aml + 10, OEM_ID, 6) == 0);
1997         g_assert(strncmp((char *)sdt->aml + 16, OEM_TABLE_ID, 8) == 0);
1998     }
1999 }
2000 
2001 static void test_acpi_piix4_oem_fields(void)
2002 {
2003     test_data data;
2004     char *args;
2005 
2006     memset(&data, 0, sizeof(data));
2007     data.machine = MACHINE_PC;
2008     data.required_struct_types = base_required_struct_types;
2009     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
2010 
2011     args = test_acpi_create_args(&data, OEM_TEST_ARGS);
2012     data.qts = qtest_init(args);
2013     test_acpi_load_tables(&data);
2014     test_oem_fields(&data);
2015     qtest_quit(data.qts);
2016     free_test_data(&data);
2017     g_free(args);
2018 }
2019 
2020 static void test_acpi_q35_oem_fields(void)
2021 {
2022     test_data data;
2023     char *args;
2024 
2025     memset(&data, 0, sizeof(data));
2026     data.machine = MACHINE_Q35;
2027     data.required_struct_types = base_required_struct_types;
2028     data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
2029 
2030     args = test_acpi_create_args(&data, OEM_TEST_ARGS);
2031     data.qts = qtest_init(args);
2032     test_acpi_load_tables(&data);
2033     test_oem_fields(&data);
2034     qtest_quit(data.qts);
2035     free_test_data(&data);
2036     g_free(args);
2037 }
2038 
2039 static void test_acpi_microvm_oem_fields(void)
2040 {
2041     test_data data;
2042     char *args;
2043 
2044     test_acpi_microvm_prepare(&data);
2045 
2046     args = test_acpi_create_args(&data,
2047                                  OEM_TEST_ARGS",acpi=on");
2048     data.qts = qtest_init(args);
2049     test_acpi_load_tables(&data);
2050     test_oem_fields(&data);
2051     qtest_quit(data.qts);
2052     free_test_data(&data);
2053     g_free(args);
2054 }
2055 
2056 static void test_acpi_virt_oem_fields(void)
2057 {
2058     test_data data = {
2059         .machine = "virt",
2060         .tcg_only = true,
2061         .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
2062         .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
2063         .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
2064         .ram_start = 0x40000000ULL,
2065         .scan_len = 128ULL * 1024 * 1024,
2066     };
2067     char *args;
2068 
2069     args = test_acpi_create_args(&data, "-cpu cortex-a57 "OEM_TEST_ARGS);
2070     data.qts = qtest_init(args);
2071     test_acpi_load_tables(&data);
2072     test_oem_fields(&data);
2073     qtest_quit(data.qts);
2074     free_test_data(&data);
2075     g_free(args);
2076 }
2077 
2078 
2079 int main(int argc, char *argv[])
2080 {
2081     const char *arch = qtest_get_arch();
2082     const bool has_kvm = qtest_has_accel("kvm");
2083     const bool has_tcg = qtest_has_accel("tcg");
2084     char *v_env = getenv("V");
2085     int ret;
2086 
2087     if (v_env) {
2088         verbosity_level = atoi(v_env);
2089     }
2090 
2091     g_test_init(&argc, &argv, NULL);
2092 
2093     if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
2094         ret = boot_sector_init(disk);
2095         if (ret) {
2096             return ret;
2097         }
2098         if (qtest_has_machine(MACHINE_PC)) {
2099             qtest_add_func("acpi/piix4", test_acpi_piix4_tcg);
2100             qtest_add_func("acpi/piix4/oem-fields", test_acpi_piix4_oem_fields);
2101             qtest_add_func("acpi/piix4/bridge", test_acpi_piix4_tcg_bridge);
2102             qtest_add_func("acpi/piix4/pci-hotplug/no_root_hotplug",
2103                            test_acpi_piix4_no_root_hotplug);
2104             qtest_add_func("acpi/piix4/pci-hotplug/no_bridge_hotplug",
2105                            test_acpi_piix4_no_bridge_hotplug);
2106             qtest_add_func("acpi/piix4/pci-hotplug/off",
2107                            test_acpi_piix4_no_acpi_pci_hotplug);
2108             qtest_add_func("acpi/piix4/ipmi", test_acpi_piix4_tcg_ipmi);
2109             qtest_add_func("acpi/piix4/cpuhp", test_acpi_piix4_tcg_cphp);
2110             qtest_add_func("acpi/piix4/memhp", test_acpi_piix4_tcg_memhp);
2111             qtest_add_func("acpi/piix4/numamem", test_acpi_piix4_tcg_numamem);
2112             qtest_add_func("acpi/piix4/nosmm", test_acpi_piix4_tcg_nosmm);
2113             qtest_add_func("acpi/piix4/smm-compat",
2114                            test_acpi_piix4_tcg_smm_compat);
2115             qtest_add_func("acpi/piix4/smm-compat-nosmm",
2116                            test_acpi_piix4_tcg_smm_compat_nosmm);
2117             qtest_add_func("acpi/piix4/nohpet", test_acpi_piix4_tcg_nohpet);
2118             qtest_add_func("acpi/piix4/dimmpxm", test_acpi_piix4_tcg_dimm_pxm);
2119             qtest_add_func("acpi/piix4/acpihmat",
2120                            test_acpi_piix4_tcg_acpi_hmat);
2121 #ifdef CONFIG_POSIX
2122             qtest_add_func("acpi/piix4/acpierst", test_acpi_piix4_acpi_erst);
2123 #endif
2124         }
2125         if (qtest_has_machine(MACHINE_Q35)) {
2126             qtest_add_func("acpi/q35", test_acpi_q35_tcg);
2127             qtest_add_func("acpi/q35/oem-fields", test_acpi_q35_oem_fields);
2128             if (tpm_model_is_available("-machine q35", "tpm-tis")) {
2129                 qtest_add_func("acpi/q35/tpm2-tis", test_acpi_q35_tcg_tpm2_tis);
2130                 qtest_add_func("acpi/q35/tpm12-tis",
2131                                test_acpi_q35_tcg_tpm12_tis);
2132             }
2133             qtest_add_func("acpi/q35/bridge", test_acpi_q35_tcg_bridge);
2134             qtest_add_func("acpi/q35/no-acpi-hotplug",
2135                            test_acpi_q35_tcg_no_acpi_hotplug);
2136             qtest_add_func("acpi/q35/multif-bridge",
2137                            test_acpi_q35_multif_bridge);
2138             qtest_add_func("acpi/q35/mmio64", test_acpi_q35_tcg_mmio64);
2139             qtest_add_func("acpi/q35/ipmi", test_acpi_q35_tcg_ipmi);
2140             qtest_add_func("acpi/q35/smbus/ipmi", test_acpi_q35_tcg_smbus_ipmi);
2141             qtest_add_func("acpi/q35/cpuhp", test_acpi_q35_tcg_cphp);
2142             qtest_add_func("acpi/q35/memhp", test_acpi_q35_tcg_memhp);
2143             qtest_add_func("acpi/q35/numamem", test_acpi_q35_tcg_numamem);
2144             qtest_add_func("acpi/q35/nosmm", test_acpi_q35_tcg_nosmm);
2145             qtest_add_func("acpi/q35/smm-compat",
2146                            test_acpi_q35_tcg_smm_compat);
2147             qtest_add_func("acpi/q35/smm-compat-nosmm",
2148                            test_acpi_q35_tcg_smm_compat_nosmm);
2149             qtest_add_func("acpi/q35/nohpet", test_acpi_q35_tcg_nohpet);
2150             qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm);
2151             qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat);
2152             qtest_add_func("acpi/q35/acpihmat-noinitiator",
2153                            test_acpi_q35_tcg_acpi_hmat_noinitiator);
2154 #ifdef CONFIG_POSIX
2155             qtest_add_func("acpi/q35/acpierst", test_acpi_q35_acpi_erst);
2156 #endif
2157             qtest_add_func("acpi/q35/applesmc", test_acpi_q35_applesmc);
2158             qtest_add_func("acpi/q35/pvpanic-isa", test_acpi_q35_pvpanic_isa);
2159             if (has_tcg) {
2160                 qtest_add_func("acpi/q35/ivrs", test_acpi_q35_tcg_ivrs);
2161             }
2162             if (has_kvm) {
2163                 qtest_add_func("acpi/q35/kvm/xapic", test_acpi_q35_kvm_xapic);
2164                 qtest_add_func("acpi/q35/kvm/dmar", test_acpi_q35_kvm_dmar);
2165                 qtest_add_func("acpi/q35/core-count2",
2166                                test_acpi_q35_tcg_core_count2);
2167             }
2168             qtest_add_func("acpi/q35/viot", test_acpi_q35_viot);
2169 #ifdef CONFIG_POSIX
2170             qtest_add_func("acpi/q35/cxl", test_acpi_q35_cxl);
2171 #endif
2172             qtest_add_func("acpi/q35/slic", test_acpi_q35_slic);
2173         }
2174         if (qtest_has_machine("microvm")) {
2175             qtest_add_func("acpi/microvm", test_acpi_microvm_tcg);
2176             qtest_add_func("acpi/microvm/usb", test_acpi_microvm_usb_tcg);
2177             qtest_add_func("acpi/microvm/rtc", test_acpi_microvm_rtc_tcg);
2178             qtest_add_func("acpi/microvm/ioapic2",
2179                            test_acpi_microvm_ioapic2_tcg);
2180             qtest_add_func("acpi/microvm/oem-fields",
2181                            test_acpi_microvm_oem_fields);
2182             if (has_tcg) {
2183                 if (strcmp(arch, "x86_64") == 0) {
2184                     qtest_add_func("acpi/microvm/pcie",
2185                                    test_acpi_microvm_pcie_tcg);
2186 #ifdef CONFIG_POSIX
2187                     qtest_add_func("acpi/microvm/acpierst",
2188                                    test_acpi_microvm_acpi_erst);
2189 #endif
2190                 }
2191             }
2192         }
2193     } else if (strcmp(arch, "aarch64") == 0) {
2194         if (has_tcg) {
2195             qtest_add_func("acpi/virt", test_acpi_virt_tcg);
2196             qtest_add_func("acpi/virt/acpihmatvirt",
2197                             test_acpi_virt_tcg_acpi_hmat);
2198             qtest_add_func("acpi/virt/topology", test_acpi_virt_tcg_topology);
2199             qtest_add_func("acpi/virt/numamem", test_acpi_virt_tcg_numamem);
2200             qtest_add_func("acpi/virt/memhp", test_acpi_virt_tcg_memhp);
2201             qtest_add_func("acpi/virt/pxb", test_acpi_virt_tcg_pxb);
2202             qtest_add_func("acpi/virt/oem-fields", test_acpi_virt_oem_fields);
2203             qtest_add_func("acpi/virt/viot", test_acpi_virt_viot);
2204         }
2205     }
2206     ret = g_test_run();
2207     boot_sector_cleanup(disk);
2208     return ret;
2209 }
2210