From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Simon Gaiser <simon@invisiblethingslab.com>,
xen-devel <xen-devel@lists.xenproject.org>
Cc: "Marek Marczykowski-Górecki" <marmarek@invisiblethingslab.com>
Subject: Re: RFC: disable HPET legacy mode after timer check
Date: Tue, 11 Apr 2023 12:20:13 +0100 [thread overview]
Message-ID: <0ac3fce6-dcd2-4521-6207-ede4d90e656b@citrix.com> (raw)
In-Reply-To: <cb408368-077d-edb5-b4ad-f80086db48c1@invisiblethingslab.com>
On 11/04/2023 11:30 am, Simon Gaiser wrote:
> Hi,
>
> I have been recently looking into getting S0ix working on Xen [1].
>
> Thanks to a tip from Andrew I found that the HPET legacy mode was
> preventing my test system from reaching a package C-state lower than PC7
> and thereby also preventing S0ix residency.
>
> For testing I simply modified check_timer() to disable it again after it
> checked the timer irq:
>
> --- a/xen/arch/x86/io_apic.c
> +++ b/xen/arch/x86/io_apic.c
> @@ -1966,6 +1969,8 @@ static void __init check_timer(void)
>
> if ( timer_irq_works() )
> {
> + hpet_disable_legacy_replacement_mode();
> local_irq_restore(flags);
> return;
> }
>
>
> With this [2] I'm able to reach S0ix residency for some time and for short
> periods the systems power consumption goes down to the same level as with
> native Linux!
Excellent progress!
> It reaches low power states only for a fraction of the suspend to idle
> time, so something still makes the CPU/chipset think it should leave the
> low power mode, but that's another topic.
Do you have any further info here? There are a range of possibilities,
from excess timers in Xen (e.g. PV guests default to a 100Hz timer even
though no guests actually want it AFAICT), or the 1s TSC rendezvous
(which isn't actually needed on modern systems), all the way to the
platform devices not entering d3hot.
>
> I tried to understand how all the timer code interacts with disabling
> the legacy mode. I think it only would break cpuidle if X86_FEATURE_ARAT
> is not available (Which is available on my test system and indeed I
> didn't run into obvious breakage).
>
> Is this (disabled PIT && !ARAT) a configuration that exists (and needs
> to be supported)?
>
> Did I miss something else? (Very much possible, given that this is way
> above my existing experience with X86 and Xen internals.)
Xen's code is a mess and needs an overhaul.
Right now, we're using the timer as "a source of interrupts" to try and
check that we've got things set up suitably. But this doesn't need to
be the PIT, or a timer at all - it just needs to be "an interrupt coming
in from the platform".
Furthermore, there will soon be client platforms with no PIT/HPET/etc at
all. (HPET is known broken in <PC7, and not used these days anyway in
order to get deeper sleep working), so this logic is going to explode on
us yet again.
AFAICT moving forwards, the expectation is to use TSCs as the
clocksource, and the deadline timer for interrupts.
~Andrew
next prev parent reply other threads:[~2023-04-11 11:21 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-11 10:30 RFC: disable HPET legacy mode after timer check Simon Gaiser
2023-04-11 11:20 ` Andrew Cooper [this message]
2023-04-12 11:25 ` Roger Pau Monné
2023-04-17 8:49 ` Jan Beulich
2023-04-17 10:26 ` Roger Pau Monné
2023-04-17 12:10 ` Simon Gaiser
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=0ac3fce6-dcd2-4521-6207-ede4d90e656b@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=marmarek@invisiblethingslab.com \
--cc=simon@invisiblethingslab.com \
--cc=xen-devel@lists.xenproject.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 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.