From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KzdLM-0003Bc-S0 for qemu-devel@nongnu.org; Mon, 10 Nov 2008 15:26:40 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KzdLL-0003BO-CE for qemu-devel@nongnu.org; Mon, 10 Nov 2008 15:26:40 -0500 Received: from [199.232.76.173] (port=57328 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KzdLL-0003BL-9i for qemu-devel@nongnu.org; Mon, 10 Nov 2008 15:26:39 -0500 Received: from mail.gmx.net ([213.165.64.20]:42926) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1KzdLJ-0001uU-U2 for qemu-devel@nongnu.org; Mon, 10 Nov 2008 15:26:39 -0500 Message-ID: <8ACDC7A2ED6547D2BC98CF11A2112445@FSCPC> From: "Sebastian Herbszt" References: <20081110091134.11822.34230.stgit@dhcp-1-237.local> <20081110091205.11822.10344.stgit@dhcp-1-237.local> In-Reply-To: <20081110091205.11822.10344.stgit@dhcp-1-237.local> Date: Mon, 10 Nov 2008 21:25:02 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit 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: Gleb Natapov , bochs-developers@lists.sourceforge.net Cc: qemu-devel@nongnu.org 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? - Sebastian