[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 07/14] tests: acpi: skip FACS table if board use
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [Qemu-devel] [PATCH 07/14] tests: acpi: skip FACS table if board uses hw reduced ACPI profile |
Date: |
Wed, 16 Jan 2019 17:58:25 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 |
On 1/15/19 4:40 PM, Igor Mammedov wrote:
> If FADT has HW_REDUCED_ACPI flag set, do not attempt to fetch
> FACS as it's not provided by the board.
>
> Signed-off-by: Igor Mammedov <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
> ---
> tests/bios-tables-test.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c
> index 0f04a0a..8887319 100644
> --- a/tests/bios-tables-test.c
> +++ b/tests/bios-tables-test.c
> @@ -146,9 +146,13 @@ static void test_acpi_fadt_table(test_data *data)
> g_assert(compare_signature(&table, "FACP"));
>
> /* Since DSDT/FACS isn't in RSDT, add them to ASL test list manually */
> - acpi_fetch_table(data->qts, &table.aml, &table.aml_len,
> - fadt_aml + 36 /* FIRMWARE_CTRL */, "FACS", false);
> - g_array_append_val(data->tables, table);
> + memcpy(&val, fadt_aml + 112 /* Flags */, 4);
> + val = le32_to_cpu(val);
> + if (!(val & 1UL << 20 /* HW_REDUCED_ACPI */)) {
> + acpi_fetch_table(data->qts, &table.aml, &table.aml_len,
> + fadt_aml + 36 /* FIRMWARE_CTRL */, "FACS", false);
> + g_array_append_val(data->tables, table);
> + }
>
> memcpy(&val, fadt_aml + dsdt_offset, 4);
> if (!val) {
>
- [Qemu-devel] [PATCH 02/14] tests: acpi: make RSDT test routine handle XSDT, (continued)
- [Qemu-devel] [PATCH 02/14] tests: acpi: make RSDT test routine handle XSDT, Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 03/14] tests: acpi: rename acpi_parse_rsdp_table() into acpi_fetch_rsdp_table(), Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 05/14] tests: acpi: fetch X_DSDT if pointer to DSDT is 0, Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 04/14] tests: acpi: make pointer to RSDP 64bit, Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 06/14] tests: acpi: add reference blobs arm/virt board testcase, Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 07/14] tests: acpi: skip FACS table if board uses hw reduced ACPI profile, Igor Mammedov, 2019/01/15
- Re: [Qemu-devel] [PATCH 07/14] tests: acpi: skip FACS table if board uses hw reduced ACPI profile,
Philippe Mathieu-Daudé <=
- [Qemu-devel] [PATCH 08/14] tests: acpi: introduce an abilty start tests with UEFI firmware, Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 09/14] tests: acpi: move boot_sector_init() into x86 tests branch, Igor Mammedov, 2019/01/15
- [Qemu-devel] [PATCH 10/14] tests: acpi: ignore SMBIOS tests when UEFI firmware is used, Igor Mammedov, 2019/01/15