From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KzeBL-0006FG-Ac for qemu-devel@nongnu.org; Mon, 10 Nov 2008 16:20:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KzeBJ-0006Ek-Kx for qemu-devel@nongnu.org; Mon, 10 Nov 2008 16:20:22 -0500 Received: from [199.232.76.173] (port=57135 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KzeBJ-0006Ef-Do for qemu-devel@nongnu.org; Mon, 10 Nov 2008 16:20:21 -0500 Received: from mx2.redhat.com ([66.187.237.31]:56929) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KzeBH-000381-26 for qemu-devel@nongnu.org; Mon, 10 Nov 2008 16:20:20 -0500 Date: Mon, 10 Nov 2008 23:20:12 +0200 From: Gleb Natapov Message-ID: <20081110212012.GD19381@redhat.com> References: <20081110091134.11822.34230.stgit@dhcp-1-237.local> <20081110091205.11822.10344.stgit@dhcp-1-237.local> <8ACDC7A2ED6547D2BC98CF11A2112445@FSCPC> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8ACDC7A2ED6547D2BC98CF11A2112445@FSCPC> Subject: [Qemu-devel] Re: [Bochs-developers] [PATCH v3 6/6] Don't power down vga card onentering S3 state. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sebastian Herbszt Cc: bochs-developers@lists.sourceforge.net, qemu-devel@nongnu.org On Mon, Nov 10, 2008 at 09:25:02PM +0100, Sebastian Herbszt wrote: > Gleb Natapov wrote: >> This is needed to fool windows to enter S3. The trick works for XP and >> Windows2003, but Vista still refuse to allow S3. >> >> Signed-off-by: Gleb Natapov >> --- >> >> bios/acpi-dsdt.dsl | 15 ++ >> bios/acpi-dsdt.hex | 373 ++++++++++++++++++++++++++-------------------------- >> 2 files changed, 204 insertions(+), 184 deletions(-) >> >> diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl >> index 280a05e..5fc3636 100644 >> --- a/bios/acpi-dsdt.dsl >> +++ b/bios/acpi-dsdt.dsl >> @@ -133,6 +133,21 @@ DefinitionBlock ( >> } >> >> Scope(\_SB.PCI0) { >> + Device (VGA) { >> + Name (_ADR, 0x00020000) >> + Method (_S1D, 0, NotSerialized) >> + { >> + Return (0x00) >> + } >> + Method (_S2D, 0, NotSerialized) >> + { >> + Return (0x00) >> + } >> + Method (_S3D, 0, NotSerialized) >> + { >> + Return (0x00) >> + } >> + } > > Which vga card does need this? std, cirrus, vmware? > I tested with cirrus, but I believe std needs it too. Both of them to old to support low power state. Don't know about vmware. -- Gleb.