From: Peter Maydell <peter.maydell@linaro.org>
To: Juraj Marcin <jmarcin@redhat.com>
Cc: qemu-devel@nongnu.org, David Hildenbrand <david@redhat.com>
Subject: Re: [PATCH v2 2/4] reset: Add RESET_TYPE_WAKEUP
Date: Tue, 13 Aug 2024 17:37:33 +0100 [thread overview]
Message-ID: <CAFEAcA9BWOkSmNh_b7HcNgfD429L1iLrjYTHWBJKDP2dJYCjCA@mail.gmail.com> (raw)
In-Reply-To: <20240813153922.311788-3-jmarcin@redhat.com>
On Tue, 13 Aug 2024 at 16:39, Juraj Marcin <jmarcin@redhat.com> wrote:
>
> Some devices need to distinguish cold start reset from waking up from a
> suspended state. This patch adds new value to the enum, and updates the
> i386 wakeup method to use this new reset type.
>
> Signed-off-by: Juraj Marcin <jmarcin@redhat.com>
> Reviewed-by: David Hildenbrand <david@redhat.com>
> ---
> docs/devel/reset.rst | 8 ++++++++
> hw/i386/pc.c | 2 +-
> include/hw/resettable.h | 2 ++
> 3 files changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/docs/devel/reset.rst b/docs/devel/reset.rst
> index 9746a4e8a0..a7c9467313 100644
> --- a/docs/devel/reset.rst
> +++ b/docs/devel/reset.rst
> @@ -44,6 +44,14 @@ The Resettable interface handles reset types with an enum ``ResetType``:
> value on each cold reset, such as RNG seed information, and which they
> must not reinitialize on a snapshot-load reset.
>
> +``RESET_TYPE_WAKEUP``
> + This type is called for a reset when the system is being woken-up from a
> + suspended state using the ``qemu_system_wakeup()`` function. If the machine
> + needs to reset its devices in its ``MachineClass::wakeup()`` method, this
> + reset type should be used, so devices can differentiate system wake-up from
> + other reset types. For example, a virtio-mem device must not unplug its
> + memory during wake-up as that would clear the guest RAM.
> +
> Devices which implement reset methods must treat any unknown ``ResetType``
> as equivalent to ``RESET_TYPE_COLD``; this will reduce the amount of
> existing code we need to change if we add more types in future.
> diff --git a/hw/i386/pc.c b/hw/i386/pc.c
> index ccb9731c91..49efd0a997 100644
> --- a/hw/i386/pc.c
> +++ b/hw/i386/pc.c
> @@ -1716,7 +1716,7 @@ static void pc_machine_reset(MachineState *machine, ResetType type)
> static void pc_machine_wakeup(MachineState *machine)
> {
> cpu_synchronize_all_states();
> - pc_machine_reset(machine, RESET_TYPE_COLD);
> + pc_machine_reset(machine, RESET_TYPE_WAKEUP);
> cpu_synchronize_all_post_reset();
> }
I'm happy (following discussion in the previous thread)
that 'wakeup' is the right reset event to be using here.
But looking at the existing code for qemu_system_wakeup()
something seems odd here. qemu_system_wakeup() calls
the MachineClass::wakeup method if it's set, and does
nothing if it's not. The PC implementation of that calls
pc_machine_reset(), which does a qemu_devices_reset(),
which does a complete three-phase reset of the system.
But if the machine doesn't implement wakeup then we
never reset the system at all.
Shouldn't qemu_system_wakeup() do a qemu_devices_reset()
if there's no MachineClass::wakeup, in a similar way to
how qemu_system_reset() does a qemu_devices_reset()
if there's no MachineClass::reset method ? Having the
wakeup event be "sometimes this will do a RESET_TYPE_WAKEUP
but sometimes it won't" doesn't seem right to me...
thanks
-- PMM
next prev parent reply other threads:[~2024-08-13 16:38 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-13 15:39 [PATCH v2 0/4] virtio-mem: Implement support for suspend+wake-up with plugged memory Juraj Marcin
2024-08-13 15:39 ` [PATCH v2 1/4] reset: Use ResetType for qemu_devices_reset() and MachineClass::reset() Juraj Marcin
2024-08-13 15:39 ` [PATCH v2 2/4] reset: Add RESET_TYPE_WAKEUP Juraj Marcin
2024-08-13 16:37 ` Peter Maydell [this message]
2024-08-14 12:32 ` Juraj Marcin
2024-08-20 11:40 ` David Hildenbrand
2024-08-20 11:56 ` Peter Maydell
2024-08-20 12:02 ` David Hildenbrand
2024-08-28 11:06 ` Juraj Marcin
2024-08-29 15:48 ` David Hildenbrand
2024-08-29 15:50 ` Peter Maydell
2024-08-13 15:39 ` [PATCH v2 3/4] virtio-mem: Use new Resettable framework instead of LegacyReset Juraj Marcin
2024-08-13 15:39 ` [PATCH v2 4/4] virtio-mem: Add support for suspend+wake-up with plugged memory Juraj Marcin
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=CAFEAcA9BWOkSmNh_b7HcNgfD429L1iLrjYTHWBJKDP2dJYCjCA@mail.gmail.com \
--to=peter.maydell@linaro.org \
--cc=david@redhat.com \
--cc=jmarcin@redhat.com \
--cc=qemu-devel@nongnu.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).