public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
From: Andrew Jones <ajones@ventanamicro.com>
To: Anup Patel <apatel@ventanamicro.com>
Cc: Conor Dooley <conor@kernel.org>,
	linux-riscv@lists.infradead.org,  paul.walmsley@sifive.com,
	palmer@dabbelt.com, aou@eecs.berkeley.edu,
	 leyfoon.tan@starfivetech.com, jeeheng.sia@starfivetech.com,
	conor.dooley@microchip.com
Subject: Re: [PATCH v1 1/1] riscv: sbi: Introduce system suspend support
Date: Thu, 12 Oct 2023 19:25:11 +0200	[thread overview]
Message-ID: <20231012-b5b2d068ef07fd574207cc15@orel> (raw)
In-Reply-To: <CAK9=C2VFi+jtNGo+dueXcG8iRW=r1z-c1P_8SRGAxaByW=8tuA@mail.gmail.com>

On Thu, Oct 12, 2023 at 10:09:44PM +0530, Anup Patel wrote:
> On Thu, Oct 12, 2023 at 9:31 PM Andrew Jones <ajones@ventanamicro.com> wrote:
> >
> > On Thu, Oct 12, 2023 at 02:32:46PM +0100, Conor Dooley wrote:
> > > On Thu, Oct 12, 2023 at 02:30:02PM +0100, Conor Dooley wrote:
> > > > Yo,
> > > >
> > > > On Thu, Oct 12, 2023 at 09:21:50AM +0200, Andrew Jones wrote:
> > > > > When the SUSP SBI extension is present it implies that the standard
> > > > > "suspend to RAM" type is available. Wire it up to the generic
> > > > > platform suspend support, also applying the already present support
> > > > > for non-retentive CPU suspend. When the kernel is built with
> > > > > CONFIG_SUSPEND, one can do 'echo mem > /sys/power/state' to suspend.
> > > > > Resumption will occur when a platform-specific wake-up event arrives.
> > > > >
> > > > > Signed-off-by: Andrew Jones <ajones@ventanamicro.com>
> > > >
> > > > > +static int __init sbi_system_suspend_init(void)
> > > > > +{
> > > > > + if (!sbi_spec_is_0_1() && sbi_probe_extension(SBI_EXT_SUSP) > 0) {
> > > >
> > > > Random thought I had reading this, was that it'll be possible to have a
> > > > firmware that implements SBI < 2.0 that provides the SUSP extension.
> > > > FWIW, I don't think that that is problematic, but maybe I am missing
> > > > something that would make it so.
> > >
> > > Hmm, next patch I look at is from Anup's debug console series, and he
> > > does check that the SBI implementation is at least version 2.0 before
> > > probing for the extension. We should probably have the same policy
> > > everywhere.
> >
> > Yeah, the main reason I wrote in the other response that I'd prefer not
> > to always check version when probing is because in most (I think all
> > except PMU) cases it would only reduce the platforms where the extension
> > can be used, but without any reason to do so. For example, right now QEMU
> > bundles an OpenSBI v1.3.1 binary and that version supports both SUSP and
> > DBCN, but, if we were to add SBI 2.0 checks in Linux for those extensions,
> > then users will need to update their SBI implementations in order to use
> > them. While requiring users to update their SBI implementations makes
> > sense for new functionality or fixes, it seems like a lot to ask for them
> > to just get a bigger number in their version check.
> >
> > (And then there's downstream SBI implementations which may end up cherry
> > picking extensions, so their version numbers would be hard to define.)
> >
> > So my vote for Linux policy would be to only do version checks when
> > necessary. And my preference for SBI would be to try and avoid specifying
> > extensions which require clients to check versions.
> 
> In addition to SBI PMU, even SBI STA and SBI NACL requires spec version
> check because these new SBI extensions use SBI_ERR_NO_SHMEM
> error code which is not available in SBI v1.0 (or lower).

But when those extensions are present, they must implement their
specifications, which means SBI_ERR_NO_SHMEM must also be present.
From a client's perspective getting an affirmative that the extension is
present is enough. Also checking the SBI version is basically turning the
client into an SBI implementation sanity checker.

> 
> My recommendation is that SBI implementation should comply with the
> minimum SBI spec version required by the SBI extensions which it
> implements.
>

I agree, but SBI implementation versions don't get bumped until after
spec freezes, even though they incorporate everything needed for the
new extensions and the extensions themselves.

Linux can certainly choose to be strict about the SBI implementations
from which it enables extensions, but I'm still not sure it's necessary.

Thanks,
drew

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  reply	other threads:[~2023-10-12 17:25 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-12  7:21 [PATCH v1 0/1] riscv: Introduce system suspend support Andrew Jones
2023-10-12  7:21 ` [PATCH v1 1/1] riscv: sbi: " Andrew Jones
2023-10-12 13:30   ` Conor Dooley
2023-10-12 13:32     ` Conor Dooley
2023-10-12 16:01       ` Andrew Jones
2023-10-12 16:39         ` Anup Patel
2023-10-12 17:25           ` Andrew Jones [this message]
2023-10-19  8:36             ` Andrew Jones
2023-10-19  9:15               ` Conor Dooley
2023-10-12 13:36     ` Andrew Jones
2023-10-13  3:48   ` Samuel Holland
2023-11-27 10:52 ` [PATCH v1 0/1] riscv: " Conor Dooley
2023-11-27 12:07   ` Andrew Jones

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=20231012-b5b2d068ef07fd574207cc15@orel \
    --to=ajones@ventanamicro.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=apatel@ventanamicro.com \
    --cc=conor.dooley@microchip.com \
    --cc=conor@kernel.org \
    --cc=jeeheng.sia@starfivetech.com \
    --cc=leyfoon.tan@starfivetech.com \
    --cc=linux-riscv@lists.infradead.org \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.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