From: Marc Zyngier <maz@kernel.org>
To: Youngmin Nam <youngmin.nam@samsung.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Saravana Kannan <saravanak@google.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
Vincent Guittot <vincent.guittot@linaro.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, kernel-team@android.com,
hajun.sung@samsung.com, d7271.choe@samsung.com,
joonki.min@samsung.com
Subject: Re: [GICv3 ITS]S2IDLE framework does not invoke syscore_ops in GICv3 ITS driver
Date: Thu, 27 Mar 2025 08:25:14 +0000 [thread overview]
Message-ID: <86v7rulw2d.wl-maz@kernel.org> (raw)
In-Reply-To: <Z+TEa8CVAYnbD/Tu@perf>
On Thu, 27 Mar 2025 03:22:19 +0000,
Youngmin Nam <youngmin.nam@samsung.com> wrote:
>
> [1 <text/plain; utf-8 (8bit)>]
> On Wed, Mar 26, 2025 at 08:59:02AM +0000, Marc Zyngier wrote:
> > On Wed, 26 Mar 2025 03:09:37 +0000,
> > Youngmin Nam <youngmin.nam@samsung.com> wrote:
> > >
> > > Hi.
> > >
> > > On our SoC, we are using S2IDLE instead of S2R as a system suspend mode.
> > > However, when I try to enable ARM GICv3 ITS driver (drivers/irqchip/irq-gic-v3-its.c),
> > > I noticed that there is no proper way to invoke suspend/resume callback,
> > > because it only uses syscore_ops, which is not called in an s2idle scenario.
> >
> > This is *by design*.
[...]
> > > How should we handle this situation ?
> >
> > By implementing anything related to GIC power-management in your EL3
> > firmware. Only your firmware knows whether you are going into a state
> > where the GIC (and the ITS) is going to lose its state (because power
> > is going to be removed) or if the sleep period is short enough that
> > you can come back from idle without loss of context.
> >
> > Furthermore, there is a lot of things that non-secure cannot do when
> > it comes to GIC power management (most the controls are secure only),
> > so it is pretty clear that the kernel is the wrong place for this.
> >
> > I'd suggest you look at what TF-A provides, because this is not
> > exactly a new problem (it has been solved several years ago).
> >
> > M.
> >
> > --
> > Without deviation from the norm, progress is not possible.
> >
>
> Hi Marc,
>
> First of all, I’d like to distinguish between the GICv3 driver (irq-gic-v3.c)
> and the ITS driver (irq-gic-v3-its.c).
>
> I now understand why the GICv3 driver doesn’t implement suspend and resume functions.
> However, unlike the GICv3 driver, the ITS driver currently provides
> suspend and resume functions via syscore_ops in the kernel.
For *suspend*. The real suspend. Not a glorified WFI. And that's only
for situations where we know for sure that we are going to suspend.
> And AFAIK, LPIs are always treated as non-secure. (Please correct me If I'm wrong).
>
> The problem is that syscore_ops is not invoked during the S2IDLE scenario,
> so we cannot rely on it in that context.
> We would like to use these suspend/resume functions during S2IDLE as well.
Again, this is *by design*. There is no semantic difference between
s2idle and normal idle. They are the same thing. Do you really want to
save/restore the whole ITS state on each and every call into idle?
Absolutely not.
Only your firmware knows how deep you will be suspended, and how long
you will be suspended for, and this is the right place for to perform
save/restore of the ITS state. Not in generic code that runs on every
arm64 platform on the planet.
M.
--
Without deviation from the norm, progress is not possible.
next prev parent reply other threads:[~2025-03-27 8:25 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20250326030527epcas2p33aa30e62cc8a00c9e151c35bee71dac5@epcas2p3.samsung.com>
2025-03-26 3:09 ` [GICv3 ITS]S2IDLE framework does not invoke syscore_ops in GICv3 ITS driver Youngmin Nam
2025-03-26 8:59 ` Marc Zyngier
2025-03-27 3:22 ` Youngmin Nam
2025-03-27 8:25 ` Marc Zyngier [this message]
2025-03-28 2:10 ` Youngmin Nam
2025-04-01 12:45 ` Ulf Hansson
2025-04-01 13:11 ` Marc Zyngier
2025-04-02 10:57 ` Ulf Hansson
2025-04-03 7:16 ` Marc Zyngier
2025-04-02 11:56 ` Sudeep Holla
2025-04-03 1:30 ` Youngmin Nam
2025-04-03 9:18 ` Sudeep Holla
2025-04-04 4:13 ` Donghyeok Choe
2025-04-07 9:17 ` Sudeep Holla
2025-04-07 22:51 ` Donghyeok Choe
2025-04-08 6:51 ` Marc Zyngier
[not found] ` <CGME20250408223026epcas2p220582f5c0401b442921cda2571c595ec@epcas2p2.samsung.com>
2025-04-08 22:28 ` Donghyeok Choe
2025-04-08 10:46 ` Sudeep Holla
[not found] ` <CGME20250408221326epcas2p24b455e5a9f65dff52807a3a0010eff9a@epcas2p2.samsung.com>
2025-04-08 22:11 ` Donghyeok Choe
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=86v7rulw2d.wl-maz@kernel.org \
--to=maz@kernel.org \
--cc=d7271.choe@samsung.com \
--cc=hajun.sung@samsung.com \
--cc=joonki.min@samsung.com \
--cc=kernel-team@android.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=saravanak@google.com \
--cc=tglx@linutronix.de \
--cc=ulf.hansson@linaro.org \
--cc=vincent.guittot@linaro.org \
--cc=youngmin.nam@samsung.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 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).