From: Gleb Natapov <gleb@redhat.com>
To: Ruben Kerkhof <ruben@rubenkerkhof.com>
Cc: "Kevin O'Connor" <kevin@koconnor.net>,
Avi Kivity <avi@redhat.com>,
Teck Choon Giam <giamteckchoon@gmail.com>,
kvm@vger.kernel.org, seabios@seabios.org
Subject: Re: system_powerdown not working for qemu-kvm 0.12.4?
Date: Fri, 15 Oct 2010 09:01:24 +0200 [thread overview]
Message-ID: <20101015070124.GB27087@redhat.com> (raw)
In-Reply-To: <AANLkTin6CJC6LCccKhXiDYqTrnROR3Bg10baJJYM3bGE@mail.gmail.com>
On Fri, Oct 15, 2010 at 03:45:06AM +0200, Ruben Kerkhof wrote:
> Is there anything I can do to help resolve this?
> Would rolling back this commit have any impact on other operating systems?
>
Patch below should fix the problem.
diff --git a/src/acpi-dsdt.dsl b/src/acpi-dsdt.dsl
index bb0a176..dafcf45 100644
--- a/src/acpi-dsdt.dsl
+++ b/src/acpi-dsdt.dsl
@@ -73,7 +73,7 @@ DefinitionBlock (
#define prt_slot3(nr) prt_slot(nr, LNKC, LNKD, LNKA, LNKB)
prt_slot0(0x0000),
/* Device 1 is power mgmt device, and can only use irq 9 */
- Package() { 0x0001ffff, 0, 0, 9 },
+ Package() { 0x0001ffff, 0, LNKS, 0 },
Package() { 0x0001ffff, 1, LNKB, 0 },
Package() { 0x0001ffff, 2, LNKC, 0 },
Package() { 0x0001ffff, 3, LNKD, 0 },
@@ -634,6 +634,46 @@ DefinitionBlock (
Store (TMP, PRQ3)
}
}
+ Device(LNKS){
+ Name(_HID, EISAID("PNP0C0F")) // PCI interrupt link
+ Name(_UID, 5)
+ Name(_PRS, ResourceTemplate(){
+ Interrupt (, Level, ActiveHigh, Shared)
+ { 9 }
+ })
+ Method (_STA, 0, NotSerialized)
+ {
+ Store (0x0B, Local0)
+ If (And (0x80, PRQ0, Local1))
+ {
+ Store (0x09, Local0)
+ }
+ Return (Local0)
+ }
+ Method (_DIS, 0, NotSerialized)
+ {
+ Or (PRQ0, 0x80, PRQ0)
+ }
+ Method (_CRS, 0, NotSerialized)
+ {
+ Name (PRR0, ResourceTemplate ()
+ {
+ Interrupt (, Level, ActiveHigh, Shared)
+ {9}
+ })
+ CreateDWordField (PRR0, 0x05, TMP)
+ Store (PRQ0, Local0)
+ If (LLess (Local0, 0x80))
+ {
+ Store (Local0, TMP)
+ }
+ Else
+ {
+ Store (Zero, TMP)
+ }
+ Return (PRR0)
+ }
+ }
}
/*
--
Gleb.
next prev parent reply other threads:[~2010-10-15 7:01 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-15 1:19 system_powerdown not working for qemu-kvm 0.12.4? Teck Choon Giam
2010-05-15 9:36 ` Michael Tokarev
2010-05-16 11:52 ` Avi Kivity
2010-05-19 9:23 ` Teck Choon Giam
2010-05-19 16:22 ` Avi Kivity
2010-08-14 23:32 ` Teck Choon Giam
2010-08-15 11:00 ` Avi Kivity
2010-08-15 16:15 ` Teck Choon Giam
2010-08-15 16:19 ` Avi Kivity
2010-08-15 17:53 ` Teck Choon Giam
2010-10-07 12:30 ` Teck Choon Giam
2010-10-11 16:29 ` Ruben Kerkhof
2010-10-11 16:57 ` Avi Kivity
2010-10-11 17:53 ` Ruben Kerkhof
2010-10-12 6:49 ` Avi Kivity
2010-10-12 7:11 ` Kevin O'Connor
2010-10-12 7:14 ` Gleb Natapov
2010-10-12 7:25 ` Avi Kivity
2010-10-12 7:33 ` Avi Kivity
2010-10-12 7:39 ` Avi Kivity
2010-10-12 7:40 ` Gleb Natapov
2010-10-12 7:44 ` Avi Kivity
2010-10-15 1:45 ` Ruben Kerkhof
2010-10-15 7:01 ` Gleb Natapov [this message]
2010-10-15 14:26 ` Ruben Kerkhof
2010-10-15 15:53 ` Teck Choon Giam
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=20101015070124.GB27087@redhat.com \
--to=gleb@redhat.com \
--cc=avi@redhat.com \
--cc=giamteckchoon@gmail.com \
--cc=kevin@koconnor.net \
--cc=kvm@vger.kernel.org \
--cc=ruben@rubenkerkhof.com \
--cc=seabios@seabios.org \
/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).