From: Igor Mammedov <imammedo@redhat.com>
To: isaku.yamahata@gmail.com
Cc: Sean Christopherson <sean.j.christopherson@intel.com>,
philmd@redhat.com, qemu-devel@nongnu.org, mst@redhat.com
Subject: Re: [PATCH v2 7/9] i386: acpi: Don't build HPET ACPI entry if HPET is disabled
Date: Tue, 9 Feb 2021 16:54:35 +0100 [thread overview]
Message-ID: <20210209165435.24824b69@redhat.com> (raw)
In-Reply-To: <4d380b7f97149f82da91f967a419ff3f3a2bc1a4.1612821109.git.isaku.yamahata@intel.com>
On Mon, 8 Feb 2021 13:57:26 -0800
isaku.yamahata@gmail.com wrote:
> From: Sean Christopherson <sean.j.christopherson@intel.com>
>
> Omit HPET AML if the HPET is disabled, QEMU is not emulating it and the
> guest may get confused by seeing HPET in the ACPI tables without a
> "physical" device present.
>
> The change of DSDT when -no-hpet is as follows.
>
> @@ -141,47 +141,6 @@ DefinitionBlock ("", "DSDT", 1, "BOCHS "
> }
> }
>
> - Scope (_SB)
> - {
> - Device (HPET)
> - {
> - Name (_HID, EisaId ("PNP0103") /* HPET System Timer */) // _HID: Hardware ID
> - Name (_UID, Zero) // _UID: Unique ID
> - OperationRegion (HPTM, SystemMemory, 0xFED00000, 0x0400)
> - Field (HPTM, DWordAcc, Lock, Preserve)
> - {
> - VEND, 32,
> - PRD, 32
> - }
> -
> - Method (_STA, 0, NotSerialized) // _STA: Status
> - {
> - Local0 = VEND /* \_SB_.HPET.VEND */
> - Local1 = PRD /* \_SB_.HPET.PRD_ */
> - Local0 >>= 0x10
> - If (((Local0 == Zero) || (Local0 == 0xFFFF)))
> - {
> - Return (Zero)
> - }
> -
> - If (((Local1 == Zero) || (Local1 > 0x05F5E100)))
> - {
> - Return (Zero)
> - }
> -
> - Return (0x0F)
> - }
> -
> - Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings
> - {
> - Memory32Fixed (ReadOnly,
> - 0xFED00000, // Address Base
> - 0x00000400, // Address Length
> - )
> - })
> - }
> - }
> -
> Scope (_SB.PCI0)
> {
> Device (ISA)
>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/i386/acpi-build.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index bcb1f65c1d..73ec0b6d32 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -1405,7 +1405,9 @@ build_dsdt(GArray *table_data, BIOSLinker *linker,
> aml_append(sb_scope, dev);
> aml_append(dsdt, sb_scope);
>
> - build_hpet_aml(dsdt);
> + if (misc->has_hpet) {
> + build_hpet_aml(dsdt);
> + }
> build_piix4_isa_bridge(dsdt);
> build_isa_devices_aml(dsdt);
> if (pm->pcihp_bridge_en || pm->pcihp_root_en) {
> @@ -1450,7 +1452,9 @@ build_dsdt(GArray *table_data, BIOSLinker *linker,
>
> aml_append(dsdt, sb_scope);
>
> - build_hpet_aml(dsdt);
> + if (misc->has_hpet) {
> + build_hpet_aml(dsdt);
> + }
> build_q35_isa_bridge(dsdt);
> build_isa_devices_aml(dsdt);
> build_q35_pci0_int(dsdt);
next prev parent reply other threads:[~2021-02-09 15:56 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-08 21:57 [PATCH v2 0/9] ACPI related fixes isaku.yamahata
2021-02-08 21:57 ` [PATCH v2 1/9] checkpatch: don't emit warning on newly created acpi data files isaku.yamahata
2021-02-08 21:57 ` [PATCH v2 2/9] qtest: update tests/qtest/bios-tables-test-allowed-diff.h isaku.yamahata
2021-02-09 12:46 ` Igor Mammedov
2021-02-08 21:57 ` [PATCH v2 3/9] acpi/core: always set SCI_EN when SMM isn't supported isaku.yamahata
2021-02-09 15:05 ` Igor Mammedov
2021-02-09 19:23 ` Isaku Yamahata
2021-02-10 13:17 ` Igor Mammedov
2021-02-08 21:57 ` [PATCH v2 4/9] acpi: set fadt.smi_cmd to zero when SMM is not supported isaku.yamahata
2021-02-09 15:14 ` Igor Mammedov
2021-02-08 21:57 ` [PATCH v2 5/9] acpi: add test case for smm unsupported -machine smm=off isaku.yamahata
2021-02-09 15:25 ` Igor Mammedov
2021-02-08 21:57 ` [PATCH v2 6/9] hw/i386: declare ACPI mother board resource for MMCONFIG region isaku.yamahata
2021-02-09 15:52 ` Igor Mammedov
2021-02-09 20:02 ` Isaku Yamahata
2021-02-10 8:31 ` Michael S. Tsirkin
2021-02-10 22:04 ` Isaku Yamahata
2021-02-10 13:37 ` Igor Mammedov
2021-02-10 22:03 ` Isaku Yamahata
2021-02-10 8:28 ` Michael S. Tsirkin
2021-02-08 21:57 ` [PATCH v2 7/9] i386: acpi: Don't build HPET ACPI entry if HPET is disabled isaku.yamahata
2021-02-09 15:54 ` Igor Mammedov [this message]
2021-02-08 21:57 ` [PATCH v2 8/9] acpi: add test case for -no-hpet isaku.yamahata
2021-02-09 15:59 ` Igor Mammedov
2021-02-08 21:57 ` [PATCH v2 9/9] qtest/acpi/bios-tables-test: update acpi tables isaku.yamahata
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210209165435.24824b69@redhat.com \
--to=imammedo@redhat.com \
--cc=isaku.yamahata@gmail.com \
--cc=mst@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sean.j.christopherson@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).