Building the FADT table by basl will allow it to be loaded by qemu's
ACPI table loader.
This is the 15. patch required to merge D36983
Differential D36998 Authored by corvink on Oct 14 2022, 9:27 AM.
Tags Referenced Files
Details
Summary Building the FADT table by basl will allow it to be loaded by qemu's This is the 15. patch required to merge D36983
Diff Detail
Event TimelineHerald added subscribers: bcran, rgrimes, imp. · View Herald TranscriptOct 14 2022, 9:27 AM2022-10-14 09:27:07 (UTC+0) corvink retitled this revision from [acpi-table part 15] bhyve: build FADT table by basl to [PATCH 15/19] bhyve: build FADT table by basl.Oct 14 2022, 9:45 AM2022-10-14 09:45:23 (UTC+0) This revision is now accepted and ready to land.Nov 2 2022, 1:43 PM2022-11-02 13:43:00 (UTC+0) This revision now requires review to proceed.Nov 8 2022, 9:44 AM2022-11-08 09:44:38 (UTC+0) Harbormaster completed remote builds in B48230: Diff 112772.Nov 8 2022, 9:44 AM2022-11-08 09:44:39 (UTC+0) jhb added a child revision: D36999: [PATCH 16/19] bhyve: build XSDT table by basl.Nov 10 2022, 6:34 PM2022-11-10 18:34:35 (UTC+0) Harbormaster completed remote builds in B48350: Diff 113128.Nov 15 2022, 9:58 AM2022-11-15 09:58:01 (UTC+0) Comment Actions It would be nice to be able to use ACPI_TABLE_FADT, but there are some risks: 1) when ACPI-CA is updated this file would also have to be updated since it may now have new fields (though maybe an initial memset of the table to 0 would be good enough in practice for future proofing) and 2) you'd need a way to deal with storing references to pointers like basl_table_add_pointer but based on an offset instead (though you could use offsetof, something like basl_table_add_pointer(fadt, offsetof(ACPI_TABLE_FADT, FACS), sizeof(fadt_table.FACS)). OTOH, I think it would be more readable and you could avoid having to set unneeded fields and only focus on setting the non-zero fields that matter. You might also then need variants of things like building the table header or GAS structures that write to a caller-provided buffer instead of appending bytes to a table.
Comment Actions
Hmmm, looks like you already use the basl_table_add_* variant for checksums and lengths, so that might not be all that awkward to do for pointers. Also, another way to handle the common header would be to still use the existing function for the common header, but when you append a filled-out FADT table do something like basl_table_append_bytes(&fadt_table->FACS, sizeof(fadt_table) - offsetof(ACPI_FADT_TABLE, FACS)). Comment Actions ACPI-CA contains struct definitions for most tables. I thought about making use of them. This would required to make add_checksum, add_lengths and add_pointer public available. It also requires that you build the table by using the struct, then adding it by append_bytes and at the end you have to add patches for checksums, lengths and pointer. So, building a table would be similar to my basl_table_append_header function. If you prefer that style, I can change it. Harbormaster completed remote builds in B48388: Diff 113203.Nov 16 2022, 12:52 PM2022-11-16 12:52:22 (UTC+0) This revision is now accepted and ready to land.Nov 17 2022, 5:59 PM2022-11-17 17:59:16 (UTC+0) Closed by commit rG6a75de903b10: bhyve: build FADT table by basl (authored by corvink). · Explain WhyNov 21 2022, 8:32 AM2022-11-21 08:32:34 (UTC+0) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 113365 usr.sbin/bhyve/acpi.c
|