tests/acpi: factor out common microvm test setup
[qemu/kevin.git] / tests / qtest / bios-tables-test.c
blob7be2b3131e16a193c773bc6c46f58b9001640bea
1 /*
2 * Boot order test cases.
4 * Copyright (c) 2013 Red Hat Inc.
6 * Authors:
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.
14 * How to add or update the tests:
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
20 * Contributor or ACPI Maintainer (steps 4-7 need to be redone to resolve conflicts
21 * in binary commit created in step 6):
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=1
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.
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 * 7. Before sending patches to the list (Contributor)
42 * or before doing a pull request (Maintainer), make sure
43 * tests/qtest/bios-tables-test-allowed-diff.h is empty - this will ensure
44 * following changes to ACPI tables will be noticed.
46 * The resulting patchset/pull request then looks like this:
47 * - patch 1: list changed files in tests/qtest/bios-tables-test-allowed-diff.h.
48 * - patches 2 - n: real changes, may contain multiple patches.
49 * - patch n + 1: update golden master binaries and empty
50 * tests/qtest/bios-tables-test-allowed-diff.h
53 #include "qemu/osdep.h"
54 #include <glib/gstdio.h>
55 #include "qemu-common.h"
56 #include "hw/firmware/smbios.h"
57 #include "qemu/bitmap.h"
58 #include "acpi-utils.h"
59 #include "boot-sector.h"
60 #include "tpm-emu.h"
61 #include "hw/acpi/tpm.h"
64 #define MACHINE_PC "pc"
65 #define MACHINE_Q35 "q35"
67 #define ACPI_REBUILD_EXPECTED_AML "TEST_ACPI_REBUILD_AML"
69 typedef struct {
70 bool tcg_only;
71 const char *machine;
72 const char *variant;
73 const char *uefi_fl1;
74 const char *uefi_fl2;
75 const char *blkdev;
76 const char *cd;
77 const uint64_t ram_start;
78 const uint64_t scan_len;
79 uint64_t rsdp_addr;
80 uint8_t rsdp_table[36 /* ACPI 2.0+ RSDP size */];
81 GArray *tables;
82 uint32_t smbios_ep_addr;
83 struct smbios_21_entry_point smbios_ep_table;
84 uint16_t smbios_cpu_max_speed;
85 uint16_t smbios_cpu_curr_speed;
86 uint8_t *required_struct_types;
87 int required_struct_types_len;
88 QTestState *qts;
89 } test_data;
91 static char disk[] = "tests/acpi-test-disk-XXXXXX";
92 static const char *data_dir = "tests/data/acpi";
93 #ifdef CONFIG_IASL
94 static const char *iasl = CONFIG_IASL;
95 #else
96 static const char *iasl;
97 #endif
99 static bool compare_signature(const AcpiSdtTable *sdt, const char *signature)
101 return !memcmp(sdt->aml, signature, 4);
104 static void cleanup_table_descriptor(AcpiSdtTable *table)
106 g_free(table->aml);
107 if (table->aml_file &&
108 !table->tmp_files_retain &&
109 g_strstr_len(table->aml_file, -1, "aml-")) {
110 unlink(table->aml_file);
112 g_free(table->aml_file);
113 g_free(table->asl);
114 if (table->asl_file &&
115 !table->tmp_files_retain) {
116 unlink(table->asl_file);
118 g_free(table->asl_file);
121 static void free_test_data(test_data *data)
123 int i;
125 for (i = 0; i < data->tables->len; ++i) {
126 cleanup_table_descriptor(&g_array_index(data->tables, AcpiSdtTable, i));
129 g_array_free(data->tables, true);
132 static void test_acpi_rsdp_table(test_data *data)
134 uint8_t *rsdp_table = data->rsdp_table;
136 acpi_fetch_rsdp_table(data->qts, data->rsdp_addr, rsdp_table);
138 switch (rsdp_table[15 /* Revision offset */]) {
139 case 0: /* ACPI 1.0 RSDP */
140 /* With rev 1, checksum is only for the first 20 bytes */
141 g_assert(!acpi_calc_checksum(rsdp_table, 20));
142 break;
143 case 2: /* ACPI 2.0+ RSDP */
144 /* With revision 2, we have 2 checksums */
145 g_assert(!acpi_calc_checksum(rsdp_table, 20));
146 g_assert(!acpi_calc_checksum(rsdp_table, 36));
147 break;
148 default:
149 g_assert_not_reached();
153 static void test_acpi_rxsdt_table(test_data *data)
155 const char *sig = "RSDT";
156 AcpiSdtTable rsdt = {};
157 int entry_size = 4;
158 int addr_off = 16 /* RsdtAddress */;
159 uint8_t *ent;
161 if (data->rsdp_table[15 /* Revision offset */] != 0) {
162 addr_off = 24 /* XsdtAddress */;
163 entry_size = 8;
164 sig = "XSDT";
166 /* read [RX]SDT table */
167 acpi_fetch_table(data->qts, &rsdt.aml, &rsdt.aml_len,
168 &data->rsdp_table[addr_off], entry_size, sig, true);
170 /* Load all tables and add to test list directly RSDT referenced tables */
171 ACPI_FOREACH_RSDT_ENTRY(rsdt.aml, rsdt.aml_len, ent, entry_size) {
172 AcpiSdtTable ssdt_table = {};
174 acpi_fetch_table(data->qts, &ssdt_table.aml, &ssdt_table.aml_len, ent,
175 entry_size, NULL, true);
176 /* Add table to ASL test tables list */
177 g_array_append_val(data->tables, ssdt_table);
179 cleanup_table_descriptor(&rsdt);
182 static void test_acpi_fadt_table(test_data *data)
184 /* FADT table is 1st */
185 AcpiSdtTable table = g_array_index(data->tables, typeof(table), 0);
186 uint8_t *fadt_aml = table.aml;
187 uint32_t fadt_len = table.aml_len;
188 uint32_t val;
189 int dsdt_offset = 40 /* DSDT */;
190 int dsdt_entry_size = 4;
192 g_assert(compare_signature(&table, "FACP"));
194 /* Since DSDT/FACS isn't in RSDT, add them to ASL test list manually */
195 memcpy(&val, fadt_aml + 112 /* Flags */, 4);
196 val = le32_to_cpu(val);
197 if (!(val & 1UL << 20 /* HW_REDUCED_ACPI */)) {
198 acpi_fetch_table(data->qts, &table.aml, &table.aml_len,
199 fadt_aml + 36 /* FIRMWARE_CTRL */, 4, "FACS", false);
200 g_array_append_val(data->tables, table);
203 memcpy(&val, fadt_aml + dsdt_offset, 4);
204 val = le32_to_cpu(val);
205 if (!val) {
206 dsdt_offset = 140 /* X_DSDT */;
207 dsdt_entry_size = 8;
209 acpi_fetch_table(data->qts, &table.aml, &table.aml_len,
210 fadt_aml + dsdt_offset, dsdt_entry_size, "DSDT", true);
211 g_array_append_val(data->tables, table);
213 memset(fadt_aml + 36, 0, 4); /* sanitize FIRMWARE_CTRL ptr */
214 memset(fadt_aml + 40, 0, 4); /* sanitize DSDT ptr */
215 if (fadt_aml[8 /* FADT Major Version */] >= 3) {
216 memset(fadt_aml + 132, 0, 8); /* sanitize X_FIRMWARE_CTRL ptr */
217 memset(fadt_aml + 140, 0, 8); /* sanitize X_DSDT ptr */
220 /* update checksum */
221 fadt_aml[9 /* Checksum */] = 0;
222 fadt_aml[9 /* Checksum */] -= acpi_calc_checksum(fadt_aml, fadt_len);
225 static void dump_aml_files(test_data *data, bool rebuild)
227 AcpiSdtTable *sdt;
228 GError *error = NULL;
229 gchar *aml_file = NULL;
230 gint fd;
231 ssize_t ret;
232 int i;
234 for (i = 0; i < data->tables->len; ++i) {
235 const char *ext = data->variant ? data->variant : "";
236 sdt = &g_array_index(data->tables, AcpiSdtTable, i);
237 g_assert(sdt->aml);
239 if (rebuild) {
240 aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine,
241 sdt->aml, ext);
242 fd = g_open(aml_file, O_WRONLY|O_TRUNC|O_CREAT,
243 S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH);
244 if (fd < 0) {
245 perror(aml_file);
247 g_assert(fd >= 0);
248 } else {
249 fd = g_file_open_tmp("aml-XXXXXX", &sdt->aml_file, &error);
250 g_assert_no_error(error);
253 ret = qemu_write_full(fd, sdt->aml, sdt->aml_len);
254 g_assert(ret == sdt->aml_len);
256 close(fd);
258 g_free(aml_file);
262 static bool load_asl(GArray *sdts, AcpiSdtTable *sdt)
264 AcpiSdtTable *temp;
265 GError *error = NULL;
266 GString *command_line = g_string_new(iasl);
267 gint fd;
268 gchar *out, *out_err;
269 gboolean ret;
270 int i;
272 fd = g_file_open_tmp("asl-XXXXXX.dsl", &sdt->asl_file, &error);
273 g_assert_no_error(error);
274 close(fd);
276 /* build command line */
277 g_string_append_printf(command_line, " -p %s ", sdt->asl_file);
278 if (compare_signature(sdt, "DSDT") ||
279 compare_signature(sdt, "SSDT")) {
280 for (i = 0; i < sdts->len; ++i) {
281 temp = &g_array_index(sdts, AcpiSdtTable, i);
282 if (compare_signature(temp, "DSDT") ||
283 compare_signature(temp, "SSDT")) {
284 g_string_append_printf(command_line, "-e %s ", temp->aml_file);
288 g_string_append_printf(command_line, "-d %s", sdt->aml_file);
290 /* pass 'out' and 'out_err' in order to be redirected */
291 ret = g_spawn_command_line_sync(command_line->str, &out, &out_err, NULL, &error);
292 g_assert_no_error(error);
293 if (ret) {
294 ret = g_file_get_contents(sdt->asl_file, &sdt->asl,
295 &sdt->asl_len, &error);
296 g_assert(ret);
297 g_assert_no_error(error);
298 ret = (sdt->asl_len > 0);
301 g_free(out);
302 g_free(out_err);
303 g_string_free(command_line, true);
305 return !ret;
308 #define COMMENT_END "*/"
309 #define DEF_BLOCK "DefinitionBlock ("
310 #define BLOCK_NAME_END ","
312 static GString *normalize_asl(gchar *asl_code)
314 GString *asl = g_string_new(asl_code);
315 gchar *comment, *block_name;
317 /* strip comments (different generation days) */
318 comment = g_strstr_len(asl->str, asl->len, COMMENT_END);
319 if (comment) {
320 comment += strlen(COMMENT_END);
321 while (*comment == '\n') {
322 comment++;
324 asl = g_string_erase(asl, 0, comment - asl->str);
327 /* strip def block name (it has file path in it) */
328 if (g_str_has_prefix(asl->str, DEF_BLOCK)) {
329 block_name = g_strstr_len(asl->str, asl->len, BLOCK_NAME_END);
330 g_assert(block_name);
331 asl = g_string_erase(asl, 0,
332 block_name + sizeof(BLOCK_NAME_END) - asl->str);
335 return asl;
338 static GArray *load_expected_aml(test_data *data)
340 int i;
341 AcpiSdtTable *sdt;
342 GError *error = NULL;
343 gboolean ret;
344 gsize aml_len;
346 GArray *exp_tables = g_array_new(false, true, sizeof(AcpiSdtTable));
347 if (getenv("V")) {
348 fputc('\n', stderr);
350 for (i = 0; i < data->tables->len; ++i) {
351 AcpiSdtTable exp_sdt;
352 gchar *aml_file = NULL;
353 const char *ext = data->variant ? data->variant : "";
355 sdt = &g_array_index(data->tables, AcpiSdtTable, i);
357 memset(&exp_sdt, 0, sizeof(exp_sdt));
359 try_again:
360 aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine,
361 sdt->aml, ext);
362 if (getenv("V")) {
363 fprintf(stderr, "Looking for expected file '%s'\n", aml_file);
365 if (g_file_test(aml_file, G_FILE_TEST_EXISTS)) {
366 exp_sdt.aml_file = aml_file;
367 } else if (*ext != '\0') {
368 /* try fallback to generic (extension less) expected file */
369 ext = "";
370 g_free(aml_file);
371 goto try_again;
373 g_assert(exp_sdt.aml_file);
374 if (getenv("V")) {
375 fprintf(stderr, "Using expected file '%s'\n", aml_file);
377 ret = g_file_get_contents(aml_file, (gchar **)&exp_sdt.aml,
378 &aml_len, &error);
379 exp_sdt.aml_len = aml_len;
380 g_assert(ret);
381 g_assert_no_error(error);
382 g_assert(exp_sdt.aml);
383 if (!exp_sdt.aml_len) {
384 fprintf(stderr, "Warning! zero length expected file '%s'\n",
385 aml_file);
388 g_array_append_val(exp_tables, exp_sdt);
391 return exp_tables;
394 static bool test_acpi_find_diff_allowed(AcpiSdtTable *sdt)
396 const gchar *allowed_diff_file[] = {
397 #include "bios-tables-test-allowed-diff.h"
398 NULL
400 const gchar **f;
402 for (f = allowed_diff_file; *f; ++f) {
403 if (!g_strcmp0(sdt->aml_file, *f)) {
404 return true;
407 return false;
410 /* test the list of tables in @data->tables against reference tables */
411 static void test_acpi_asl(test_data *data)
413 int i;
414 AcpiSdtTable *sdt, *exp_sdt;
415 test_data exp_data;
416 gboolean exp_err, err, all_tables_match = true;
418 memset(&exp_data, 0, sizeof(exp_data));
419 exp_data.tables = load_expected_aml(data);
420 dump_aml_files(data, false);
421 for (i = 0; i < data->tables->len; ++i) {
422 GString *asl, *exp_asl;
424 sdt = &g_array_index(data->tables, AcpiSdtTable, i);
425 exp_sdt = &g_array_index(exp_data.tables, AcpiSdtTable, i);
427 if (sdt->aml_len == exp_sdt->aml_len &&
428 !memcmp(sdt->aml, exp_sdt->aml, sdt->aml_len)) {
429 /* Identical table binaries: no need to disassemble. */
430 continue;
433 fprintf(stderr,
434 "acpi-test: Warning! %.4s binary file mismatch. "
435 "Actual [aml:%s], Expected [aml:%s].\n"
436 "See source file tests/qtest/bios-tables-test.c "
437 "for instructions on how to update expected files.\n",
438 exp_sdt->aml, sdt->aml_file, exp_sdt->aml_file);
440 all_tables_match = all_tables_match &&
441 test_acpi_find_diff_allowed(exp_sdt);
444 * don't try to decompile if IASL isn't present, in this case user
445 * will just 'get binary file mismatch' warnings and test failure
447 if (!iasl) {
448 continue;
451 err = load_asl(data->tables, sdt);
452 asl = normalize_asl(sdt->asl);
454 exp_err = load_asl(exp_data.tables, exp_sdt);
455 exp_asl = normalize_asl(exp_sdt->asl);
457 /* TODO: check for warnings */
458 g_assert(!err || exp_err);
460 if (g_strcmp0(asl->str, exp_asl->str)) {
461 sdt->tmp_files_retain = true;
462 if (exp_err) {
463 fprintf(stderr,
464 "Warning! iasl couldn't parse the expected aml\n");
465 } else {
466 exp_sdt->tmp_files_retain = true;
467 fprintf(stderr,
468 "acpi-test: Warning! %.4s mismatch. "
469 "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
470 exp_sdt->aml, sdt->asl_file, sdt->aml_file,
471 exp_sdt->asl_file, exp_sdt->aml_file);
472 fflush(stderr);
473 if (getenv("V")) {
474 const char *diff_env = getenv("DIFF");
475 const char *diff_cmd = diff_env ? diff_env : "diff -U 16";
476 char *diff = g_strdup_printf("%s %s %s", diff_cmd,
477 exp_sdt->asl_file, sdt->asl_file);
478 int out = dup(STDOUT_FILENO);
479 int ret G_GNUC_UNUSED;
481 dup2(STDERR_FILENO, STDOUT_FILENO);
482 ret = system(diff) ;
483 dup2(out, STDOUT_FILENO);
484 close(out);
485 g_free(diff);
489 g_string_free(asl, true);
490 g_string_free(exp_asl, true);
492 if (!iasl && !all_tables_match) {
493 fprintf(stderr, "to see ASL diff between mismatched files install IASL,"
494 " rebuild QEMU from scratch and re-run tests with V=1"
495 " environment variable set");
497 g_assert(all_tables_match);
499 free_test_data(&exp_data);
502 static bool smbios_ep_table_ok(test_data *data)
504 struct smbios_21_entry_point *ep_table = &data->smbios_ep_table;
505 uint32_t addr = data->smbios_ep_addr;
507 qtest_memread(data->qts, addr, ep_table, sizeof(*ep_table));
508 if (memcmp(ep_table->anchor_string, "_SM_", 4)) {
509 return false;
511 if (memcmp(ep_table->intermediate_anchor_string, "_DMI_", 5)) {
512 return false;
514 if (ep_table->structure_table_length == 0) {
515 return false;
517 if (ep_table->number_of_structures == 0) {
518 return false;
520 if (acpi_calc_checksum((uint8_t *)ep_table, sizeof *ep_table) ||
521 acpi_calc_checksum((uint8_t *)ep_table + 0x10,
522 sizeof *ep_table - 0x10)) {
523 return false;
525 return true;
528 static void test_smbios_entry_point(test_data *data)
530 uint32_t off;
532 /* find smbios entry point structure */
533 for (off = 0xf0000; off < 0x100000; off += 0x10) {
534 uint8_t sig[] = "_SM_";
535 int i;
537 for (i = 0; i < sizeof sig - 1; ++i) {
538 sig[i] = qtest_readb(data->qts, off + i);
541 if (!memcmp(sig, "_SM_", sizeof sig)) {
542 /* signature match, but is this a valid entry point? */
543 data->smbios_ep_addr = off;
544 if (smbios_ep_table_ok(data)) {
545 break;
550 g_assert_cmphex(off, <, 0x100000);
553 static inline bool smbios_single_instance(uint8_t type)
555 switch (type) {
556 case 0:
557 case 1:
558 case 2:
559 case 3:
560 case 16:
561 case 32:
562 case 127:
563 return true;
564 default:
565 return false;
569 static bool smbios_cpu_test(test_data *data, uint32_t addr)
571 uint16_t expect_speed[2];
572 uint16_t real;
573 int offset[2];
574 int i;
576 /* Check CPU speed for backward compatibility */
577 offset[0] = offsetof(struct smbios_type_4, max_speed);
578 offset[1] = offsetof(struct smbios_type_4, current_speed);
579 expect_speed[0] = data->smbios_cpu_max_speed ? : 2000;
580 expect_speed[1] = data->smbios_cpu_curr_speed ? : 2000;
582 for (i = 0; i < 2; i++) {
583 real = qtest_readw(data->qts, addr + offset[i]);
584 if (real != expect_speed[i]) {
585 fprintf(stderr, "Unexpected SMBIOS CPU speed: real %u expect %u\n",
586 real, expect_speed[i]);
587 return false;
591 return true;
594 static void test_smbios_structs(test_data *data)
596 DECLARE_BITMAP(struct_bitmap, SMBIOS_MAX_TYPE+1) = { 0 };
597 struct smbios_21_entry_point *ep_table = &data->smbios_ep_table;
598 uint32_t addr = le32_to_cpu(ep_table->structure_table_address);
599 int i, len, max_len = 0;
600 uint8_t type, prv, crt;
602 /* walk the smbios tables */
603 for (i = 0; i < le16_to_cpu(ep_table->number_of_structures); i++) {
605 /* grab type and formatted area length from struct header */
606 type = qtest_readb(data->qts, addr);
607 g_assert_cmpuint(type, <=, SMBIOS_MAX_TYPE);
608 len = qtest_readb(data->qts, addr + 1);
610 /* single-instance structs must not have been encountered before */
611 if (smbios_single_instance(type)) {
612 g_assert(!test_bit(type, struct_bitmap));
614 set_bit(type, struct_bitmap);
616 if (type == 4) {
617 g_assert(smbios_cpu_test(data, addr));
620 /* seek to end of unformatted string area of this struct ("\0\0") */
621 prv = crt = 1;
622 while (prv || crt) {
623 prv = crt;
624 crt = qtest_readb(data->qts, addr + len);
625 len++;
628 /* keep track of max. struct size */
629 if (max_len < len) {
630 max_len = len;
631 g_assert_cmpuint(max_len, <=, ep_table->max_structure_size);
634 /* start of next structure */
635 addr += len;
638 /* total table length and max struct size must match entry point values */
639 g_assert_cmpuint(le16_to_cpu(ep_table->structure_table_length), ==,
640 addr - le32_to_cpu(ep_table->structure_table_address));
641 g_assert_cmpuint(le16_to_cpu(ep_table->max_structure_size), ==, max_len);
643 /* required struct types must all be present */
644 for (i = 0; i < data->required_struct_types_len; i++) {
645 g_assert(test_bit(data->required_struct_types[i], struct_bitmap));
649 static void test_acpi_one(const char *params, test_data *data)
651 char *args;
652 bool use_uefi = data->uefi_fl1 && data->uefi_fl2;
654 if (use_uefi) {
656 * TODO: convert '-drive if=pflash' to new syntax (see e33763be7cd3)
657 * when arm/virt boad starts to support it.
659 args = g_strdup_printf("-machine %s %s -accel tcg -nodefaults -nographic "
660 "-drive if=pflash,format=raw,file=%s,readonly "
661 "-drive if=pflash,format=raw,file=%s,snapshot=on -cdrom %s %s",
662 data->machine, data->tcg_only ? "" : "-accel kvm",
663 data->uefi_fl1, data->uefi_fl2, data->cd, params ? params : "");
665 } else {
666 /* Disable kernel irqchip to be able to override apic irq0. */
667 args = g_strdup_printf("-machine %s,kernel-irqchip=off %s -accel tcg "
668 "-net none -display none %s "
669 "-drive id=hd0,if=none,file=%s,format=raw "
670 "-device %s,drive=hd0 ",
671 data->machine, data->tcg_only ? "" : "-accel kvm",
672 params ? params : "", disk,
673 data->blkdev ?: "ide-hd");
676 data->qts = qtest_init(args);
678 if (use_uefi) {
679 g_assert(data->scan_len);
680 data->rsdp_addr = acpi_find_rsdp_address_uefi(data->qts,
681 data->ram_start, data->scan_len);
682 } else {
683 boot_sector_test(data->qts);
684 data->rsdp_addr = acpi_find_rsdp_address(data->qts);
685 g_assert_cmphex(data->rsdp_addr, <, 0x100000);
688 data->tables = g_array_new(false, true, sizeof(AcpiSdtTable));
689 test_acpi_rsdp_table(data);
690 test_acpi_rxsdt_table(data);
691 test_acpi_fadt_table(data);
693 if (getenv(ACPI_REBUILD_EXPECTED_AML)) {
694 dump_aml_files(data, true);
695 } else {
696 test_acpi_asl(data);
700 * TODO: make SMBIOS tests work with UEFI firmware,
701 * Bug on uefi-test-tools to provide entry point:
702 * https://bugs.launchpad.net/qemu/+bug/1821884
704 if (!use_uefi) {
705 test_smbios_entry_point(data);
706 test_smbios_structs(data);
709 qtest_quit(data->qts);
710 g_free(args);
713 static uint8_t base_required_struct_types[] = {
714 0, 1, 3, 4, 16, 17, 19, 32, 127
717 static void test_acpi_piix4_tcg(void)
719 test_data data;
721 /* Supplying -machine accel argument overrides the default (qtest).
722 * This is to make guest actually run.
724 memset(&data, 0, sizeof(data));
725 data.machine = MACHINE_PC;
726 data.required_struct_types = base_required_struct_types;
727 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
728 test_acpi_one(NULL, &data);
729 free_test_data(&data);
732 static void test_acpi_piix4_tcg_bridge(void)
734 test_data data;
736 memset(&data, 0, sizeof(data));
737 data.machine = MACHINE_PC;
738 data.variant = ".bridge";
739 data.required_struct_types = base_required_struct_types;
740 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
741 test_acpi_one("-device pci-bridge,chassis_nr=1", &data);
742 free_test_data(&data);
745 static void test_acpi_piix4_no_root_hotplug(void)
747 test_data data;
749 memset(&data, 0, sizeof(data));
750 data.machine = MACHINE_PC;
751 data.variant = ".roothp";
752 data.required_struct_types = base_required_struct_types;
753 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
754 test_acpi_one("-global PIIX4_PM.acpi-root-pci-hotplug=off "
755 "-device pci-bridge,chassis_nr=1", &data);
756 free_test_data(&data);
759 static void test_acpi_piix4_no_bridge_hotplug(void)
761 test_data data;
763 memset(&data, 0, sizeof(data));
764 data.machine = MACHINE_PC;
765 data.variant = ".hpbridge";
766 data.required_struct_types = base_required_struct_types;
767 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
768 test_acpi_one("-global PIIX4_PM.acpi-pci-hotplug-with-bridge-support=off "
769 "-device pci-bridge,chassis_nr=1", &data);
770 free_test_data(&data);
773 static void test_acpi_q35_tcg(void)
775 test_data data;
777 memset(&data, 0, sizeof(data));
778 data.machine = MACHINE_Q35;
779 data.required_struct_types = base_required_struct_types;
780 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
781 test_acpi_one(NULL, &data);
782 free_test_data(&data);
784 data.smbios_cpu_max_speed = 3000;
785 data.smbios_cpu_curr_speed = 2600;
786 test_acpi_one("-smbios type=4,max-speed=3000,current-speed=2600", &data);
787 free_test_data(&data);
790 static void test_acpi_q35_tcg_bridge(void)
792 test_data data;
794 memset(&data, 0, sizeof(data));
795 data.machine = MACHINE_Q35;
796 data.variant = ".bridge";
797 data.required_struct_types = base_required_struct_types;
798 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types);
799 test_acpi_one("-device pci-bridge,chassis_nr=1",
800 &data);
801 free_test_data(&data);
804 static void test_acpi_q35_tcg_mmio64(void)
806 test_data data = {
807 .machine = MACHINE_Q35,
808 .variant = ".mmio64",
809 .required_struct_types = base_required_struct_types,
810 .required_struct_types_len = ARRAY_SIZE(base_required_struct_types)
813 test_acpi_one("-m 128M,slots=1,maxmem=2G "
814 "-object memory-backend-ram,id=ram0,size=128M "
815 "-numa node,memdev=ram0 "
816 "-device pci-testdev,membar=2G",
817 &data);
818 free_test_data(&data);
821 static void test_acpi_piix4_tcg_cphp(void)
823 test_data data;
825 memset(&data, 0, sizeof(data));
826 data.machine = MACHINE_PC;
827 data.variant = ".cphp";
828 test_acpi_one("-smp 2,cores=3,sockets=2,maxcpus=6"
829 " -object memory-backend-ram,id=ram0,size=64M"
830 " -object memory-backend-ram,id=ram1,size=64M"
831 " -numa node,memdev=ram0 -numa node,memdev=ram1"
832 " -numa dist,src=0,dst=1,val=21",
833 &data);
834 free_test_data(&data);
837 static void test_acpi_q35_tcg_cphp(void)
839 test_data data;
841 memset(&data, 0, sizeof(data));
842 data.machine = MACHINE_Q35;
843 data.variant = ".cphp";
844 test_acpi_one(" -smp 2,cores=3,sockets=2,maxcpus=6"
845 " -object memory-backend-ram,id=ram0,size=64M"
846 " -object memory-backend-ram,id=ram1,size=64M"
847 " -numa node,memdev=ram0 -numa node,memdev=ram1"
848 " -numa dist,src=0,dst=1,val=21",
849 &data);
850 free_test_data(&data);
853 static uint8_t ipmi_required_struct_types[] = {
854 0, 1, 3, 4, 16, 17, 19, 32, 38, 127
857 static void test_acpi_q35_tcg_ipmi(void)
859 test_data data;
861 memset(&data, 0, sizeof(data));
862 data.machine = MACHINE_Q35;
863 data.variant = ".ipmibt";
864 data.required_struct_types = ipmi_required_struct_types;
865 data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types);
866 test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
867 " -device isa-ipmi-bt,bmc=bmc0",
868 &data);
869 free_test_data(&data);
872 static void test_acpi_piix4_tcg_ipmi(void)
874 test_data data;
876 /* Supplying -machine accel argument overrides the default (qtest).
877 * This is to make guest actually run.
879 memset(&data, 0, sizeof(data));
880 data.machine = MACHINE_PC;
881 data.variant = ".ipmikcs";
882 data.required_struct_types = ipmi_required_struct_types;
883 data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types);
884 test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
885 " -device isa-ipmi-kcs,irq=0,bmc=bmc0",
886 &data);
887 free_test_data(&data);
890 static void test_acpi_q35_tcg_memhp(void)
892 test_data data;
894 memset(&data, 0, sizeof(data));
895 data.machine = MACHINE_Q35;
896 data.variant = ".memhp";
897 test_acpi_one(" -m 128,slots=3,maxmem=1G"
898 " -object memory-backend-ram,id=ram0,size=64M"
899 " -object memory-backend-ram,id=ram1,size=64M"
900 " -numa node,memdev=ram0 -numa node,memdev=ram1"
901 " -numa dist,src=0,dst=1,val=21",
902 &data);
903 free_test_data(&data);
906 static void test_acpi_piix4_tcg_memhp(void)
908 test_data data;
910 memset(&data, 0, sizeof(data));
911 data.machine = MACHINE_PC;
912 data.variant = ".memhp";
913 test_acpi_one(" -m 128,slots=3,maxmem=1G"
914 " -object memory-backend-ram,id=ram0,size=64M"
915 " -object memory-backend-ram,id=ram1,size=64M"
916 " -numa node,memdev=ram0 -numa node,memdev=ram1"
917 " -numa dist,src=0,dst=1,val=21",
918 &data);
919 free_test_data(&data);
922 static void test_acpi_q35_tcg_numamem(void)
924 test_data data;
926 memset(&data, 0, sizeof(data));
927 data.machine = MACHINE_Q35;
928 data.variant = ".numamem";
929 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
930 " -numa node -numa node,memdev=ram0", &data);
931 free_test_data(&data);
934 static void test_acpi_piix4_tcg_numamem(void)
936 test_data data;
938 memset(&data, 0, sizeof(data));
939 data.machine = MACHINE_PC;
940 data.variant = ".numamem";
941 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M"
942 " -numa node -numa node,memdev=ram0", &data);
943 free_test_data(&data);
946 uint64_t tpm_tis_base_addr;
948 static void test_acpi_tcg_tpm(const char *machine, const char *tpm_if,
949 uint64_t base)
951 #ifdef CONFIG_TPM
952 gchar *tmp_dir_name = g_strdup_printf("qemu-test_acpi_%s_tcg_%s.XXXXXX",
953 machine, tpm_if);
954 char *tmp_path = g_dir_make_tmp(tmp_dir_name, NULL);
955 TestState test;
956 test_data data;
957 GThread *thread;
958 char *args, *variant = g_strdup_printf(".%s", tpm_if);
960 tpm_tis_base_addr = base;
962 module_call_init(MODULE_INIT_QOM);
964 test.addr = g_new0(SocketAddress, 1);
965 test.addr->type = SOCKET_ADDRESS_TYPE_UNIX;
966 test.addr->u.q_unix.path = g_build_filename(tmp_path, "sock", NULL);
967 g_mutex_init(&test.data_mutex);
968 g_cond_init(&test.data_cond);
969 test.data_cond_signal = false;
971 thread = g_thread_new(NULL, tpm_emu_ctrl_thread, &test);
972 tpm_emu_test_wait_cond(&test);
974 memset(&data, 0, sizeof(data));
975 data.machine = machine;
976 data.variant = variant;
978 args = g_strdup_printf(
979 " -chardev socket,id=chr,path=%s"
980 " -tpmdev emulator,id=dev,chardev=chr"
981 " -device tpm-%s,tpmdev=dev",
982 test.addr->u.q_unix.path, tpm_if);
984 test_acpi_one(args, &data);
986 g_thread_join(thread);
987 g_unlink(test.addr->u.q_unix.path);
988 qapi_free_SocketAddress(test.addr);
989 g_rmdir(tmp_path);
990 g_free(variant);
991 g_free(tmp_path);
992 g_free(tmp_dir_name);
993 g_free(args);
994 free_test_data(&data);
995 #else
996 g_test_skip("TPM disabled");
997 #endif
1000 static void test_acpi_q35_tcg_tpm_tis(void)
1002 test_acpi_tcg_tpm("q35", "tis", 0xFED40000);
1005 static void test_acpi_tcg_dimm_pxm(const char *machine)
1007 test_data data;
1009 memset(&data, 0, sizeof(data));
1010 data.machine = machine;
1011 data.variant = ".dimmpxm";
1012 test_acpi_one(" -machine nvdimm=on,nvdimm-persistence=cpu"
1013 " -smp 4,sockets=4"
1014 " -m 128M,slots=3,maxmem=1G"
1015 " -object memory-backend-ram,id=ram0,size=32M"
1016 " -object memory-backend-ram,id=ram1,size=32M"
1017 " -object memory-backend-ram,id=ram2,size=32M"
1018 " -object memory-backend-ram,id=ram3,size=32M"
1019 " -numa node,memdev=ram0,nodeid=0"
1020 " -numa node,memdev=ram1,nodeid=1"
1021 " -numa node,memdev=ram2,nodeid=2"
1022 " -numa node,memdev=ram3,nodeid=3"
1023 " -numa cpu,node-id=0,socket-id=0"
1024 " -numa cpu,node-id=1,socket-id=1"
1025 " -numa cpu,node-id=2,socket-id=2"
1026 " -numa cpu,node-id=3,socket-id=3"
1027 " -object memory-backend-ram,id=ram4,size=128M"
1028 " -object memory-backend-ram,id=nvm0,size=128M"
1029 " -device pc-dimm,id=dimm0,memdev=ram4,node=1"
1030 " -device nvdimm,id=dimm1,memdev=nvm0,node=2",
1031 &data);
1032 free_test_data(&data);
1035 static void test_acpi_q35_tcg_dimm_pxm(void)
1037 test_acpi_tcg_dimm_pxm(MACHINE_Q35);
1040 static void test_acpi_piix4_tcg_dimm_pxm(void)
1042 test_acpi_tcg_dimm_pxm(MACHINE_PC);
1045 static void test_acpi_virt_tcg_memhp(void)
1047 test_data data = {
1048 .machine = "virt",
1049 .tcg_only = true,
1050 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1051 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1052 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1053 .ram_start = 0x40000000ULL,
1054 .scan_len = 256ULL * 1024 * 1024,
1057 data.variant = ".memhp";
1058 test_acpi_one(" -machine nvdimm=on"
1059 " -cpu cortex-a57"
1060 " -m 256M,slots=3,maxmem=1G"
1061 " -object memory-backend-ram,id=ram0,size=128M"
1062 " -object memory-backend-ram,id=ram1,size=128M"
1063 " -numa node,memdev=ram0 -numa node,memdev=ram1"
1064 " -numa dist,src=0,dst=1,val=21"
1065 " -object memory-backend-ram,id=ram2,size=128M"
1066 " -object memory-backend-ram,id=nvm0,size=128M"
1067 " -device pc-dimm,id=dimm0,memdev=ram2,node=0"
1068 " -device nvdimm,id=dimm1,memdev=nvm0,node=1",
1069 &data);
1071 free_test_data(&data);
1075 static void test_acpi_microvm_prepare(test_data *data)
1077 memset(data, 0, sizeof(*data));
1078 data->machine = "microvm";
1079 data->required_struct_types = NULL; /* no smbios */
1080 data->required_struct_types_len = 0;
1081 data->blkdev = "virtio-blk-device";
1084 static void test_acpi_microvm_tcg(void)
1086 test_data data;
1088 test_acpi_microvm_prepare(&data);
1089 test_acpi_one(" -machine microvm,acpi=on,rtc=off",
1090 &data);
1091 free_test_data(&data);
1094 static void test_acpi_virt_tcg_numamem(void)
1096 test_data data = {
1097 .machine = "virt",
1098 .tcg_only = true,
1099 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1100 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1101 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1102 .ram_start = 0x40000000ULL,
1103 .scan_len = 128ULL * 1024 * 1024,
1106 data.variant = ".numamem";
1107 test_acpi_one(" -cpu cortex-a57"
1108 " -object memory-backend-ram,id=ram0,size=128M"
1109 " -numa node,memdev=ram0",
1110 &data);
1112 free_test_data(&data);
1116 static void test_acpi_tcg_acpi_hmat(const char *machine)
1118 test_data data;
1120 memset(&data, 0, sizeof(data));
1121 data.machine = machine;
1122 data.variant = ".acpihmat";
1123 test_acpi_one(" -machine hmat=on"
1124 " -smp 2,sockets=2"
1125 " -m 128M,slots=2,maxmem=1G"
1126 " -object memory-backend-ram,size=64M,id=m0"
1127 " -object memory-backend-ram,size=64M,id=m1"
1128 " -numa node,nodeid=0,memdev=m0"
1129 " -numa node,nodeid=1,memdev=m1,initiator=0"
1130 " -numa cpu,node-id=0,socket-id=0"
1131 " -numa cpu,node-id=0,socket-id=1"
1132 " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1133 "data-type=access-latency,latency=1"
1134 " -numa hmat-lb,initiator=0,target=0,hierarchy=memory,"
1135 "data-type=access-bandwidth,bandwidth=65534M"
1136 " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1137 "data-type=access-latency,latency=65534"
1138 " -numa hmat-lb,initiator=0,target=1,hierarchy=memory,"
1139 "data-type=access-bandwidth,bandwidth=32767M"
1140 " -numa hmat-cache,node-id=0,size=10K,level=1,"
1141 "associativity=direct,policy=write-back,line=8"
1142 " -numa hmat-cache,node-id=1,size=10K,level=1,"
1143 "associativity=direct,policy=write-back,line=8",
1144 &data);
1145 free_test_data(&data);
1148 static void test_acpi_q35_tcg_acpi_hmat(void)
1150 test_acpi_tcg_acpi_hmat(MACHINE_Q35);
1153 static void test_acpi_piix4_tcg_acpi_hmat(void)
1155 test_acpi_tcg_acpi_hmat(MACHINE_PC);
1158 static void test_acpi_virt_tcg(void)
1160 test_data data = {
1161 .machine = "virt",
1162 .tcg_only = true,
1163 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd",
1164 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd",
1165 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2",
1166 .ram_start = 0x40000000ULL,
1167 .scan_len = 128ULL * 1024 * 1024,
1170 test_acpi_one("-cpu cortex-a57", &data);
1171 free_test_data(&data);
1173 data.smbios_cpu_max_speed = 2900;
1174 data.smbios_cpu_curr_speed = 2700;
1175 test_acpi_one("-cpu cortex-a57 "
1176 "-smbios type=4,max-speed=2900,current-speed=2700", &data);
1177 free_test_data(&data);
1180 int main(int argc, char *argv[])
1182 const char *arch = qtest_get_arch();
1183 int ret;
1185 g_test_init(&argc, &argv, NULL);
1187 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
1188 ret = boot_sector_init(disk);
1189 if (ret) {
1190 return ret;
1193 qtest_add_func("acpi/q35/tpm-tis", test_acpi_q35_tcg_tpm_tis);
1194 qtest_add_func("acpi/piix4", test_acpi_piix4_tcg);
1195 qtest_add_func("acpi/piix4/bridge", test_acpi_piix4_tcg_bridge);
1196 qtest_add_func("acpi/piix4/pci-hotplug/no_root_hotplug",
1197 test_acpi_piix4_no_root_hotplug);
1198 qtest_add_func("acpi/piix4/pci-hotplug/no_bridge_hotplug",
1199 test_acpi_piix4_no_bridge_hotplug);
1200 qtest_add_func("acpi/q35", test_acpi_q35_tcg);
1201 qtest_add_func("acpi/q35/bridge", test_acpi_q35_tcg_bridge);
1202 qtest_add_func("acpi/q35/mmio64", test_acpi_q35_tcg_mmio64);
1203 qtest_add_func("acpi/piix4/ipmi", test_acpi_piix4_tcg_ipmi);
1204 qtest_add_func("acpi/q35/ipmi", test_acpi_q35_tcg_ipmi);
1205 qtest_add_func("acpi/piix4/cpuhp", test_acpi_piix4_tcg_cphp);
1206 qtest_add_func("acpi/q35/cpuhp", test_acpi_q35_tcg_cphp);
1207 qtest_add_func("acpi/piix4/memhp", test_acpi_piix4_tcg_memhp);
1208 qtest_add_func("acpi/q35/memhp", test_acpi_q35_tcg_memhp);
1209 qtest_add_func("acpi/piix4/numamem", test_acpi_piix4_tcg_numamem);
1210 qtest_add_func("acpi/q35/numamem", test_acpi_q35_tcg_numamem);
1211 qtest_add_func("acpi/piix4/dimmpxm", test_acpi_piix4_tcg_dimm_pxm);
1212 qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm);
1213 qtest_add_func("acpi/piix4/acpihmat", test_acpi_piix4_tcg_acpi_hmat);
1214 qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat);
1215 qtest_add_func("acpi/microvm", test_acpi_microvm_tcg);
1216 } else if (strcmp(arch, "aarch64") == 0) {
1217 qtest_add_func("acpi/virt", test_acpi_virt_tcg);
1218 qtest_add_func("acpi/virt/numamem", test_acpi_virt_tcg_numamem);
1219 qtest_add_func("acpi/virt/memhp", test_acpi_virt_tcg_memhp);
1221 ret = g_test_run();
1222 boot_sector_cleanup(disk);
1223 return ret;