From: Sudeep Holla <sudeep.holla@arm.com>
To: Mark Rutland <mark.rutland@arm.com>
Cc: linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Aaro Koskinen <aaro.koskinen@nokia.com>,
Aaro Koskinen <aaro.koskinen@iki.fi>,
Florian Fainelli <f.fainelli@gmail.com>,
Michal Simek <michal.simek@xilinx.com>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Subject: Re: [RESEND][PATCH v2] firmware/psci: add support for SYSTEM_RESET2
Date: Thu, 11 Apr 2019 17:25:45 +0100 [thread overview]
Message-ID: <20190411162545.GA5327@e107155-lin> (raw)
In-Reply-To: <20190411110302.GA55959@lakrids.cambridge.arm.com>
On Thu, Apr 11, 2019 at 12:03:04PM +0100, Mark Rutland wrote:
> On Thu, Apr 11, 2019 at 11:33:46AM +0100, Sudeep Holla wrote:
> > PSCI v1.1 introduced SYSTEM_RESET2 to allow both architectural resets
> > where the semantics are described by the PSCI specification itself as
> > well as vendor-specific resets. Currently only system warm reset
> > semantics is defined as part of architectural resets by the specification.
> >
> > This patch implements support for SYSTEM_RESET2 by making using of
> > reboot_mode passed by the reboot infrastructure in the kernel.
> >
> > Cc: Mark Rutland <mark.rutland@arm.com>
> > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> > ---
> > drivers/firmware/psci.c | 21 +++++++++++++++++++++
> > include/uapi/linux/psci.h | 2 ++
> > 2 files changed, 23 insertions(+)
> >
> > Resending [1] based on the request. I hope to get some testing this time.
> > Last time Xilinx asked multiple times but never got any review or testing
> > https://lore.kernel.org/lkml/1525257003-8608-1-git-send-email-sudeep.holla@arm.com/
> >
> > diff --git a/drivers/firmware/psci.c b/drivers/firmware/psci.c
> > index c80ec1d03274..91748725534e 100644
> > --- a/drivers/firmware/psci.c
> > +++ b/drivers/firmware/psci.c
> > @@ -88,6 +88,7 @@ static u32 psci_function_id[PSCI_FN_MAX];
> > PSCI_1_0_EXT_POWER_STATE_TYPE_MASK)
> >
> > static u32 psci_cpu_suspend_feature;
> > +static bool psci_system_reset2_supported;
> >
> > static inline bool psci_has_ext_power_state(void)
> > {
> > @@ -253,6 +254,15 @@ static int get_set_conduit_method(struct device_node *np)
> >
> > static void psci_sys_reset(enum reboot_mode reboot_mode, const char *cmd)
> > {
> > + if ((reboot_mode == REBOOT_WARM || reboot_mode == REBOOT_SOFT) &&
> > + psci_system_reset2_supported)
> > + /*
> > + * reset_type[31] = 0 (architectural)
> > + * reset_type[30:0] = 0 (SYSTEM_WARM_RESET)
> > + * cookie = 0 (ignored by the implementation)
> > + */
> > + invoke_psci_fn(PSCI_FN_NATIVE(1_1, SYSTEM_RESET2), 0, 0, 0);
>
> Since the comment and invocation span multiple lines, could we please
> wrap them in braces?
>
Yes, that would be better, will update it.
> Other than that, this looks good to me, so:
>
> Acked-by: Mark Rutland <mark.rutland@arm.com>
>
Thanks.
--
Regards,
Sudeep
next prev parent reply other threads:[~2019-04-11 16:25 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-11 10:33 [RESEND][PATCH v2] firmware/psci: add support for SYSTEM_RESET2 Sudeep Holla
2019-04-11 11:03 ` Mark Rutland
2019-04-11 16:25 ` Sudeep Holla [this message]
2019-04-11 11:42 ` Koskinen, Aaro (Nokia - FI/Espoo)
2019-04-11 16:49 ` Sudeep Holla
2019-04-11 18:26 ` Aaro Koskinen
2019-04-12 9:55 ` Sudeep Holla
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=20190411162545.GA5327@e107155-lin \
--to=sudeep.holla@arm.com \
--cc=aaro.koskinen@iki.fi \
--cc=aaro.koskinen@nokia.com \
--cc=f.fainelli@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=mark.rutland@arm.com \
--cc=michal.simek@xilinx.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