From: Paolo Bonzini <pbonzini@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2 0/6] initial suspend support
Date: Tue, 17 Jan 2012 08:31:40 +0100 [thread overview]
Message-ID: <4F1523DC.4060209@redhat.com> (raw)
In-Reply-To: <1326737715-9867-1-git-send-email-kraxel@redhat.com>
On 01/16/2012 07:15 PM, Gerd Hoffmann wrote:
> This patch series makes suspend support in qemu alot more useful. Right
> now the guest can put itself into s3, but qemu will wakeup the guest
> instantly. With this patch series applied the guest will stay suspended
> instead and there are a few events which can kick the guest out of
> suspend state: A monitor command, ps/2 input, serial input, rtc. Not
> much yet, but it's a start with the low hanging fruits ;)
>
> Changes in v2:
> * Add a suspend notifier.
> * Replace the cmos_s3 qemu_irq with the notifier, zap a bunch of hackish
> cmos_s3 windup code (this touches xen-all.c, thus cc xen-devel).
> * Add rtc wakeup support.
>
> Gerd Hoffmann (6):
> suspend: add infrastructure
> suspend: switch acpi s3 to new infrastructure.
> suspend: add wakeup monitor command
> suspend: make ps/2 devices wakeup the guest
> suspend: make serial ports wakeup the guest.
> suspend: make rtc alarm wakeup the guest.
>
> hmp-commands.hx | 14 ++++++++++++++
> hmp.c | 5 +++++
> hmp.h | 1 +
> hw/acpi.c | 11 +----------
> hw/acpi.h | 2 --
> hw/acpi_piix4.c | 3 +--
> hw/mc146818rtc.c | 17 +++++++++++++++++
> hw/mips_malta.c | 2 +-
> hw/pc.c | 11 -----------
> hw/pc.h | 3 +--
> hw/pc_piix.c | 8 +-------
> hw/ps2.c | 6 ++++++
> hw/serial.c | 6 ++++++
> hw/vt82c686.c | 1 -
> qapi-schema.json | 11 +++++++++++
> qmp-commands.hx | 21 +++++++++++++++++++++
> qmp.c | 5 +++++
> sysemu.h | 3 +++
> vl.c | 28 ++++++++++++++++++++++++++++
> xen-all.c | 11 ++++++-----
> 20 files changed, 128 insertions(+), 41 deletions(-)
Nice. :)
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
WARNING: multiple messages have this Message-ID (diff)
From: Paolo Bonzini <pbonzini@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [PATCH v2 0/6] initial suspend support
Date: Tue, 17 Jan 2012 08:31:40 +0100 [thread overview]
Message-ID: <4F1523DC.4060209@redhat.com> (raw)
In-Reply-To: <1326737715-9867-1-git-send-email-kraxel@redhat.com>
On 01/16/2012 07:15 PM, Gerd Hoffmann wrote:
> This patch series makes suspend support in qemu alot more useful. Right
> now the guest can put itself into s3, but qemu will wakeup the guest
> instantly. With this patch series applied the guest will stay suspended
> instead and there are a few events which can kick the guest out of
> suspend state: A monitor command, ps/2 input, serial input, rtc. Not
> much yet, but it's a start with the low hanging fruits ;)
>
> Changes in v2:
> * Add a suspend notifier.
> * Replace the cmos_s3 qemu_irq with the notifier, zap a bunch of hackish
> cmos_s3 windup code (this touches xen-all.c, thus cc xen-devel).
> * Add rtc wakeup support.
>
> Gerd Hoffmann (6):
> suspend: add infrastructure
> suspend: switch acpi s3 to new infrastructure.
> suspend: add wakeup monitor command
> suspend: make ps/2 devices wakeup the guest
> suspend: make serial ports wakeup the guest.
> suspend: make rtc alarm wakeup the guest.
>
> hmp-commands.hx | 14 ++++++++++++++
> hmp.c | 5 +++++
> hmp.h | 1 +
> hw/acpi.c | 11 +----------
> hw/acpi.h | 2 --
> hw/acpi_piix4.c | 3 +--
> hw/mc146818rtc.c | 17 +++++++++++++++++
> hw/mips_malta.c | 2 +-
> hw/pc.c | 11 -----------
> hw/pc.h | 3 +--
> hw/pc_piix.c | 8 +-------
> hw/ps2.c | 6 ++++++
> hw/serial.c | 6 ++++++
> hw/vt82c686.c | 1 -
> qapi-schema.json | 11 +++++++++++
> qmp-commands.hx | 21 +++++++++++++++++++++
> qmp.c | 5 +++++
> sysemu.h | 3 +++
> vl.c | 28 ++++++++++++++++++++++++++++
> xen-all.c | 11 ++++++-----
> 20 files changed, 128 insertions(+), 41 deletions(-)
Nice. :)
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
next prev parent reply other threads:[~2012-01-17 7:31 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-16 18:15 [Qemu-devel] [PATCH v2 0/6] initial suspend support Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-16 18:15 ` [Qemu-devel] [PATCH v2 1/6] suspend: add infrastructure Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-16 18:15 ` [Qemu-devel] [PATCH v2 2/6] suspend: switch acpi s3 to new infrastructure Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-16 18:15 ` [Qemu-devel] [PATCH v2 3/6] suspend: add wakeup monitor command Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-19 13:19 ` [Qemu-devel] " Luiz Capitulino
2012-01-19 13:19 ` Luiz Capitulino
2012-01-16 18:15 ` [Qemu-devel] [PATCH v2 4/6] suspend: make ps/2 devices wakeup the guest Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-16 18:15 ` [Qemu-devel] [PATCH v2 5/6] suspend: make serial ports " Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-16 18:15 ` [Qemu-devel] [PATCH v2 6/6] suspend: make rtc alarm " Gerd Hoffmann
2012-01-16 18:15 ` Gerd Hoffmann
2012-01-17 7:31 ` Paolo Bonzini [this message]
2012-01-17 7:31 ` [PATCH v2 0/6] initial suspend support Paolo Bonzini
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=4F1523DC.4060209@redhat.com \
--to=pbonzini@redhat.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=xen-devel@lists.xensource.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.