From: Mark Rutland <mark.rutland@arm.com>
To: Luca Fancellu <luca.fancellu@arm.com>
Cc: andre.przywara@arm.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [boot-wrapper v3 3/4] aarch64: Implement PSCI for Armv8-R
Date: Fri, 11 Oct 2024 11:55:06 +0100 [thread overview]
Message-ID: <ZwkECmOSlEFy0Hmf@J2N7QTR9R3> (raw)
In-Reply-To: <20240731141103.2559706-4-luca.fancellu@arm.com>
On Wed, Jul 31, 2024 at 03:11:02PM +0100, Luca Fancellu wrote:
> Armv8-R doesn't have EL3, so the PSCI vector needs to be
> installed in VBAR_EL2 and the conduit needs to be 'hcv'
> instead of 'smc'.
>
> Implement the modifications needed when --with-bw-arch is
> 'aarch64-r'.
>
> Signed-off-by: Luca Fancellu <luca.fancellu@arm.com>
> ---
> Changes from v2:
> - Major rework, reason in the cover letter.
> ---
> Makefile.am | 2 +-
> arch/aarch64/init.c | 14 +++++++++++---
> configure.ac | 3 +++
> 3 files changed, 15 insertions(+), 4 deletions(-)
>
> diff --git a/Makefile.am b/Makefile.am
> index bf97b989d5d7..62e2988c0dd3 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -57,7 +57,7 @@ ARCH_OBJ += psci.o
> COMMON_OBJ += psci.o
> PSCI_NODE := psci { \
> compatible = \"arm,psci\"; \
> - method = \"smc\"; \
> + method = \"$(PSCI_METHOD)\"; \
> cpu_on = <$(PSCI_CPU_ON)>; \
> cpu_off = <$(PSCI_CPU_OFF)>; \
> };
> diff --git a/arch/aarch64/init.c b/arch/aarch64/init.c
> index b0abde11ebd6..d8cf390dce20 100644
> --- a/arch/aarch64/init.c
> +++ b/arch/aarch64/init.c
> @@ -211,12 +211,20 @@ extern char psci_vectors[];
>
> static void cpu_init_psci_arch(unsigned int cpu)
> {
> - if (mrs(CurrentEL) != CURRENTEL_EL3) {
> + switch (mrs(CurrentEL)) {
> +#if !defined(BOOTWRAPPER_64R)
> + case CURRENTEL_EL3:
> + msr(VBAR_EL3, (unsigned long)psci_vectors);
> + break;
> +#else
> + case CURRENTEL_EL2:
> + msr(VBAR_EL2, (unsigned long)psci_vectors);
> + break;
> +#endif
> + default:
> print_cpu_warn(cpu, "PSCI could not be initialized (not booted at EL3).\r\n");
> return;
> }
> -
> - msr(VBAR_EL3, (unsigned long)psci_vectors);
> isb();
As on the prior patch, I'd like to aovid hte ifdeffery here; can we make
this:
if (!bootwrapper_is_r_class() && mrs(CurrentEL) == CURRENTEL_EL3) {
msr(VBAR_EL3, (unsigned long)psci_vectors);
isb();
return;
}
if (bootwrapper_is_r_class() && mrs(CurrentEL) == CURRENTEL_EL2) {
msr(VBAR_EL2, (unsigned long)psci_vectors);
isb();
return;
}
print_cpu_warn(cpu, "PSCI could not be initialized from this EL.\r\n");
Otherwise this looks good to me.
Mark.
> }
> #else
> diff --git a/configure.ac b/configure.ac
> index 88dbf9ba4f08..381f82612434 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -107,6 +107,9 @@ AC_ARG_ENABLE([psci],
> [USE_PSCI=$enableval], [USE_PSCI="yes"])
> AM_CONDITIONAL([PSCI], [test "x$USE_PSCI" = "xyes"])
> AS_IF([test "x$USE_PSCI" = "xyes"], [], [USE_PSCI=no])
> +AS_IF([test "x$USE_ARCH" = "xaarch64-r"],
> + AC_SUBST([PSCI_METHOD], [hvc]), AC_SUBST([PSCI_METHOD], [smc])
> +)
>
> AS_IF([test "x$USE_PSCI" != "xyes" -a "x$KERNEL_ES" = "x32"],
> [AC_MSG_ERROR([With an AArch32 kernel, boot method must be PSCI.])]
> --
> 2.34.1
>
next prev parent reply other threads:[~2024-10-11 11:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-31 14:10 [boot-wrapper v3 0/4] Add Armv8-R AArch64 support Luca Fancellu
2024-07-31 14:11 ` [boot-wrapper v3 1/4] Introduce --with-bw-arch for boot-wrapper compile arch Luca Fancellu
2024-10-11 10:50 ` Mark Rutland
2024-07-31 14:11 ` [boot-wrapper v3 2/4] aarch64: Enable Armv8-R EL2 boot Luca Fancellu
2024-10-11 10:52 ` Mark Rutland
2024-10-14 18:25 ` Luca Fancellu
2024-10-17 9:30 ` Mark Rutland
2024-07-31 14:11 ` [boot-wrapper v3 3/4] aarch64: Implement PSCI for Armv8-R Luca Fancellu
2024-10-11 10:55 ` Mark Rutland [this message]
2024-07-31 14:11 ` [boot-wrapper v3 4/4] aarch64: Start Xen on Armv8-R at EL2 Luca Fancellu
2024-10-11 10:56 ` Mark Rutland
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=ZwkECmOSlEFy0Hmf@J2N7QTR9R3 \
--to=mark.rutland@arm.com \
--cc=andre.przywara@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=luca.fancellu@arm.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