2 * Boot order test cases.
4 * Copyright (c) 2013 Red Hat Inc.
7 * Michael S. Tsirkin <mst@redhat.com>,
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include <glib/gstdio.h>
15 #include "qemu-common.h"
16 #include "hw/smbios/smbios.h"
17 #include "qemu/bitmap.h"
18 #include "acpi-utils.h"
19 #include "boot-sector.h"
21 #define MACHINE_PC "pc"
22 #define MACHINE_Q35 "q35"
24 #define ACPI_REBUILD_EXPECTED_AML "TEST_ACPI_REBUILD_AML"
30 AcpiRsdpDescriptor rsdp_table
;
31 AcpiRsdtDescriptorRev1 rsdt_table
;
32 AcpiFadtDescriptorRev3 fadt_table
;
33 AcpiFacsDescriptorRev1 facs_table
;
34 uint32_t *rsdt_tables_addr
;
37 uint32_t smbios_ep_addr
;
38 struct smbios_21_entry_point smbios_ep_table
;
39 uint8_t *required_struct_types
;
40 int required_struct_types_len
;
43 static char disk
[] = "tests/acpi-test-disk-XXXXXX";
44 static const char *data_dir
= "tests/acpi-test-data";
46 static const char *iasl
= stringify(CONFIG_IASL
);
48 static const char *iasl
;
51 static void free_test_data(test_data
*data
)
56 g_free(data
->rsdt_tables_addr
);
58 for (i
= 0; i
< data
->tables
->len
; ++i
) {
59 temp
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
62 !temp
->tmp_files_retain
&&
63 g_strstr_len(temp
->aml_file
, -1, "aml-")) {
64 unlink(temp
->aml_file
);
66 g_free(temp
->aml_file
);
69 !temp
->tmp_files_retain
) {
70 unlink(temp
->asl_file
);
72 g_free(temp
->asl_file
);
75 g_array_free(data
->tables
, true);
78 static void test_acpi_rsdp_address(test_data
*data
)
80 uint32_t off
= acpi_find_rsdp_address();
81 g_assert_cmphex(off
, <, 0x100000);
82 data
->rsdp_addr
= off
;
85 static void test_acpi_rsdp_table(test_data
*data
)
87 AcpiRsdpDescriptor
*rsdp_table
= &data
->rsdp_table
;
88 uint32_t addr
= data
->rsdp_addr
;
90 acpi_parse_rsdp_table(addr
, rsdp_table
);
92 /* rsdp checksum is not for the whole table, but for the first 20 bytes */
93 g_assert(!acpi_calc_checksum((uint8_t *)rsdp_table
, 20));
96 static void test_acpi_rsdt_table(test_data
*data
)
98 AcpiRsdtDescriptorRev1
*rsdt_table
= &data
->rsdt_table
;
99 uint32_t addr
= le32_to_cpu(data
->rsdp_table
.rsdt_physical_address
);
103 uint32_t rsdt_table_length
;
105 /* read the header */
106 ACPI_READ_TABLE_HEADER(rsdt_table
, addr
);
107 ACPI_ASSERT_CMP(rsdt_table
->signature
, "RSDT");
109 rsdt_table_length
= le32_to_cpu(rsdt_table
->length
);
111 /* compute the table entries in rsdt */
112 tables_nr
= (rsdt_table_length
- sizeof(AcpiRsdtDescriptorRev1
)) /
114 g_assert(tables_nr
> 0);
116 /* get the addresses of the tables pointed by rsdt */
117 tables
= g_new0(uint32_t, tables_nr
);
118 ACPI_READ_ARRAY_PTR(tables
, tables_nr
, addr
);
120 checksum
= acpi_calc_checksum((uint8_t *)rsdt_table
, rsdt_table_length
) +
121 acpi_calc_checksum((uint8_t *)tables
,
122 tables_nr
* sizeof(uint32_t));
125 /* SSDT tables after FADT */
126 data
->rsdt_tables_addr
= tables
;
127 data
->rsdt_tables_nr
= tables_nr
;
130 static void test_acpi_fadt_table(test_data
*data
)
132 AcpiFadtDescriptorRev3
*fadt_table
= &data
->fadt_table
;
135 /* FADT table comes first */
136 addr
= le32_to_cpu(data
->rsdt_tables_addr
[0]);
137 ACPI_READ_TABLE_HEADER(fadt_table
, addr
);
139 ACPI_READ_FIELD(fadt_table
->firmware_ctrl
, addr
);
140 ACPI_READ_FIELD(fadt_table
->dsdt
, addr
);
141 ACPI_READ_FIELD(fadt_table
->model
, addr
);
142 ACPI_READ_FIELD(fadt_table
->reserved1
, addr
);
143 ACPI_READ_FIELD(fadt_table
->sci_int
, addr
);
144 ACPI_READ_FIELD(fadt_table
->smi_cmd
, addr
);
145 ACPI_READ_FIELD(fadt_table
->acpi_enable
, addr
);
146 ACPI_READ_FIELD(fadt_table
->acpi_disable
, addr
);
147 ACPI_READ_FIELD(fadt_table
->S4bios_req
, addr
);
148 ACPI_READ_FIELD(fadt_table
->reserved2
, addr
);
149 ACPI_READ_FIELD(fadt_table
->pm1a_evt_blk
, addr
);
150 ACPI_READ_FIELD(fadt_table
->pm1b_evt_blk
, addr
);
151 ACPI_READ_FIELD(fadt_table
->pm1a_cnt_blk
, addr
);
152 ACPI_READ_FIELD(fadt_table
->pm1b_cnt_blk
, addr
);
153 ACPI_READ_FIELD(fadt_table
->pm2_cnt_blk
, addr
);
154 ACPI_READ_FIELD(fadt_table
->pm_tmr_blk
, addr
);
155 ACPI_READ_FIELD(fadt_table
->gpe0_blk
, addr
);
156 ACPI_READ_FIELD(fadt_table
->gpe1_blk
, addr
);
157 ACPI_READ_FIELD(fadt_table
->pm1_evt_len
, addr
);
158 ACPI_READ_FIELD(fadt_table
->pm1_cnt_len
, addr
);
159 ACPI_READ_FIELD(fadt_table
->pm2_cnt_len
, addr
);
160 ACPI_READ_FIELD(fadt_table
->pm_tmr_len
, addr
);
161 ACPI_READ_FIELD(fadt_table
->gpe0_blk_len
, addr
);
162 ACPI_READ_FIELD(fadt_table
->gpe1_blk_len
, addr
);
163 ACPI_READ_FIELD(fadt_table
->gpe1_base
, addr
);
164 ACPI_READ_FIELD(fadt_table
->reserved3
, addr
);
165 ACPI_READ_FIELD(fadt_table
->plvl2_lat
, addr
);
166 ACPI_READ_FIELD(fadt_table
->plvl3_lat
, addr
);
167 ACPI_READ_FIELD(fadt_table
->flush_size
, addr
);
168 ACPI_READ_FIELD(fadt_table
->flush_stride
, addr
);
169 ACPI_READ_FIELD(fadt_table
->duty_offset
, addr
);
170 ACPI_READ_FIELD(fadt_table
->duty_width
, addr
);
171 ACPI_READ_FIELD(fadt_table
->day_alrm
, addr
);
172 ACPI_READ_FIELD(fadt_table
->mon_alrm
, addr
);
173 ACPI_READ_FIELD(fadt_table
->century
, addr
);
174 ACPI_READ_FIELD(fadt_table
->boot_flags
, addr
);
175 ACPI_READ_FIELD(fadt_table
->reserved
, addr
);
176 ACPI_READ_FIELD(fadt_table
->flags
, addr
);
177 ACPI_READ_GENERIC_ADDRESS(fadt_table
->reset_register
, addr
);
178 ACPI_READ_FIELD(fadt_table
->reset_value
, addr
);
179 ACPI_READ_FIELD(fadt_table
->arm_boot_flags
, addr
);
180 ACPI_READ_FIELD(fadt_table
->minor_revision
, addr
);
181 ACPI_READ_FIELD(fadt_table
->x_facs
, addr
);
182 ACPI_READ_FIELD(fadt_table
->x_dsdt
, addr
);
183 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xpm1a_event_block
, addr
);
184 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xpm1b_event_block
, addr
);
185 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xpm1a_control_block
, addr
);
186 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xpm1b_control_block
, addr
);
187 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xpm2_control_block
, addr
);
188 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xpm_timer_block
, addr
);
189 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xgpe0_block
, addr
);
190 ACPI_READ_GENERIC_ADDRESS(fadt_table
->xgpe1_block
, addr
);
192 ACPI_ASSERT_CMP(fadt_table
->signature
, "FACP");
193 g_assert(!acpi_calc_checksum((uint8_t *)fadt_table
,
194 le32_to_cpu(fadt_table
->length
)));
197 static void test_acpi_facs_table(test_data
*data
)
199 AcpiFacsDescriptorRev1
*facs_table
= &data
->facs_table
;
200 uint32_t addr
= le32_to_cpu(data
->fadt_table
.firmware_ctrl
);
202 ACPI_READ_FIELD(facs_table
->signature
, addr
);
203 ACPI_READ_FIELD(facs_table
->length
, addr
);
204 ACPI_READ_FIELD(facs_table
->hardware_signature
, addr
);
205 ACPI_READ_FIELD(facs_table
->firmware_waking_vector
, addr
);
206 ACPI_READ_FIELD(facs_table
->global_lock
, addr
);
207 ACPI_READ_FIELD(facs_table
->flags
, addr
);
208 ACPI_READ_ARRAY(facs_table
->resverved3
, addr
);
210 ACPI_ASSERT_CMP(facs_table
->signature
, "FACS");
214 * load ACPI table at @addr into table descriptor @sdt_table
215 * and check that header checksum matches actual one.
217 static void fetch_table(AcpiSdtTable
*sdt_table
, uint32_t addr
)
221 memset(sdt_table
, 0, sizeof(*sdt_table
));
222 ACPI_READ_TABLE_HEADER(&sdt_table
->header
, addr
);
224 sdt_table
->aml_len
= le32_to_cpu(sdt_table
->header
.length
)
225 - sizeof(AcpiTableHeader
);
226 sdt_table
->aml
= g_malloc0(sdt_table
->aml_len
);
227 ACPI_READ_ARRAY_PTR(sdt_table
->aml
, sdt_table
->aml_len
, addr
);
229 checksum
= acpi_calc_checksum((uint8_t *)sdt_table
,
230 sizeof(AcpiTableHeader
)) +
231 acpi_calc_checksum((uint8_t *)sdt_table
->aml
,
236 static void test_acpi_dsdt_table(test_data
*data
)
238 AcpiSdtTable dsdt_table
;
239 uint32_t addr
= le32_to_cpu(data
->fadt_table
.dsdt
);
241 fetch_table(&dsdt_table
, addr
);
242 ACPI_ASSERT_CMP(dsdt_table
.header
.signature
, "DSDT");
244 /* Since DSDT isn't in RSDT, add DSDT to ASL test tables list manually */
245 g_array_append_val(data
->tables
, dsdt_table
);
248 /* Load all tables and add to test list directly RSDT referenced tables */
249 static void fetch_rsdt_referenced_tables(test_data
*data
)
251 int tables_nr
= data
->rsdt_tables_nr
- 1; /* fadt is first */
254 for (i
= 0; i
< tables_nr
; i
++) {
255 AcpiSdtTable ssdt_table
;
258 addr
= le32_to_cpu(data
->rsdt_tables_addr
[i
+ 1]); /* fadt is first */
259 fetch_table(&ssdt_table
, addr
);
261 /* Add table to ASL test tables list */
262 g_array_append_val(data
->tables
, ssdt_table
);
266 static void dump_aml_files(test_data
*data
, bool rebuild
)
269 GError
*error
= NULL
;
270 gchar
*aml_file
= NULL
;
275 for (i
= 0; i
< data
->tables
->len
; ++i
) {
276 const char *ext
= data
->variant
? data
->variant
: "";
277 sdt
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
281 aml_file
= g_strdup_printf("%s/%s/%.4s%s", data_dir
, data
->machine
,
282 (gchar
*)&sdt
->header
.signature
, ext
);
283 fd
= g_open(aml_file
, O_WRONLY
|O_TRUNC
|O_CREAT
,
284 S_IRUSR
|S_IWUSR
|S_IRGRP
|S_IWGRP
|S_IROTH
);
286 fd
= g_file_open_tmp("aml-XXXXXX", &sdt
->aml_file
, &error
);
287 g_assert_no_error(error
);
291 ret
= qemu_write_full(fd
, sdt
, sizeof(AcpiTableHeader
));
292 g_assert(ret
== sizeof(AcpiTableHeader
));
293 ret
= qemu_write_full(fd
, sdt
->aml
, sdt
->aml_len
);
294 g_assert(ret
== sdt
->aml_len
);
302 static bool compare_signature(AcpiSdtTable
*sdt
, const char *signature
)
304 return !memcmp(&sdt
->header
.signature
, signature
, 4);
307 static bool load_asl(GArray
*sdts
, AcpiSdtTable
*sdt
)
310 GError
*error
= NULL
;
311 GString
*command_line
= g_string_new(iasl
);
313 gchar
*out
, *out_err
;
317 fd
= g_file_open_tmp("asl-XXXXXX.dsl", &sdt
->asl_file
, &error
);
318 g_assert_no_error(error
);
321 /* build command line */
322 g_string_append_printf(command_line
, " -p %s ", sdt
->asl_file
);
323 if (compare_signature(sdt
, "DSDT") ||
324 compare_signature(sdt
, "SSDT")) {
325 for (i
= 0; i
< sdts
->len
; ++i
) {
326 temp
= &g_array_index(sdts
, AcpiSdtTable
, i
);
327 if (compare_signature(temp
, "DSDT") ||
328 compare_signature(temp
, "SSDT")) {
329 g_string_append_printf(command_line
, "-e %s ", temp
->aml_file
);
333 g_string_append_printf(command_line
, "-d %s", sdt
->aml_file
);
335 /* pass 'out' and 'out_err' in order to be redirected */
336 ret
= g_spawn_command_line_sync(command_line
->str
, &out
, &out_err
, NULL
, &error
);
337 g_assert_no_error(error
);
339 ret
= g_file_get_contents(sdt
->asl_file
, (gchar
**)&sdt
->asl
,
340 &sdt
->asl_len
, &error
);
342 g_assert_no_error(error
);
343 ret
= (sdt
->asl_len
> 0);
348 g_string_free(command_line
, true);
353 #define COMMENT_END "*/"
354 #define DEF_BLOCK "DefinitionBlock ("
355 #define BLOCK_NAME_END ","
357 static GString
*normalize_asl(gchar
*asl_code
)
359 GString
*asl
= g_string_new(asl_code
);
360 gchar
*comment
, *block_name
;
362 /* strip comments (different generation days) */
363 comment
= g_strstr_len(asl
->str
, asl
->len
, COMMENT_END
);
365 comment
+= strlen(COMMENT_END
);
366 while (*comment
== '\n') {
369 asl
= g_string_erase(asl
, 0, comment
- asl
->str
);
372 /* strip def block name (it has file path in it) */
373 if (g_str_has_prefix(asl
->str
, DEF_BLOCK
)) {
374 block_name
= g_strstr_len(asl
->str
, asl
->len
, BLOCK_NAME_END
);
375 g_assert(block_name
);
376 asl
= g_string_erase(asl
, 0,
377 block_name
+ sizeof(BLOCK_NAME_END
) - asl
->str
);
383 static GArray
*load_expected_aml(test_data
*data
)
387 GError
*error
= NULL
;
390 GArray
*exp_tables
= g_array_new(false, true, sizeof(AcpiSdtTable
));
391 for (i
= 0; i
< data
->tables
->len
; ++i
) {
392 AcpiSdtTable exp_sdt
;
393 gchar
*aml_file
= NULL
;
394 const char *ext
= data
->variant
? data
->variant
: "";
396 sdt
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
398 memset(&exp_sdt
, 0, sizeof(exp_sdt
));
399 exp_sdt
.header
.signature
= sdt
->header
.signature
;
402 aml_file
= g_strdup_printf("%s/%s/%.4s%s", data_dir
, data
->machine
,
403 (gchar
*)&sdt
->header
.signature
, ext
);
405 fprintf(stderr
, "\nLooking for expected file '%s'\n", aml_file
);
407 if (g_file_test(aml_file
, G_FILE_TEST_EXISTS
)) {
408 exp_sdt
.aml_file
= aml_file
;
409 } else if (*ext
!= '\0') {
410 /* try fallback to generic (extention less) expected file */
415 g_assert(exp_sdt
.aml_file
);
417 fprintf(stderr
, "\nUsing expected file '%s'\n", aml_file
);
419 ret
= g_file_get_contents(aml_file
, &exp_sdt
.aml
,
420 &exp_sdt
.aml_len
, &error
);
422 g_assert_no_error(error
);
423 g_assert(exp_sdt
.aml
);
424 g_assert(exp_sdt
.aml_len
);
426 g_array_append_val(exp_tables
, exp_sdt
);
432 /* test the list of tables in @data->tables against reference tables */
433 static void test_acpi_asl(test_data
*data
)
436 AcpiSdtTable
*sdt
, *exp_sdt
;
438 gboolean exp_err
, err
;
440 memset(&exp_data
, 0, sizeof(exp_data
));
441 exp_data
.tables
= load_expected_aml(data
);
442 dump_aml_files(data
, false);
443 for (i
= 0; i
< data
->tables
->len
; ++i
) {
444 GString
*asl
, *exp_asl
;
446 sdt
= &g_array_index(data
->tables
, AcpiSdtTable
, i
);
447 exp_sdt
= &g_array_index(exp_data
.tables
, AcpiSdtTable
, i
);
449 err
= load_asl(data
->tables
, sdt
);
450 asl
= normalize_asl(sdt
->asl
);
452 exp_err
= load_asl(exp_data
.tables
, exp_sdt
);
453 exp_asl
= normalize_asl(exp_sdt
->asl
);
455 /* TODO: check for warnings */
456 g_assert(!err
|| exp_err
);
458 if (g_strcmp0(asl
->str
, exp_asl
->str
)) {
461 "Warning! iasl couldn't parse the expected aml\n");
463 uint32_t signature
= cpu_to_le32(exp_sdt
->header
.signature
);
464 sdt
->tmp_files_retain
= true;
465 exp_sdt
->tmp_files_retain
= true;
467 "acpi-test: Warning! %.4s mismatch. "
468 "Actual [asl:%s, aml:%s], Expected [asl:%s, aml:%s].\n",
470 sdt
->asl_file
, sdt
->aml_file
,
471 exp_sdt
->asl_file
, exp_sdt
->aml_file
);
473 const char *diff_cmd
= getenv("DIFF");
475 int ret G_GNUC_UNUSED
;
476 char *diff
= g_strdup_printf("%s %s %s", diff_cmd
,
477 exp_sdt
->asl_file
, sdt
->asl_file
);
481 fprintf(stderr
, "acpi-test: Warning. not showing "
482 "difference since no diff utility is specified. "
483 "Set 'DIFF' environment variable to a preferred "
484 "diff utility and run 'make V=1 check' again to "
485 "see ASL difference.");
490 g_string_free(asl
, true);
491 g_string_free(exp_asl
, true);
494 free_test_data(&exp_data
);
497 static bool smbios_ep_table_ok(test_data
*data
)
499 struct smbios_21_entry_point
*ep_table
= &data
->smbios_ep_table
;
500 uint32_t addr
= data
->smbios_ep_addr
;
502 ACPI_READ_ARRAY(ep_table
->anchor_string
, addr
);
503 if (memcmp(ep_table
->anchor_string
, "_SM_", 4)) {
506 ACPI_READ_FIELD(ep_table
->checksum
, addr
);
507 ACPI_READ_FIELD(ep_table
->length
, addr
);
508 ACPI_READ_FIELD(ep_table
->smbios_major_version
, addr
);
509 ACPI_READ_FIELD(ep_table
->smbios_minor_version
, addr
);
510 ACPI_READ_FIELD(ep_table
->max_structure_size
, addr
);
511 ACPI_READ_FIELD(ep_table
->entry_point_revision
, addr
);
512 ACPI_READ_ARRAY(ep_table
->formatted_area
, addr
);
513 ACPI_READ_ARRAY(ep_table
->intermediate_anchor_string
, addr
);
514 if (memcmp(ep_table
->intermediate_anchor_string
, "_DMI_", 5)) {
517 ACPI_READ_FIELD(ep_table
->intermediate_checksum
, addr
);
518 ACPI_READ_FIELD(ep_table
->structure_table_length
, addr
);
519 if (ep_table
->structure_table_length
== 0) {
522 ACPI_READ_FIELD(ep_table
->structure_table_address
, addr
);
523 ACPI_READ_FIELD(ep_table
->number_of_structures
, addr
);
524 if (ep_table
->number_of_structures
== 0) {
527 ACPI_READ_FIELD(ep_table
->smbios_bcd_revision
, addr
);
528 if (acpi_calc_checksum((uint8_t *)ep_table
, sizeof *ep_table
) ||
529 acpi_calc_checksum((uint8_t *)ep_table
+ 0x10,
530 sizeof *ep_table
- 0x10)) {
536 static void test_smbios_entry_point(test_data
*data
)
540 /* find smbios entry point structure */
541 for (off
= 0xf0000; off
< 0x100000; off
+= 0x10) {
542 uint8_t sig
[] = "_SM_";
545 for (i
= 0; i
< sizeof sig
- 1; ++i
) {
546 sig
[i
] = readb(off
+ i
);
549 if (!memcmp(sig
, "_SM_", sizeof sig
)) {
550 /* signature match, but is this a valid entry point? */
551 data
->smbios_ep_addr
= off
;
552 if (smbios_ep_table_ok(data
)) {
558 g_assert_cmphex(off
, <, 0x100000);
561 static inline bool smbios_single_instance(uint8_t type
)
577 static void test_smbios_structs(test_data
*data
)
579 DECLARE_BITMAP(struct_bitmap
, SMBIOS_MAX_TYPE
+1) = { 0 };
580 struct smbios_21_entry_point
*ep_table
= &data
->smbios_ep_table
;
581 uint32_t addr
= le32_to_cpu(ep_table
->structure_table_address
);
582 int i
, len
, max_len
= 0;
583 uint8_t type
, prv
, crt
;
585 /* walk the smbios tables */
586 for (i
= 0; i
< le16_to_cpu(ep_table
->number_of_structures
); i
++) {
588 /* grab type and formatted area length from struct header */
590 g_assert_cmpuint(type
, <=, SMBIOS_MAX_TYPE
);
591 len
= readb(addr
+ 1);
593 /* single-instance structs must not have been encountered before */
594 if (smbios_single_instance(type
)) {
595 g_assert(!test_bit(type
, struct_bitmap
));
597 set_bit(type
, struct_bitmap
);
599 /* seek to end of unformatted string area of this struct ("\0\0") */
603 crt
= readb(addr
+ len
);
607 /* keep track of max. struct size */
610 g_assert_cmpuint(max_len
, <=, ep_table
->max_structure_size
);
613 /* start of next structure */
617 /* total table length and max struct size must match entry point values */
618 g_assert_cmpuint(le16_to_cpu(ep_table
->structure_table_length
), ==,
619 addr
- le32_to_cpu(ep_table
->structure_table_address
));
620 g_assert_cmpuint(le16_to_cpu(ep_table
->max_structure_size
), ==, max_len
);
622 /* required struct types must all be present */
623 for (i
= 0; i
< data
->required_struct_types_len
; i
++) {
624 g_assert(test_bit(data
->required_struct_types
[i
], struct_bitmap
));
628 static void test_acpi_one(const char *params
, test_data
*data
)
632 /* Disable kernel irqchip to be able to override apic irq0. */
633 args
= g_strdup_printf("-machine %s,accel=%s,kernel-irqchip=off "
634 "-net none -display none %s "
635 "-drive id=hd0,if=none,file=%s,format=raw "
636 "-device ide-hd,drive=hd0 ",
637 data
->machine
, "kvm:tcg",
638 params
? params
: "", disk
);
644 data
->tables
= g_array_new(false, true, sizeof(AcpiSdtTable
));
645 test_acpi_rsdp_address(data
);
646 test_acpi_rsdp_table(data
);
647 test_acpi_rsdt_table(data
);
648 test_acpi_fadt_table(data
);
649 test_acpi_facs_table(data
);
650 test_acpi_dsdt_table(data
);
651 fetch_rsdt_referenced_tables(data
);
654 if (getenv(ACPI_REBUILD_EXPECTED_AML
)) {
655 dump_aml_files(data
, true);
661 test_smbios_entry_point(data
);
662 test_smbios_structs(data
);
664 qtest_quit(global_qtest
);
668 static uint8_t base_required_struct_types
[] = {
669 0, 1, 3, 4, 16, 17, 19, 32, 127
672 static void test_acpi_piix4_tcg(void)
676 /* Supplying -machine accel argument overrides the default (qtest).
677 * This is to make guest actually run.
679 memset(&data
, 0, sizeof(data
));
680 data
.machine
= MACHINE_PC
;
681 data
.required_struct_types
= base_required_struct_types
;
682 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
683 test_acpi_one(NULL
, &data
);
684 free_test_data(&data
);
687 static void test_acpi_piix4_tcg_bridge(void)
691 memset(&data
, 0, sizeof(data
));
692 data
.machine
= MACHINE_PC
;
693 data
.variant
= ".bridge";
694 data
.required_struct_types
= base_required_struct_types
;
695 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
696 test_acpi_one("-device pci-bridge,chassis_nr=1", &data
);
697 free_test_data(&data
);
700 static void test_acpi_q35_tcg(void)
704 memset(&data
, 0, sizeof(data
));
705 data
.machine
= MACHINE_Q35
;
706 data
.required_struct_types
= base_required_struct_types
;
707 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
708 test_acpi_one(NULL
, &data
);
709 free_test_data(&data
);
712 static void test_acpi_q35_tcg_bridge(void)
716 memset(&data
, 0, sizeof(data
));
717 data
.machine
= MACHINE_Q35
;
718 data
.variant
= ".bridge";
719 data
.required_struct_types
= base_required_struct_types
;
720 data
.required_struct_types_len
= ARRAY_SIZE(base_required_struct_types
);
721 test_acpi_one("-device pci-bridge,chassis_nr=1",
723 free_test_data(&data
);
726 static void test_acpi_piix4_tcg_cphp(void)
730 memset(&data
, 0, sizeof(data
));
731 data
.machine
= MACHINE_PC
;
732 data
.variant
= ".cphp";
733 test_acpi_one("-smp 2,cores=3,sockets=2,maxcpus=6"
734 " -numa node -numa node"
735 " -numa dist,src=0,dst=1,val=21",
737 free_test_data(&data
);
740 static void test_acpi_q35_tcg_cphp(void)
744 memset(&data
, 0, sizeof(data
));
745 data
.machine
= MACHINE_Q35
;
746 data
.variant
= ".cphp";
747 test_acpi_one(" -smp 2,cores=3,sockets=2,maxcpus=6"
748 " -numa node -numa node"
749 " -numa dist,src=0,dst=1,val=21",
751 free_test_data(&data
);
754 static uint8_t ipmi_required_struct_types
[] = {
755 0, 1, 3, 4, 16, 17, 19, 32, 38, 127
758 static void test_acpi_q35_tcg_ipmi(void)
762 memset(&data
, 0, sizeof(data
));
763 data
.machine
= MACHINE_Q35
;
764 data
.variant
= ".ipmibt";
765 data
.required_struct_types
= ipmi_required_struct_types
;
766 data
.required_struct_types_len
= ARRAY_SIZE(ipmi_required_struct_types
);
767 test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
768 " -device isa-ipmi-bt,bmc=bmc0",
770 free_test_data(&data
);
773 static void test_acpi_piix4_tcg_ipmi(void)
777 /* Supplying -machine accel argument overrides the default (qtest).
778 * This is to make guest actually run.
780 memset(&data
, 0, sizeof(data
));
781 data
.machine
= MACHINE_PC
;
782 data
.variant
= ".ipmikcs";
783 data
.required_struct_types
= ipmi_required_struct_types
;
784 data
.required_struct_types_len
= ARRAY_SIZE(ipmi_required_struct_types
);
785 test_acpi_one("-device ipmi-bmc-sim,id=bmc0"
786 " -device isa-ipmi-kcs,irq=0,bmc=bmc0",
788 free_test_data(&data
);
791 static void test_acpi_q35_tcg_memhp(void)
795 memset(&data
, 0, sizeof(data
));
796 data
.machine
= MACHINE_Q35
;
797 data
.variant
= ".memhp";
798 test_acpi_one(" -m 128,slots=3,maxmem=1G"
799 " -numa node -numa node"
800 " -numa dist,src=0,dst=1,val=21",
802 free_test_data(&data
);
805 static void test_acpi_piix4_tcg_memhp(void)
809 memset(&data
, 0, sizeof(data
));
810 data
.machine
= MACHINE_PC
;
811 data
.variant
= ".memhp";
812 test_acpi_one(" -m 128,slots=3,maxmem=1G"
813 " -numa node -numa node"
814 " -numa dist,src=0,dst=1,val=21",
816 free_test_data(&data
);
819 static void test_acpi_q35_tcg_numamem(void)
823 memset(&data
, 0, sizeof(data
));
824 data
.machine
= MACHINE_Q35
;
825 data
.variant
= ".numamem";
826 test_acpi_one(" -numa node -numa node,mem=128", &data
);
827 free_test_data(&data
);
830 static void test_acpi_piix4_tcg_numamem(void)
834 memset(&data
, 0, sizeof(data
));
835 data
.machine
= MACHINE_PC
;
836 data
.variant
= ".numamem";
837 test_acpi_one(" -numa node -numa node,mem=128", &data
);
838 free_test_data(&data
);
841 int main(int argc
, char *argv
[])
843 const char *arch
= qtest_get_arch();
846 ret
= boot_sector_init(disk
);
850 g_test_init(&argc
, &argv
, NULL
);
852 if (strcmp(arch
, "i386") == 0 || strcmp(arch
, "x86_64") == 0) {
853 qtest_add_func("acpi/piix4", test_acpi_piix4_tcg
);
854 qtest_add_func("acpi/piix4/bridge", test_acpi_piix4_tcg_bridge
);
855 qtest_add_func("acpi/q35", test_acpi_q35_tcg
);
856 qtest_add_func("acpi/q35/bridge", test_acpi_q35_tcg_bridge
);
857 qtest_add_func("acpi/piix4/ipmi", test_acpi_piix4_tcg_ipmi
);
858 qtest_add_func("acpi/q35/ipmi", test_acpi_q35_tcg_ipmi
);
859 qtest_add_func("acpi/piix4/cpuhp", test_acpi_piix4_tcg_cphp
);
860 qtest_add_func("acpi/q35/cpuhp", test_acpi_q35_tcg_cphp
);
861 qtest_add_func("acpi/piix4/memhp", test_acpi_piix4_tcg_memhp
);
862 qtest_add_func("acpi/q35/memhp", test_acpi_q35_tcg_memhp
);
863 qtest_add_func("acpi/piix4/numamem", test_acpi_piix4_tcg_numamem
);
864 qtest_add_func("acpi/q35/numamem", test_acpi_q35_tcg_numamem
);
867 boot_sector_cleanup(disk
);