From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Liguori Subject: Re: [PATCH 8/8] Don't power down vga card on entering S3 state. Date: Thu, 23 Oct 2008 10:45:02 -0500 Message-ID: <49009BFE.20400@codemonkey.ws> References: <20081023140459.10303.39562.stgit@gleb-debian.qumranet.com.qumranet.com> <20081023140540.10303.8794.stgit@gleb-debian.qumranet.com.qumranet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org To: Gleb Natapov Return-path: Received: from an-out-0708.google.com ([209.85.132.244]:52899 "EHLO an-out-0708.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751561AbYJWPpH (ORCPT ); Thu, 23 Oct 2008 11:45:07 -0400 Received: by an-out-0708.google.com with SMTP id d40so33424and.103 for ; Thu, 23 Oct 2008 08:45:05 -0700 (PDT) In-Reply-To: <20081023140540.10303.8794.stgit@gleb-debian.qumranet.com.qumranet.com> Sender: kvm-owner@vger.kernel.org List-ID: 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. > This is because the Cirrus VGA card does not support suspend? That's what you mean by "fooling", correct? What about std-vga? Regards, Anthony Liguori > Signed-off-by: Gleb Natapov > --- > > bios/acpi-dsdt.dsl | 16 ++++++++++++++++ > 1 files changed, 16 insertions(+), 0 deletions(-) > > diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl > index 02f53a1..84af8f1 100755 > --- a/bios/acpi-dsdt.dsl > +++ b/bios/acpi-dsdt.dsl > @@ -263,6 +263,22 @@ 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) > + } > + } > + > /* PIIX3 ISA bridge */ > Device (ISA) { > Name (_ADR, 0x00010000) > > -- > To unsubscribe from this list: send the line "unsubscribe kvm" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >