From: Isaku Yamahata <yamahata@valinux.co.jp>
To: Wen Congyang <wency@cn.fujitsu.com>
Cc: blauwirbel@gmail.com, qemu-devel <qemu-devel@nongnu.org>,
Aurelien Jarno <aurelien@aurel32.net>
Subject: Re: [Qemu-devel] [PATCH] fix acpi regression
Date: Tue, 12 Apr 2011 17:48:50 +0900 [thread overview]
Message-ID: <20110412084850.GD30075@valinux.co.jp> (raw)
In-Reply-To: <4DA3DF6B.8010308@cn.fujitsu.com>
On Tue, Apr 12, 2011 at 01:13:15PM +0800, Wen Congyang wrote:
> This bug is introduced by commit 23910d3f.
Oh, Thanks. Good catch. I agree with the first hunk.
But what is the second hunk for? The GPE STS register is W1C.
(NULL check and 0xff masking is okay. it's a bit redundant, though)
>From ACPI4 spec 4.7.4.1.1.
can only be cleared by software writing a "1" to its respective bit position.
thanks,
>
> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
>
> ---
> hw/acpi.c | 10 +++-------
> 1 files changed, 3 insertions(+), 7 deletions(-)
>
> diff --git a/hw/acpi.c b/hw/acpi.c
> index e372474..790bd3b 100644
> --- a/hw/acpi.c
> +++ b/hw/acpi.c
> @@ -355,7 +355,7 @@ static uint8_t *acpi_gpe_ioport_get_ptr(ACPIGPE *gpe, uint32_t addr)
> if (addr < gpe->len / 2) {
> cur = gpe->sts + addr;
> } else if (addr < gpe->len) {
> - cur = gpe->en + addr;
> + cur = gpe->en + addr - gpe->len / 2;
> } else {
> abort();
> }
> @@ -369,12 +369,8 @@ void acpi_gpe_ioport_writeb(ACPIGPE *gpe, uint32_t addr, uint32_t val)
>
> addr -= gpe->blk;
> cur = acpi_gpe_ioport_get_ptr(gpe, addr);
> - if (addr < gpe->len / 2) {
> - /* GPE_STS */
> - *cur = (*cur) & ~val;
> - } else if (addr < gpe->len) {
> - /* GPE_EN */
> - *cur = val;
> + if (cur != NULL) {
> + *cur = val & 0xff;
> } else {
> abort();
> }
> --
> 1.7.1
>
--
yamahata
next prev parent reply other threads:[~2011-04-12 8:48 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-12 5:13 [Qemu-devel] [PATCH] fix acpi regression Wen Congyang
2011-04-12 8:48 ` Isaku Yamahata [this message]
2011-04-12 9:08 ` Wen Congyang
2011-04-12 9:20 ` Isaku Yamahata
2011-04-12 9:26 ` Wen Congyang
2011-04-12 9:27 ` [Qemu-devel] [PATCH V2] " Wen Congyang
2011-04-12 9:44 ` Isaku Yamahata
2011-04-12 21:35 ` Aurelien Jarno
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=20110412084850.GD30075@valinux.co.jp \
--to=yamahata@valinux.co.jp \
--cc=aurelien@aurel32.net \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=wency@cn.fujitsu.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).