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=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. 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 "qemu-common.h" 61 #include "hw/firmware/smbios.h" 62 #include "qemu/bitmap.h" 63 #include "acpi-utils.h" 64 #include "boot-sector.h" 65 #include "tpm-emu.h" 66 #include "hw/acpi/tpm.h" 67 #include "qemu/cutils.h" 68 69 #define MACHINE_PC "pc" 70 #define MACHINE_Q35 "q35" 71 72 #define ACPI_REBUILD_EXPECTED_AML "TEST_ACPI_REBUILD_AML" 73 74 #define OEM_ID "TEST" 75 #define OEM_TABLE_ID "OEM" 76 #define OEM_TEST_ARGS "-machine x-oem-id="OEM_ID",x-oem-table-id="OEM_TABLE_ID 77 78 typedef struct { 79 bool tcg_only; 80 const char *machine; 81 const char *variant; 82 const char *uefi_fl1; 83 const char *uefi_fl2; 84 const char *blkdev; 85 const char *cd; 86 const uint64_t ram_start; 87 const uint64_t scan_len; 88 uint64_t rsdp_addr; 89 uint8_t rsdp_table[36 /* ACPI 2.0+ RSDP size */]; 90 GArray *tables; 91 uint32_t smbios_ep_addr; 92 struct smbios_21_entry_point smbios_ep_table; 93 uint16_t smbios_cpu_max_speed; 94 uint16_t smbios_cpu_curr_speed; 95 uint8_t *required_struct_types; 96 int required_struct_types_len; 97 QTestState *qts; 98 } test_data; 99 100 static char disk[] = "tests/acpi-test-disk-XXXXXX"; 101 static const char *data_dir = "tests/data/acpi"; 102 #ifdef CONFIG_IASL 103 static const char *iasl = CONFIG_IASL; 104 #else 105 static const char *iasl; 106 #endif 107 108 static bool compare_signature(const AcpiSdtTable *sdt, const char *signature) 109 { 110 return !memcmp(sdt->aml, signature, 4); 111 } 112 113 static void cleanup_table_descriptor(AcpiSdtTable *table) 114 { 115 g_free(table->aml); 116 if (table->aml_file && 117 !table->tmp_files_retain && 118 g_strstr_len(table->aml_file, -1, "aml-")) { 119 unlink(table->aml_file); 120 } 121 g_free(table->aml_file); 122 g_free(table->asl); 123 if (table->asl_file && 124 !table->tmp_files_retain) { 125 unlink(table->asl_file); 126 } 127 g_free(table->asl_file); 128 } 129 130 static void free_test_data(test_data *data) 131 { 132 int i; 133 134 if (!data->tables) { 135 return; 136 } 137 for (i = 0; i < data->tables->len; ++i) { 138 cleanup_table_descriptor(&g_array_index(data->tables, AcpiSdtTable, i)); 139 } 140 141 g_array_free(data->tables, true); 142 } 143 144 static void test_acpi_rsdp_table(test_data *data) 145 { 146 uint8_t *rsdp_table = data->rsdp_table; 147 148 acpi_fetch_rsdp_table(data->qts, data->rsdp_addr, rsdp_table); 149 150 switch (rsdp_table[15 /* Revision offset */]) { 151 case 0: /* ACPI 1.0 RSDP */ 152 /* With rev 1, checksum is only for the first 20 bytes */ 153 g_assert(!acpi_calc_checksum(rsdp_table, 20)); 154 break; 155 case 2: /* ACPI 2.0+ RSDP */ 156 /* With revision 2, we have 2 checksums */ 157 g_assert(!acpi_calc_checksum(rsdp_table, 20)); 158 g_assert(!acpi_calc_checksum(rsdp_table, 36)); 159 break; 160 default: 161 g_assert_not_reached(); 162 } 163 } 164 165 static void test_acpi_rxsdt_table(test_data *data) 166 { 167 const char *sig = "RSDT"; 168 AcpiSdtTable rsdt = {}; 169 int entry_size = 4; 170 int addr_off = 16 /* RsdtAddress */; 171 uint8_t *ent; 172 173 if (data->rsdp_table[15 /* Revision offset */] != 0) { 174 addr_off = 24 /* XsdtAddress */; 175 entry_size = 8; 176 sig = "XSDT"; 177 } 178 /* read [RX]SDT table */ 179 acpi_fetch_table(data->qts, &rsdt.aml, &rsdt.aml_len, 180 &data->rsdp_table[addr_off], entry_size, sig, true); 181 182 /* Load all tables and add to test list directly RSDT referenced tables */ 183 ACPI_FOREACH_RSDT_ENTRY(rsdt.aml, rsdt.aml_len, ent, entry_size) { 184 AcpiSdtTable ssdt_table = {}; 185 186 acpi_fetch_table(data->qts, &ssdt_table.aml, &ssdt_table.aml_len, ent, 187 entry_size, NULL, true); 188 /* Add table to ASL test tables list */ 189 g_array_append_val(data->tables, ssdt_table); 190 } 191 cleanup_table_descriptor(&rsdt); 192 } 193 194 static void test_acpi_fadt_table(test_data *data) 195 { 196 /* FADT table is 1st */ 197 AcpiSdtTable table = g_array_index(data->tables, typeof(table), 0); 198 uint8_t *fadt_aml = table.aml; 199 uint32_t fadt_len = table.aml_len; 200 uint32_t val; 201 int dsdt_offset = 40 /* DSDT */; 202 int dsdt_entry_size = 4; 203 204 g_assert(compare_signature(&table, "FACP")); 205 206 /* Since DSDT/FACS isn't in RSDT, add them to ASL test list manually */ 207 memcpy(&val, fadt_aml + 112 /* Flags */, 4); 208 val = le32_to_cpu(val); 209 if (!(val & 1UL << 20 /* HW_REDUCED_ACPI */)) { 210 acpi_fetch_table(data->qts, &table.aml, &table.aml_len, 211 fadt_aml + 36 /* FIRMWARE_CTRL */, 4, "FACS", false); 212 g_array_append_val(data->tables, table); 213 } 214 215 memcpy(&val, fadt_aml + dsdt_offset, 4); 216 val = le32_to_cpu(val); 217 if (!val) { 218 dsdt_offset = 140 /* X_DSDT */; 219 dsdt_entry_size = 8; 220 } 221 acpi_fetch_table(data->qts, &table.aml, &table.aml_len, 222 fadt_aml + dsdt_offset, dsdt_entry_size, "DSDT", true); 223 g_array_append_val(data->tables, table); 224 225 memset(fadt_aml + 36, 0, 4); /* sanitize FIRMWARE_CTRL ptr */ 226 memset(fadt_aml + 40, 0, 4); /* sanitize DSDT ptr */ 227 if (fadt_aml[8 /* FADT Major Version */] >= 3) { 228 memset(fadt_aml + 132, 0, 8); /* sanitize X_FIRMWARE_CTRL ptr */ 229 memset(fadt_aml + 140, 0, 8); /* sanitize X_DSDT ptr */ 230 } 231 232 /* update checksum */ 233 fadt_aml[9 /* Checksum */] = 0; 234 fadt_aml[9 /* Checksum */] -= acpi_calc_checksum(fadt_aml, fadt_len); 235 } 236 237 static void dump_aml_files(test_data *data, bool rebuild) 238 { 239 AcpiSdtTable *sdt; 240 GError *error = NULL; 241 gchar *aml_file = NULL; 242 gint fd; 243 ssize_t ret; 244 int i; 245 246 for (i = 0; i < data->tables->len; ++i) { 247 const char *ext = data->variant ? data->variant : ""; 248 sdt = &g_array_index(data->tables, AcpiSdtTable, i); 249 g_assert(sdt->aml); 250 251 if (rebuild) { 252 aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine, 253 sdt->aml, ext); 254 fd = g_open(aml_file, O_WRONLY|O_TRUNC|O_CREAT, 255 S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH); 256 if (fd < 0) { 257 perror(aml_file); 258 } 259 g_assert(fd >= 0); 260 } else { 261 fd = g_file_open_tmp("aml-XXXXXX", &sdt->aml_file, &error); 262 g_assert_no_error(error); 263 } 264 265 ret = qemu_write_full(fd, sdt->aml, sdt->aml_len); 266 g_assert(ret == sdt->aml_len); 267 268 close(fd); 269 270 g_free(aml_file); 271 } 272 } 273 274 static bool load_asl(GArray *sdts, AcpiSdtTable *sdt) 275 { 276 AcpiSdtTable *temp; 277 GError *error = NULL; 278 GString *command_line = g_string_new(iasl); 279 gint fd; 280 gchar *out, *out_err; 281 gboolean ret; 282 int i; 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 /* build command line */ 289 g_string_append_printf(command_line, " -p %s ", sdt->asl_file); 290 if (compare_signature(sdt, "DSDT") || 291 compare_signature(sdt, "SSDT")) { 292 for (i = 0; i < sdts->len; ++i) { 293 temp = &g_array_index(sdts, AcpiSdtTable, i); 294 if (compare_signature(temp, "DSDT") || 295 compare_signature(temp, "SSDT")) { 296 g_string_append_printf(command_line, "-e %s ", temp->aml_file); 297 } 298 } 299 } 300 g_string_append_printf(command_line, "-d %s", sdt->aml_file); 301 302 /* pass 'out' and 'out_err' in order to be redirected */ 303 ret = g_spawn_command_line_sync(command_line->str, &out, &out_err, NULL, &error); 304 g_assert_no_error(error); 305 if (ret) { 306 ret = g_file_get_contents(sdt->asl_file, &sdt->asl, 307 &sdt->asl_len, &error); 308 g_assert(ret); 309 g_assert_no_error(error); 310 ret = (sdt->asl_len > 0); 311 } 312 313 g_free(out); 314 g_free(out_err); 315 g_string_free(command_line, true); 316 317 return !ret; 318 } 319 320 #define COMMENT_END "*/" 321 #define DEF_BLOCK "DefinitionBlock (" 322 #define BLOCK_NAME_END "," 323 324 static GString *normalize_asl(gchar *asl_code) 325 { 326 GString *asl = g_string_new(asl_code); 327 gchar *comment, *block_name; 328 329 /* strip comments (different generation days) */ 330 comment = g_strstr_len(asl->str, asl->len, COMMENT_END); 331 if (comment) { 332 comment += strlen(COMMENT_END); 333 while (*comment == '\n') { 334 comment++; 335 } 336 asl = g_string_erase(asl, 0, comment - asl->str); 337 } 338 339 /* strip def block name (it has file path in it) */ 340 if (g_str_has_prefix(asl->str, DEF_BLOCK)) { 341 block_name = g_strstr_len(asl->str, asl->len, BLOCK_NAME_END); 342 g_assert(block_name); 343 asl = g_string_erase(asl, 0, 344 block_name + sizeof(BLOCK_NAME_END) - asl->str); 345 } 346 347 return asl; 348 } 349 350 static GArray *load_expected_aml(test_data *data) 351 { 352 int i; 353 AcpiSdtTable *sdt; 354 GError *error = NULL; 355 gboolean ret; 356 gsize aml_len; 357 358 GArray *exp_tables = g_array_new(false, true, sizeof(AcpiSdtTable)); 359 if (getenv("V")) { 360 fputc('\n', stderr); 361 } 362 for (i = 0; i < data->tables->len; ++i) { 363 AcpiSdtTable exp_sdt; 364 gchar *aml_file = NULL; 365 const char *ext = data->variant ? data->variant : ""; 366 367 sdt = &g_array_index(data->tables, AcpiSdtTable, i); 368 369 memset(&exp_sdt, 0, sizeof(exp_sdt)); 370 371 try_again: 372 aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine, 373 sdt->aml, ext); 374 if (getenv("V")) { 375 fprintf(stderr, "Looking for expected file '%s'\n", aml_file); 376 } 377 if (g_file_test(aml_file, G_FILE_TEST_EXISTS)) { 378 exp_sdt.aml_file = aml_file; 379 } else if (*ext != '\0') { 380 /* try fallback to generic (extension less) expected file */ 381 ext = ""; 382 g_free(aml_file); 383 goto try_again; 384 } 385 g_assert(exp_sdt.aml_file); 386 if (getenv("V")) { 387 fprintf(stderr, "Using expected file '%s'\n", aml_file); 388 } 389 ret = g_file_get_contents(aml_file, (gchar **)&exp_sdt.aml, 390 &aml_len, &error); 391 exp_sdt.aml_len = aml_len; 392 g_assert(ret); 393 g_assert_no_error(error); 394 g_assert(exp_sdt.aml); 395 if (!exp_sdt.aml_len) { 396 fprintf(stderr, "Warning! zero length expected file '%s'\n", 397 aml_file); 398 } 399 400 g_array_append_val(exp_tables, exp_sdt); 401 } 402 403 return exp_tables; 404 } 405 406 static bool test_acpi_find_diff_allowed(AcpiSdtTable *sdt) 407 { 408 const gchar *allowed_diff_file[] = { 409 #include "bios-tables-test-allowed-diff.h" 410 NULL 411 }; 412 const gchar **f; 413 414 for (f = allowed_diff_file; *f; ++f) { 415 if (!g_strcmp0(sdt->aml_file, *f)) { 416 return true; 417 } 418 } 419 return false; 420 } 421 422 /* test the list of tables in @data->tables against reference tables */ 423 static void test_acpi_asl(test_data *data) 424 { 425 int i; 426 AcpiSdtTable *sdt, *exp_sdt; 427 test_data exp_data; 428 gboolean exp_err, err, all_tables_match = true; 429 430 memset(&exp_data, 0, sizeof(exp_data)); 431 exp_data.tables = load_expected_aml(data); 432 dump_aml_files(data, false); 433 for (i = 0; i < data->tables->len; ++i) { 434 GString *asl, *exp_asl; 435 436 sdt = &g_array_index(data->tables, AcpiSdtTable, i); 437 exp_sdt = &g_array_index(exp_data.tables, AcpiSdtTable, i); 438 439 if (sdt->aml_len == exp_sdt->aml_len && 440 !memcmp(sdt->aml, exp_sdt->aml, sdt->aml_len)) { 441 /* Identical table binaries: no need to disassemble. */ 442 continue; 443 } 444 445 fprintf(stderr, 446 "acpi-test: Warning! %.4s binary file mismatch. " 447 "Actual [aml:%s], Expected [aml:%s].\n" 448 "See source file tests/qtest/bios-tables-test.c " 449 "for instructions on how to update expected files.\n", 450 exp_sdt->aml, sdt->aml_file, exp_sdt->aml_file); 451 452 all_tables_match = all_tables_match && 453 test_acpi_find_diff_allowed(exp_sdt); 454 455 /* 456 * don't try to decompile if IASL isn't present, in this case user 457 * will just 'get binary file mismatch' warnings and test failure 458 */ 459 if (!iasl) { 460 continue; 461 } 462 463 err = load_asl(data->tables, sdt); 464 asl = normalize_asl(sdt->asl); 465 466 exp_err = load_asl(exp_data.tables, exp_sdt); 467 exp_asl = normalize_asl(exp_sdt->asl); 468 469 /* TODO: check for warnings */ 470 g_assert(!err || exp_err); 471 472 if (g_strcmp0(asl->str, exp_asl->str)) { 473 sdt->tmp_files_retain = true; 474 if (exp_err) { 475 fprintf(stderr, 476 "Warning! iasl couldn't parse the expected aml\n"); 477 } else { 478 exp_sdt->tmp_files_retain = true; 479 fprintf(stderr, 480 "acpi-test: Warning! %.4s mismatch. " 481 "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n", 482 exp_sdt->aml, sdt->asl_file, sdt->aml_file, 483 exp_sdt->asl_file, exp_sdt->aml_file); 484 fflush(stderr); 485 if (getenv("V")) { 486 const char *diff_env = getenv("DIFF"); 487 const char *diff_cmd = diff_env ? diff_env : "diff -U 16"; 488 char *diff = g_strdup_printf("%s %s %s", diff_cmd, 489 exp_sdt->asl_file, sdt->asl_file); 490 int out = dup(STDOUT_FILENO); 491 int ret G_GNUC_UNUSED; 492 int dupret; 493 494 g_assert(out >= 0); 495 dupret = dup2(STDERR_FILENO, STDOUT_FILENO); 496 g_assert(dupret >= 0); 497 ret = system(diff) ; 498 dupret = dup2(out, STDOUT_FILENO); 499 g_assert(dupret >= 0); 500 close(out); 501 g_free(diff); 502 } 503 } 504 } 505 g_string_free(asl, true); 506 g_string_free(exp_asl, true); 507 } 508 if (!iasl && !all_tables_match) { 509 fprintf(stderr, "to see ASL diff between mismatched files install IASL," 510 " rebuild QEMU from scratch and re-run tests with V=1" 511 " environment variable set"); 512 } 513 g_assert(all_tables_match); 514 515 free_test_data(&exp_data); 516 } 517 518 static bool smbios_ep_table_ok(test_data *data) 519 { 520 struct smbios_21_entry_point *ep_table = &data->smbios_ep_table; 521 uint32_t addr = data->smbios_ep_addr; 522 523 qtest_memread(data->qts, addr, ep_table, sizeof(*ep_table)); 524 if (memcmp(ep_table->anchor_string, "_SM_", 4)) { 525 return false; 526 } 527 if (memcmp(ep_table->intermediate_anchor_string, "_DMI_", 5)) { 528 return false; 529 } 530 if (ep_table->structure_table_length == 0) { 531 return false; 532 } 533 if (ep_table->number_of_structures == 0) { 534 return false; 535 } 536 if (acpi_calc_checksum((uint8_t *)ep_table, sizeof *ep_table) || 537 acpi_calc_checksum((uint8_t *)ep_table + 0x10, 538 sizeof *ep_table - 0x10)) { 539 return false; 540 } 541 return true; 542 } 543 544 static void test_smbios_entry_point(test_data *data) 545 { 546 uint32_t off; 547 548 /* find smbios entry point structure */ 549 for (off = 0xf0000; off < 0x100000; off += 0x10) { 550 uint8_t sig[] = "_SM_"; 551 int i; 552 553 for (i = 0; i < sizeof sig - 1; ++i) { 554 sig[i] = qtest_readb(data->qts, off + i); 555 } 556 557 if (!memcmp(sig, "_SM_", sizeof sig)) { 558 /* signature match, but is this a valid entry point? */ 559 data->smbios_ep_addr = off; 560 if (smbios_ep_table_ok(data)) { 561 break; 562 } 563 } 564 } 565 566 g_assert_cmphex(off, <, 0x100000); 567 } 568 569 static inline bool smbios_single_instance(uint8_t type) 570 { 571 switch (type) { 572 case 0: 573 case 1: 574 case 2: 575 case 3: 576 case 16: 577 case 32: 578 case 127: 579 return true; 580 default: 581 return false; 582 } 583 } 584 585 static bool smbios_cpu_test(test_data *data, uint32_t addr) 586 { 587 uint16_t expect_speed[2]; 588 uint16_t real; 589 int offset[2]; 590 int i; 591 592 /* Check CPU speed for backward compatibility */ 593 offset[0] = offsetof(struct smbios_type_4, max_speed); 594 offset[1] = offsetof(struct smbios_type_4, current_speed); 595 expect_speed[0] = data->smbios_cpu_max_speed ? : 2000; 596 expect_speed[1] = data->smbios_cpu_curr_speed ? : 2000; 597 598 for (i = 0; i < 2; i++) { 599 real = qtest_readw(data->qts, addr + offset[i]); 600 if (real != expect_speed[i]) { 601 fprintf(stderr, "Unexpected SMBIOS CPU speed: real %u expect %u\n", 602 real, expect_speed[i]); 603 return false; 604 } 605 } 606 607 return true; 608 } 609 610 static void test_smbios_structs(test_data *data) 611 { 612 DECLARE_BITMAP(struct_bitmap, SMBIOS_MAX_TYPE+1) = { 0 }; 613 struct smbios_21_entry_point *ep_table = &data->smbios_ep_table; 614 uint32_t addr = le32_to_cpu(ep_table->structure_table_address); 615 int i, len, max_len = 0; 616 uint8_t type, prv, crt; 617 618 /* walk the smbios tables */ 619 for (i = 0; i < le16_to_cpu(ep_table->number_of_structures); i++) { 620 621 /* grab type and formatted area length from struct header */ 622 type = qtest_readb(data->qts, addr); 623 g_assert_cmpuint(type, <=, SMBIOS_MAX_TYPE); 624 len = qtest_readb(data->qts, addr + 1); 625 626 /* single-instance structs must not have been encountered before */ 627 if (smbios_single_instance(type)) { 628 g_assert(!test_bit(type, struct_bitmap)); 629 } 630 set_bit(type, struct_bitmap); 631 632 if (type == 4) { 633 g_assert(smbios_cpu_test(data, addr)); 634 } 635 636 /* seek to end of unformatted string area of this struct ("\0\0") */ 637 prv = crt = 1; 638 while (prv || crt) { 639 prv = crt; 640 crt = qtest_readb(data->qts, addr + len); 641 len++; 642 } 643 644 /* keep track of max. struct size */ 645 if (max_len < len) { 646 max_len = len; 647 g_assert_cmpuint(max_len, <=, ep_table->max_structure_size); 648 } 649 650 /* start of next structure */ 651 addr += len; 652 } 653 654 /* total table length and max struct size must match entry point values */ 655 g_assert_cmpuint(le16_to_cpu(ep_table->structure_table_length), ==, 656 addr - le32_to_cpu(ep_table->structure_table_address)); 657 g_assert_cmpuint(le16_to_cpu(ep_table->max_structure_size), ==, max_len); 658 659 /* required struct types must all be present */ 660 for (i = 0; i < data->required_struct_types_len; i++) { 661 g_assert(test_bit(data->required_struct_types[i], struct_bitmap)); 662 } 663 } 664 665 static void test_acpi_load_tables(test_data *data, bool use_uefi) 666 { 667 if (use_uefi) { 668 g_assert(data->scan_len); 669 data->rsdp_addr = acpi_find_rsdp_address_uefi(data->qts, 670 data->ram_start, data->scan_len); 671 } else { 672 boot_sector_test(data->qts); 673 data->rsdp_addr = acpi_find_rsdp_address(data->qts); 674 g_assert_cmphex(data->rsdp_addr, <, 0x100000); 675 } 676 677 data->tables = g_array_new(false, true, sizeof(AcpiSdtTable)); 678 test_acpi_rsdp_table(data); 679 test_acpi_rxsdt_table(data); 680 test_acpi_fadt_table(data); 681 } 682 683 static char *test_acpi_create_args(test_data *data, const char *params, 684 bool use_uefi) 685 { 686 char *args; 687 688 if (use_uefi) { 689 /* 690 * TODO: convert '-drive if=pflash' to new syntax (see e33763be7cd3) 691 * when arm/virt boad starts to support it. 692 */ 693 if (data->cd) { 694 args = g_strdup_printf("-machine %s %s -accel tcg " 695 "-nodefaults -nographic " 696 "-drive if=pflash,format=raw,file=%s,readonly=on " 697 "-drive if=pflash,format=raw,file=%s,snapshot=on -cdrom %s %s", 698 data->machine, data->tcg_only ? "" : "-accel kvm", 699 data->uefi_fl1, data->uefi_fl2, data->cd, params ? params : ""); 700 } else { 701 args = g_strdup_printf("-machine %s %s -accel tcg " 702 "-nodefaults -nographic " 703 "-drive if=pflash,format=raw,file=%s,readonly=on " 704 "-drive if=pflash,format=raw,file=%s,snapshot=on %s", 705 data->machine, data->tcg_only ? "" : "-accel kvm", 706 data->uefi_fl1, data->uefi_fl2, params ? params : ""); 707 } 708 } else { 709 args = g_strdup_printf("-machine %s %s -accel tcg " 710 "-net none -display none %s " 711 "-drive id=hd0,if=none,file=%s,format=raw " 712 "-device %s,drive=hd0 ", 713 data->machine, data->tcg_only ? "" : "-accel kvm", 714 params ? params : "", disk, 715 data->blkdev ?: "ide-hd"); 716 } 717 return args; 718 } 719 720 static void test_acpi_one(const char *params, test_data *data) 721 { 722 char *args; 723 bool use_uefi = data->uefi_fl1 && data->uefi_fl2; 724 725 args = test_acpi_create_args(data, params, use_uefi); 726 data->qts = qtest_init(args); 727 test_acpi_load_tables(data, use_uefi); 728 729 if (getenv(ACPI_REBUILD_EXPECTED_AML)) { 730 dump_aml_files(data, true); 731 } else { 732 test_acpi_asl(data); 733 } 734 735 /* 736 * TODO: make SMBIOS tests work with UEFI firmware, 737 * Bug on uefi-test-tools to provide entry point: 738 * https://bugs.launchpad.net/qemu/+bug/1821884 739 */ 740 if (!use_uefi) { 741 test_smbios_entry_point(data); 742 test_smbios_structs(data); 743 } 744 745 qtest_quit(data->qts); 746 g_free(args); 747 } 748 749 static uint8_t base_required_struct_types[] = { 750 0, 1, 3, 4, 16, 17, 19, 32, 127 751 }; 752 753 static void test_acpi_piix4_tcg(void) 754 { 755 test_data data; 756 757 /* Supplying -machine accel argument overrides the default (qtest). 758 * This is to make guest actually run. 759 */ 760 memset(&data, 0, sizeof(data)); 761 data.machine = MACHINE_PC; 762 data.required_struct_types = base_required_struct_types; 763 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 764 test_acpi_one(NULL, &data); 765 free_test_data(&data); 766 } 767 768 static void test_acpi_piix4_tcg_bridge(void) 769 { 770 test_data data; 771 772 memset(&data, 0, sizeof(data)); 773 data.machine = MACHINE_PC; 774 data.variant = ".bridge"; 775 data.required_struct_types = base_required_struct_types; 776 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 777 test_acpi_one("-device pci-bridge,chassis_nr=1", &data); 778 free_test_data(&data); 779 } 780 781 static void test_acpi_piix4_no_root_hotplug(void) 782 { 783 test_data data; 784 785 memset(&data, 0, sizeof(data)); 786 data.machine = MACHINE_PC; 787 data.variant = ".roothp"; 788 data.required_struct_types = base_required_struct_types; 789 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 790 test_acpi_one("-global PIIX4_PM.acpi-root-pci-hotplug=off " 791 "-device pci-bridge,chassis_nr=1", &data); 792 free_test_data(&data); 793 } 794 795 static void test_acpi_piix4_no_bridge_hotplug(void) 796 { 797 test_data data; 798 799 memset(&data, 0, sizeof(data)); 800 data.machine = MACHINE_PC; 801 data.variant = ".hpbridge"; 802 data.required_struct_types = base_required_struct_types; 803 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 804 test_acpi_one("-global PIIX4_PM.acpi-pci-hotplug-with-bridge-support=off " 805 "-device pci-bridge,chassis_nr=1", &data); 806 free_test_data(&data); 807 } 808 809 static void test_acpi_piix4_no_acpi_pci_hotplug(void) 810 { 811 test_data data; 812 813 memset(&data, 0, sizeof(data)); 814 data.machine = MACHINE_PC; 815 data.variant = ".hpbrroot"; 816 data.required_struct_types = base_required_struct_types; 817 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 818 test_acpi_one("-global PIIX4_PM.acpi-root-pci-hotplug=off " 819 "-global PIIX4_PM.acpi-pci-hotplug-with-bridge-support=off " 820 "-device pci-bridge,chassis_nr=1", &data); 821 free_test_data(&data); 822 } 823 824 static void test_acpi_q35_tcg(void) 825 { 826 test_data data; 827 828 memset(&data, 0, sizeof(data)); 829 data.machine = MACHINE_Q35; 830 data.required_struct_types = base_required_struct_types; 831 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 832 test_acpi_one(NULL, &data); 833 free_test_data(&data); 834 835 data.smbios_cpu_max_speed = 3000; 836 data.smbios_cpu_curr_speed = 2600; 837 test_acpi_one("-smbios type=4,max-speed=3000,current-speed=2600", &data); 838 free_test_data(&data); 839 } 840 841 static void test_acpi_q35_tcg_bridge(void) 842 { 843 test_data data; 844 845 memset(&data, 0, sizeof(data)); 846 data.machine = MACHINE_Q35; 847 data.variant = ".bridge"; 848 data.required_struct_types = base_required_struct_types; 849 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 850 test_acpi_one("-device pci-bridge,chassis_nr=1", 851 &data); 852 free_test_data(&data); 853 } 854 855 static void test_acpi_q35_tcg_mmio64(void) 856 { 857 test_data data = { 858 .machine = MACHINE_Q35, 859 .variant = ".mmio64", 860 .required_struct_types = base_required_struct_types, 861 .required_struct_types_len = ARRAY_SIZE(base_required_struct_types) 862 }; 863 864 test_acpi_one("-m 128M,slots=1,maxmem=2G " 865 "-object memory-backend-ram,id=ram0,size=128M " 866 "-numa node,memdev=ram0 " 867 "-device pci-testdev,membar=2G", 868 &data); 869 free_test_data(&data); 870 } 871 872 static void test_acpi_piix4_tcg_cphp(void) 873 { 874 test_data data; 875 876 memset(&data, 0, sizeof(data)); 877 data.machine = MACHINE_PC; 878 data.variant = ".cphp"; 879 test_acpi_one("-smp 2,cores=3,sockets=2,maxcpus=6" 880 " -object memory-backend-ram,id=ram0,size=64M" 881 " -object memory-backend-ram,id=ram1,size=64M" 882 " -numa node,memdev=ram0 -numa node,memdev=ram1" 883 " -numa dist,src=0,dst=1,val=21", 884 &data); 885 free_test_data(&data); 886 } 887 888 static void test_acpi_q35_tcg_cphp(void) 889 { 890 test_data data; 891 892 memset(&data, 0, sizeof(data)); 893 data.machine = MACHINE_Q35; 894 data.variant = ".cphp"; 895 test_acpi_one(" -smp 2,cores=3,sockets=2,maxcpus=6" 896 " -object memory-backend-ram,id=ram0,size=64M" 897 " -object memory-backend-ram,id=ram1,size=64M" 898 " -numa node,memdev=ram0 -numa node,memdev=ram1" 899 " -numa dist,src=0,dst=1,val=21", 900 &data); 901 free_test_data(&data); 902 } 903 904 static uint8_t ipmi_required_struct_types[] = { 905 0, 1, 3, 4, 16, 17, 19, 32, 38, 127 906 }; 907 908 static void test_acpi_q35_tcg_ipmi(void) 909 { 910 test_data data; 911 912 memset(&data, 0, sizeof(data)); 913 data.machine = MACHINE_Q35; 914 data.variant = ".ipmibt"; 915 data.required_struct_types = ipmi_required_struct_types; 916 data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types); 917 test_acpi_one("-device ipmi-bmc-sim,id=bmc0" 918 " -device isa-ipmi-bt,bmc=bmc0", 919 &data); 920 free_test_data(&data); 921 } 922 923 static void test_acpi_piix4_tcg_ipmi(void) 924 { 925 test_data data; 926 927 /* Supplying -machine accel argument overrides the default (qtest). 928 * This is to make guest actually run. 929 */ 930 memset(&data, 0, sizeof(data)); 931 data.machine = MACHINE_PC; 932 data.variant = ".ipmikcs"; 933 data.required_struct_types = ipmi_required_struct_types; 934 data.required_struct_types_len = ARRAY_SIZE(ipmi_required_struct_types); 935 test_acpi_one("-device ipmi-bmc-sim,id=bmc0" 936 " -device isa-ipmi-kcs,irq=0,bmc=bmc0", 937 &data); 938 free_test_data(&data); 939 } 940 941 static void test_acpi_q35_tcg_memhp(void) 942 { 943 test_data data; 944 945 memset(&data, 0, sizeof(data)); 946 data.machine = MACHINE_Q35; 947 data.variant = ".memhp"; 948 test_acpi_one(" -m 128,slots=3,maxmem=1G" 949 " -object memory-backend-ram,id=ram0,size=64M" 950 " -object memory-backend-ram,id=ram1,size=64M" 951 " -numa node,memdev=ram0 -numa node,memdev=ram1" 952 " -numa dist,src=0,dst=1,val=21", 953 &data); 954 free_test_data(&data); 955 } 956 957 static void test_acpi_piix4_tcg_memhp(void) 958 { 959 test_data data; 960 961 memset(&data, 0, sizeof(data)); 962 data.machine = MACHINE_PC; 963 data.variant = ".memhp"; 964 test_acpi_one(" -m 128,slots=3,maxmem=1G" 965 " -object memory-backend-ram,id=ram0,size=64M" 966 " -object memory-backend-ram,id=ram1,size=64M" 967 " -numa node,memdev=ram0 -numa node,memdev=ram1" 968 " -numa dist,src=0,dst=1,val=21", 969 &data); 970 free_test_data(&data); 971 } 972 973 static void test_acpi_piix4_tcg_nosmm(void) 974 { 975 test_data data; 976 977 memset(&data, 0, sizeof(data)); 978 data.machine = MACHINE_PC; 979 data.variant = ".nosmm"; 980 test_acpi_one("-machine smm=off", &data); 981 free_test_data(&data); 982 } 983 984 static void test_acpi_piix4_tcg_smm_compat(void) 985 { 986 test_data data; 987 988 memset(&data, 0, sizeof(data)); 989 data.machine = MACHINE_PC; 990 data.variant = ".smm-compat"; 991 test_acpi_one("-global PIIX4_PM.smm-compat=on", &data); 992 free_test_data(&data); 993 } 994 995 static void test_acpi_piix4_tcg_smm_compat_nosmm(void) 996 { 997 test_data data; 998 999 memset(&data, 0, sizeof(data)); 1000 data.machine = MACHINE_PC; 1001 data.variant = ".smm-compat-nosmm"; 1002 test_acpi_one("-global PIIX4_PM.smm-compat=on -machine smm=off", &data); 1003 free_test_data(&data); 1004 } 1005 1006 static void test_acpi_piix4_tcg_nohpet(void) 1007 { 1008 test_data data; 1009 1010 memset(&data, 0, sizeof(data)); 1011 data.machine = MACHINE_PC; 1012 data.variant = ".nohpet"; 1013 test_acpi_one("-no-hpet", &data); 1014 free_test_data(&data); 1015 } 1016 1017 static void test_acpi_q35_tcg_numamem(void) 1018 { 1019 test_data data; 1020 1021 memset(&data, 0, sizeof(data)); 1022 data.machine = MACHINE_Q35; 1023 data.variant = ".numamem"; 1024 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M" 1025 " -numa node -numa node,memdev=ram0", &data); 1026 free_test_data(&data); 1027 } 1028 1029 static void test_acpi_q35_kvm_xapic(void) 1030 { 1031 test_data data; 1032 1033 memset(&data, 0, sizeof(data)); 1034 data.machine = MACHINE_Q35; 1035 data.variant = ".xapic"; 1036 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M" 1037 " -numa node -numa node,memdev=ram0" 1038 " -machine kernel-irqchip=on -smp 1,maxcpus=288", &data); 1039 free_test_data(&data); 1040 } 1041 1042 static void test_acpi_q35_tcg_nosmm(void) 1043 { 1044 test_data data; 1045 1046 memset(&data, 0, sizeof(data)); 1047 data.machine = MACHINE_Q35; 1048 data.variant = ".nosmm"; 1049 test_acpi_one("-machine smm=off", &data); 1050 free_test_data(&data); 1051 } 1052 1053 static void test_acpi_q35_tcg_smm_compat(void) 1054 { 1055 test_data data; 1056 1057 memset(&data, 0, sizeof(data)); 1058 data.machine = MACHINE_Q35; 1059 data.variant = ".smm-compat"; 1060 test_acpi_one("-global ICH9-LPC.smm-compat=on", &data); 1061 free_test_data(&data); 1062 } 1063 1064 static void test_acpi_q35_tcg_smm_compat_nosmm(void) 1065 { 1066 test_data data; 1067 1068 memset(&data, 0, sizeof(data)); 1069 data.machine = MACHINE_Q35; 1070 data.variant = ".smm-compat-nosmm"; 1071 test_acpi_one("-global ICH9-LPC.smm-compat=on -machine smm=off", &data); 1072 free_test_data(&data); 1073 } 1074 1075 static void test_acpi_q35_tcg_nohpet(void) 1076 { 1077 test_data data; 1078 1079 memset(&data, 0, sizeof(data)); 1080 data.machine = MACHINE_Q35; 1081 data.variant = ".nohpet"; 1082 test_acpi_one("-no-hpet", &data); 1083 free_test_data(&data); 1084 } 1085 1086 static void test_acpi_q35_kvm_dmar(void) 1087 { 1088 test_data data; 1089 1090 memset(&data, 0, sizeof(data)); 1091 data.machine = MACHINE_Q35; 1092 data.variant = ".dmar"; 1093 test_acpi_one("-machine kernel-irqchip=split -accel kvm" 1094 " -device intel-iommu,intremap=on,device-iotlb=on", &data); 1095 free_test_data(&data); 1096 } 1097 1098 static void test_acpi_q35_tcg_ivrs(void) 1099 { 1100 test_data data; 1101 1102 memset(&data, 0, sizeof(data)); 1103 data.machine = MACHINE_Q35; 1104 data.variant = ".ivrs"; 1105 data.tcg_only = true, 1106 test_acpi_one(" -device amd-iommu", &data); 1107 free_test_data(&data); 1108 } 1109 1110 static void test_acpi_piix4_tcg_numamem(void) 1111 { 1112 test_data data; 1113 1114 memset(&data, 0, sizeof(data)); 1115 data.machine = MACHINE_PC; 1116 data.variant = ".numamem"; 1117 test_acpi_one(" -object memory-backend-ram,id=ram0,size=128M" 1118 " -numa node -numa node,memdev=ram0", &data); 1119 free_test_data(&data); 1120 } 1121 1122 uint64_t tpm_tis_base_addr; 1123 1124 static void test_acpi_tcg_tpm(const char *machine, const char *tpm_if, 1125 uint64_t base, enum TPMVersion tpm_version) 1126 { 1127 gchar *tmp_dir_name = g_strdup_printf("qemu-test_acpi_%s_tcg_%s.XXXXXX", 1128 machine, tpm_if); 1129 char *tmp_path = g_dir_make_tmp(tmp_dir_name, NULL); 1130 TPMTestState test; 1131 test_data data; 1132 GThread *thread; 1133 const char *suffix = tpm_version == TPM_VERSION_2_0 ? "tpm2" : "tpm12"; 1134 char *args, *variant = g_strdup_printf(".%s.%s", tpm_if, suffix); 1135 1136 tpm_tis_base_addr = base; 1137 1138 module_call_init(MODULE_INIT_QOM); 1139 1140 test.addr = g_new0(SocketAddress, 1); 1141 test.addr->type = SOCKET_ADDRESS_TYPE_UNIX; 1142 test.addr->u.q_unix.path = g_build_filename(tmp_path, "sock", NULL); 1143 g_mutex_init(&test.data_mutex); 1144 g_cond_init(&test.data_cond); 1145 test.data_cond_signal = false; 1146 test.tpm_version = tpm_version; 1147 1148 thread = g_thread_new(NULL, tpm_emu_ctrl_thread, &test); 1149 tpm_emu_test_wait_cond(&test); 1150 1151 memset(&data, 0, sizeof(data)); 1152 data.machine = machine; 1153 data.variant = variant; 1154 1155 args = g_strdup_printf( 1156 " -chardev socket,id=chr,path=%s" 1157 " -tpmdev emulator,id=dev,chardev=chr" 1158 " -device tpm-%s,tpmdev=dev", 1159 test.addr->u.q_unix.path, tpm_if); 1160 1161 test_acpi_one(args, &data); 1162 1163 g_thread_join(thread); 1164 g_unlink(test.addr->u.q_unix.path); 1165 qapi_free_SocketAddress(test.addr); 1166 g_rmdir(tmp_path); 1167 g_free(variant); 1168 g_free(tmp_path); 1169 g_free(tmp_dir_name); 1170 g_free(args); 1171 free_test_data(&data); 1172 } 1173 1174 static void test_acpi_q35_tcg_tpm2_tis(void) 1175 { 1176 test_acpi_tcg_tpm("q35", "tis", 0xFED40000, TPM_VERSION_2_0); 1177 } 1178 1179 static void test_acpi_q35_tcg_tpm12_tis(void) 1180 { 1181 test_acpi_tcg_tpm("q35", "tis", 0xFED40000, TPM_VERSION_1_2); 1182 } 1183 1184 static void test_acpi_tcg_dimm_pxm(const char *machine) 1185 { 1186 test_data data; 1187 1188 memset(&data, 0, sizeof(data)); 1189 data.machine = machine; 1190 data.variant = ".dimmpxm"; 1191 test_acpi_one(" -machine nvdimm=on,nvdimm-persistence=cpu" 1192 " -smp 4,sockets=4" 1193 " -m 128M,slots=3,maxmem=1G" 1194 " -object memory-backend-ram,id=ram0,size=32M" 1195 " -object memory-backend-ram,id=ram1,size=32M" 1196 " -object memory-backend-ram,id=ram2,size=32M" 1197 " -object memory-backend-ram,id=ram3,size=32M" 1198 " -numa node,memdev=ram0,nodeid=0" 1199 " -numa node,memdev=ram1,nodeid=1" 1200 " -numa node,memdev=ram2,nodeid=2" 1201 " -numa node,memdev=ram3,nodeid=3" 1202 " -numa cpu,node-id=0,socket-id=0" 1203 " -numa cpu,node-id=1,socket-id=1" 1204 " -numa cpu,node-id=2,socket-id=2" 1205 " -numa cpu,node-id=3,socket-id=3" 1206 " -object memory-backend-ram,id=ram4,size=128M" 1207 " -object memory-backend-ram,id=nvm0,size=128M" 1208 " -device pc-dimm,id=dimm0,memdev=ram4,node=1" 1209 " -device nvdimm,id=dimm1,memdev=nvm0,node=2", 1210 &data); 1211 free_test_data(&data); 1212 } 1213 1214 static void test_acpi_q35_tcg_dimm_pxm(void) 1215 { 1216 test_acpi_tcg_dimm_pxm(MACHINE_Q35); 1217 } 1218 1219 static void test_acpi_piix4_tcg_dimm_pxm(void) 1220 { 1221 test_acpi_tcg_dimm_pxm(MACHINE_PC); 1222 } 1223 1224 static void test_acpi_virt_tcg_memhp(void) 1225 { 1226 test_data data = { 1227 .machine = "virt", 1228 .tcg_only = true, 1229 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd", 1230 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd", 1231 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2", 1232 .ram_start = 0x40000000ULL, 1233 .scan_len = 256ULL * 1024 * 1024, 1234 }; 1235 1236 data.variant = ".memhp"; 1237 test_acpi_one(" -machine nvdimm=on" 1238 " -cpu cortex-a57" 1239 " -m 256M,slots=3,maxmem=1G" 1240 " -object memory-backend-ram,id=ram0,size=128M" 1241 " -object memory-backend-ram,id=ram1,size=128M" 1242 " -numa node,memdev=ram0 -numa node,memdev=ram1" 1243 " -numa dist,src=0,dst=1,val=21" 1244 " -object memory-backend-ram,id=ram2,size=128M" 1245 " -object memory-backend-ram,id=nvm0,size=128M" 1246 " -device pc-dimm,id=dimm0,memdev=ram2,node=0" 1247 " -device nvdimm,id=dimm1,memdev=nvm0,node=1", 1248 &data); 1249 1250 free_test_data(&data); 1251 1252 } 1253 1254 static void test_acpi_microvm_prepare(test_data *data) 1255 { 1256 memset(data, 0, sizeof(*data)); 1257 data->machine = "microvm"; 1258 data->required_struct_types = NULL; /* no smbios */ 1259 data->required_struct_types_len = 0; 1260 data->blkdev = "virtio-blk-device"; 1261 } 1262 1263 static void test_acpi_microvm_tcg(void) 1264 { 1265 test_data data; 1266 1267 test_acpi_microvm_prepare(&data); 1268 test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,rtc=off", 1269 &data); 1270 free_test_data(&data); 1271 } 1272 1273 static void test_acpi_microvm_usb_tcg(void) 1274 { 1275 test_data data; 1276 1277 test_acpi_microvm_prepare(&data); 1278 data.variant = ".usb"; 1279 test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,usb=on,rtc=off", 1280 &data); 1281 free_test_data(&data); 1282 } 1283 1284 static void test_acpi_microvm_rtc_tcg(void) 1285 { 1286 test_data data; 1287 1288 test_acpi_microvm_prepare(&data); 1289 data.variant = ".rtc"; 1290 test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,rtc=on", 1291 &data); 1292 free_test_data(&data); 1293 } 1294 1295 static void test_acpi_microvm_pcie_tcg(void) 1296 { 1297 test_data data; 1298 1299 test_acpi_microvm_prepare(&data); 1300 data.variant = ".pcie"; 1301 data.tcg_only = true; /* need constant host-phys-bits */ 1302 test_acpi_one(" -machine microvm,acpi=on,ioapic2=off,rtc=off,pcie=on", 1303 &data); 1304 free_test_data(&data); 1305 } 1306 1307 static void test_acpi_microvm_ioapic2_tcg(void) 1308 { 1309 test_data data; 1310 1311 test_acpi_microvm_prepare(&data); 1312 data.variant = ".ioapic2"; 1313 test_acpi_one(" -machine microvm,acpi=on,ioapic2=on,rtc=off", 1314 &data); 1315 free_test_data(&data); 1316 } 1317 1318 static void test_acpi_virt_tcg_numamem(void) 1319 { 1320 test_data data = { 1321 .machine = "virt", 1322 .tcg_only = true, 1323 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd", 1324 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd", 1325 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2", 1326 .ram_start = 0x40000000ULL, 1327 .scan_len = 128ULL * 1024 * 1024, 1328 }; 1329 1330 data.variant = ".numamem"; 1331 test_acpi_one(" -cpu cortex-a57" 1332 " -object memory-backend-ram,id=ram0,size=128M" 1333 " -numa node,memdev=ram0", 1334 &data); 1335 1336 free_test_data(&data); 1337 1338 } 1339 1340 static void test_acpi_virt_tcg_pxb(void) 1341 { 1342 test_data data = { 1343 .machine = "virt", 1344 .tcg_only = true, 1345 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd", 1346 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd", 1347 .ram_start = 0x40000000ULL, 1348 .scan_len = 128ULL * 1024 * 1024, 1349 }; 1350 /* 1351 * While using -cdrom, the cdrom would auto plugged into pxb-pcie, 1352 * the reason is the bus of pxb-pcie is also root bus, it would lead 1353 * to the error only PCI/PCIE bridge could plug onto pxb. 1354 * Therefore,thr cdrom is defined and plugged onto the scsi controller 1355 * to solve the conflicts. 1356 */ 1357 data.variant = ".pxb"; 1358 test_acpi_one(" -device pcie-root-port,chassis=1,id=pci.1" 1359 " -device virtio-scsi-pci,id=scsi0,bus=pci.1" 1360 " -drive file=" 1361 "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2," 1362 "if=none,media=cdrom,id=drive-scsi0-0-0-1,readonly=on" 1363 " -device scsi-cd,bus=scsi0.0,scsi-id=0," 1364 "drive=drive-scsi0-0-0-1,id=scsi0-0-0-1,bootindex=1" 1365 " -cpu cortex-a57" 1366 " -device pxb-pcie,bus_nr=128", 1367 &data); 1368 1369 free_test_data(&data); 1370 } 1371 1372 static void test_acpi_tcg_acpi_hmat(const char *machine) 1373 { 1374 test_data data; 1375 1376 memset(&data, 0, sizeof(data)); 1377 data.machine = machine; 1378 data.variant = ".acpihmat"; 1379 test_acpi_one(" -machine hmat=on" 1380 " -smp 2,sockets=2" 1381 " -m 128M,slots=2,maxmem=1G" 1382 " -object memory-backend-ram,size=64M,id=m0" 1383 " -object memory-backend-ram,size=64M,id=m1" 1384 " -numa node,nodeid=0,memdev=m0" 1385 " -numa node,nodeid=1,memdev=m1,initiator=0" 1386 " -numa cpu,node-id=0,socket-id=0" 1387 " -numa cpu,node-id=0,socket-id=1" 1388 " -numa hmat-lb,initiator=0,target=0,hierarchy=memory," 1389 "data-type=access-latency,latency=1" 1390 " -numa hmat-lb,initiator=0,target=0,hierarchy=memory," 1391 "data-type=access-bandwidth,bandwidth=65534M" 1392 " -numa hmat-lb,initiator=0,target=1,hierarchy=memory," 1393 "data-type=access-latency,latency=65534" 1394 " -numa hmat-lb,initiator=0,target=1,hierarchy=memory," 1395 "data-type=access-bandwidth,bandwidth=32767M" 1396 " -numa hmat-cache,node-id=0,size=10K,level=1," 1397 "associativity=direct,policy=write-back,line=8" 1398 " -numa hmat-cache,node-id=1,size=10K,level=1," 1399 "associativity=direct,policy=write-back,line=8", 1400 &data); 1401 free_test_data(&data); 1402 } 1403 1404 static void test_acpi_q35_tcg_acpi_hmat(void) 1405 { 1406 test_acpi_tcg_acpi_hmat(MACHINE_Q35); 1407 } 1408 1409 static void test_acpi_piix4_tcg_acpi_hmat(void) 1410 { 1411 test_acpi_tcg_acpi_hmat(MACHINE_PC); 1412 } 1413 1414 static void test_acpi_virt_tcg(void) 1415 { 1416 test_data data = { 1417 .machine = "virt", 1418 .tcg_only = true, 1419 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd", 1420 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd", 1421 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2", 1422 .ram_start = 0x40000000ULL, 1423 .scan_len = 128ULL * 1024 * 1024, 1424 }; 1425 1426 data.smbios_cpu_max_speed = 2900; 1427 data.smbios_cpu_curr_speed = 2700; 1428 test_acpi_one("-cpu cortex-a57 " 1429 "-smbios type=4,max-speed=2900,current-speed=2700", &data); 1430 free_test_data(&data); 1431 } 1432 1433 static void test_oem_fields(test_data *data) 1434 { 1435 int i; 1436 char oem_id[6]; 1437 char oem_table_id[8]; 1438 1439 strpadcpy(oem_id, sizeof oem_id, OEM_ID, ' '); 1440 strpadcpy(oem_table_id, sizeof oem_table_id, OEM_TABLE_ID, ' '); 1441 for (i = 0; i < data->tables->len; ++i) { 1442 AcpiSdtTable *sdt; 1443 1444 sdt = &g_array_index(data->tables, AcpiSdtTable, i); 1445 /* FACS doesn't have OEMID and OEMTABLEID fields */ 1446 if (compare_signature(sdt, "FACS")) { 1447 continue; 1448 } 1449 1450 g_assert(memcmp(sdt->aml + 10, oem_id, 6) == 0); 1451 g_assert(memcmp(sdt->aml + 16, oem_table_id, 8) == 0); 1452 } 1453 } 1454 1455 static void test_acpi_oem_fields_pc(void) 1456 { 1457 test_data data; 1458 char *args; 1459 1460 memset(&data, 0, sizeof(data)); 1461 data.machine = MACHINE_PC; 1462 data.required_struct_types = base_required_struct_types; 1463 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 1464 1465 args = test_acpi_create_args(&data, 1466 OEM_TEST_ARGS, false); 1467 data.qts = qtest_init(args); 1468 test_acpi_load_tables(&data, false); 1469 test_oem_fields(&data); 1470 qtest_quit(data.qts); 1471 free_test_data(&data); 1472 g_free(args); 1473 } 1474 1475 static void test_acpi_oem_fields_q35(void) 1476 { 1477 test_data data; 1478 char *args; 1479 1480 memset(&data, 0, sizeof(data)); 1481 data.machine = MACHINE_Q35; 1482 data.required_struct_types = base_required_struct_types; 1483 data.required_struct_types_len = ARRAY_SIZE(base_required_struct_types); 1484 1485 args = test_acpi_create_args(&data, 1486 OEM_TEST_ARGS, false); 1487 data.qts = qtest_init(args); 1488 test_acpi_load_tables(&data, false); 1489 test_oem_fields(&data); 1490 qtest_quit(data.qts); 1491 free_test_data(&data); 1492 g_free(args); 1493 } 1494 1495 static void test_acpi_oem_fields_microvm(void) 1496 { 1497 test_data data; 1498 char *args; 1499 1500 test_acpi_microvm_prepare(&data); 1501 1502 args = test_acpi_create_args(&data, 1503 OEM_TEST_ARGS",acpi=on", false); 1504 data.qts = qtest_init(args); 1505 test_acpi_load_tables(&data, false); 1506 test_oem_fields(&data); 1507 qtest_quit(data.qts); 1508 free_test_data(&data); 1509 g_free(args); 1510 } 1511 1512 static void test_acpi_oem_fields_virt(void) 1513 { 1514 test_data data = { 1515 .machine = "virt", 1516 .tcg_only = true, 1517 .uefi_fl1 = "pc-bios/edk2-aarch64-code.fd", 1518 .uefi_fl2 = "pc-bios/edk2-arm-vars.fd", 1519 .cd = "tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2", 1520 .ram_start = 0x40000000ULL, 1521 .scan_len = 128ULL * 1024 * 1024, 1522 }; 1523 char *args; 1524 1525 args = test_acpi_create_args(&data, 1526 "-cpu cortex-a57 "OEM_TEST_ARGS, true); 1527 data.qts = qtest_init(args); 1528 test_acpi_load_tables(&data, true); 1529 test_oem_fields(&data); 1530 qtest_quit(data.qts); 1531 free_test_data(&data); 1532 g_free(args); 1533 } 1534 1535 1536 int main(int argc, char *argv[]) 1537 { 1538 const char *arch = qtest_get_arch(); 1539 const bool has_kvm = qtest_has_accel("kvm"); 1540 const bool has_tcg = qtest_has_accel("tcg"); 1541 int ret; 1542 1543 g_test_init(&argc, &argv, NULL); 1544 1545 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) { 1546 ret = boot_sector_init(disk); 1547 if (ret) { 1548 return ret; 1549 } 1550 qtest_add_func("acpi/q35/oem-fields", test_acpi_oem_fields_q35); 1551 if (tpm_model_is_available("-machine q35", "tpm-tis")) { 1552 qtest_add_func("acpi/q35/tpm2-tis", test_acpi_q35_tcg_tpm2_tis); 1553 qtest_add_func("acpi/q35/tpm12-tis", test_acpi_q35_tcg_tpm12_tis); 1554 } 1555 qtest_add_func("acpi/piix4", test_acpi_piix4_tcg); 1556 qtest_add_func("acpi/oem-fields", test_acpi_oem_fields_pc); 1557 qtest_add_func("acpi/piix4/bridge", test_acpi_piix4_tcg_bridge); 1558 qtest_add_func("acpi/piix4/pci-hotplug/no_root_hotplug", 1559 test_acpi_piix4_no_root_hotplug); 1560 qtest_add_func("acpi/piix4/pci-hotplug/no_bridge_hotplug", 1561 test_acpi_piix4_no_bridge_hotplug); 1562 qtest_add_func("acpi/piix4/pci-hotplug/off", 1563 test_acpi_piix4_no_acpi_pci_hotplug); 1564 qtest_add_func("acpi/q35", test_acpi_q35_tcg); 1565 qtest_add_func("acpi/q35/bridge", test_acpi_q35_tcg_bridge); 1566 qtest_add_func("acpi/q35/mmio64", test_acpi_q35_tcg_mmio64); 1567 qtest_add_func("acpi/piix4/ipmi", test_acpi_piix4_tcg_ipmi); 1568 qtest_add_func("acpi/q35/ipmi", test_acpi_q35_tcg_ipmi); 1569 qtest_add_func("acpi/piix4/cpuhp", test_acpi_piix4_tcg_cphp); 1570 qtest_add_func("acpi/q35/cpuhp", test_acpi_q35_tcg_cphp); 1571 qtest_add_func("acpi/piix4/memhp", test_acpi_piix4_tcg_memhp); 1572 qtest_add_func("acpi/q35/memhp", test_acpi_q35_tcg_memhp); 1573 qtest_add_func("acpi/piix4/numamem", test_acpi_piix4_tcg_numamem); 1574 qtest_add_func("acpi/q35/numamem", test_acpi_q35_tcg_numamem); 1575 qtest_add_func("acpi/piix4/nosmm", test_acpi_piix4_tcg_nosmm); 1576 qtest_add_func("acpi/piix4/smm-compat", 1577 test_acpi_piix4_tcg_smm_compat); 1578 qtest_add_func("acpi/piix4/smm-compat-nosmm", 1579 test_acpi_piix4_tcg_smm_compat_nosmm); 1580 qtest_add_func("acpi/piix4/nohpet", test_acpi_piix4_tcg_nohpet); 1581 qtest_add_func("acpi/q35/nosmm", test_acpi_q35_tcg_nosmm); 1582 qtest_add_func("acpi/q35/smm-compat", 1583 test_acpi_q35_tcg_smm_compat); 1584 qtest_add_func("acpi/q35/smm-compat-nosmm", 1585 test_acpi_q35_tcg_smm_compat_nosmm); 1586 qtest_add_func("acpi/q35/nohpet", test_acpi_q35_tcg_nohpet); 1587 qtest_add_func("acpi/piix4/dimmpxm", test_acpi_piix4_tcg_dimm_pxm); 1588 qtest_add_func("acpi/q35/dimmpxm", test_acpi_q35_tcg_dimm_pxm); 1589 qtest_add_func("acpi/piix4/acpihmat", test_acpi_piix4_tcg_acpi_hmat); 1590 qtest_add_func("acpi/q35/acpihmat", test_acpi_q35_tcg_acpi_hmat); 1591 qtest_add_func("acpi/microvm", test_acpi_microvm_tcg); 1592 qtest_add_func("acpi/microvm/usb", test_acpi_microvm_usb_tcg); 1593 qtest_add_func("acpi/microvm/rtc", test_acpi_microvm_rtc_tcg); 1594 qtest_add_func("acpi/microvm/ioapic2", test_acpi_microvm_ioapic2_tcg); 1595 qtest_add_func("acpi/microvm/oem-fields", test_acpi_oem_fields_microvm); 1596 if (has_tcg) { 1597 qtest_add_func("acpi/q35/ivrs", test_acpi_q35_tcg_ivrs); 1598 if (strcmp(arch, "x86_64") == 0) { 1599 qtest_add_func("acpi/microvm/pcie", test_acpi_microvm_pcie_tcg); 1600 } 1601 } 1602 if (has_kvm) { 1603 qtest_add_func("acpi/q35/kvm/xapic", test_acpi_q35_kvm_xapic); 1604 qtest_add_func("acpi/q35/kvm/dmar", test_acpi_q35_kvm_dmar); 1605 } 1606 } else if (strcmp(arch, "aarch64") == 0) { 1607 if (has_tcg) { 1608 qtest_add_func("acpi/virt", test_acpi_virt_tcg); 1609 qtest_add_func("acpi/virt/numamem", test_acpi_virt_tcg_numamem); 1610 qtest_add_func("acpi/virt/memhp", test_acpi_virt_tcg_memhp); 1611 qtest_add_func("acpi/virt/pxb", test_acpi_virt_tcg_pxb); 1612 qtest_add_func("acpi/virt/oem-fields", test_acpi_oem_fields_virt); 1613 } 1614 } 1615 ret = g_test_run(); 1616 boot_sector_cleanup(disk); 1617 return ret; 1618 } 1619