* [boot-wrapper v3 0/4] Add Armv8-R AArch64 support
@ 2024-07-31 14:10 Luca Fancellu
2024-07-31 14:11 ` [boot-wrapper v3 1/4] Introduce --with-bw-arch for boot-wrapper compile arch Luca Fancellu
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Luca Fancellu @ 2024-07-31 14:10 UTC (permalink / raw)
To: mark.rutland, andre.przywara; +Cc: linux-arm-kernel
Currently, we cannot boot Linux with boot-wrapper on Armv8-R AArch64:
1. The Armv8-R AArch64 profile does not support the EL3.
2. The Armv8-R AArch64 EL2 only supports a PMSA, which Linux does not
support. So it's necessary to drop into EL1 before entering the kernel.
3. There is no EL2 booting code for Armv8-R AArch64 and no
configuration for dropping to EL1 in boot-wrapper.
These patches enable boot-wrapper booting Linux with Armv8-R AArch64.
This work took inspiration from a serie already present upstream [1].
[1] https://patchwork.kernel.org/project/linux-arm-kernel/cover/20210525062509.201464-1-jaxson.han@arm.com/
Changes from v2:
- Now this work is based on this serie:
https://patchwork.kernel.org/project/linux-arm-kernel/cover/20240729161501.1806271-1-mark.rutland@arm.com/
Given the major rework, dropped every R-by.
Changes from v1:
- Dropped patch 4 regarding GIC changes, it's not needed anymore.
Luca Fancellu (4):
Introduce --with-bw-arch for boot-wrapper compile arch
aarch64: Enable Armv8-R EL2 boot
aarch64: Implement PSCI for Armv8-R
aarch64: Start Xen on Armv8-R at EL2
Makefile.am | 7 +++-
arch/aarch64/boot.S | 5 +++
arch/aarch64/include/asm/cpu.h | 24 ++++++++++++
arch/aarch64/init.c | 69 ++++++++++++++++++++++++++++++++--
configure.ac | 20 ++++++++--
5 files changed, 118 insertions(+), 7 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [boot-wrapper v3 1/4] Introduce --with-bw-arch for boot-wrapper compile arch 2024-07-31 14:10 [boot-wrapper v3 0/4] Add Armv8-R AArch64 support Luca Fancellu @ 2024-07-31 14:11 ` 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 ` (2 subsequent siblings) 3 siblings, 1 reply; 11+ messages in thread From: Luca Fancellu @ 2024-07-31 14:11 UTC (permalink / raw) To: mark.rutland, andre.przywara; +Cc: linux-arm-kernel Introduce a new autoconf parameter --with-bw-arch that takes 'aarch64-a' and 'aarch32-a' as compile architecture, the former is selected by default when the parameter is not passed. This new parameter superseed --enable-aarch32-bw, its functionality is now implemented by --with-bw-arch=aarch32-a. Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> --- Changes from v2: - Major rework, reason in the cover letter. --- configure.ac | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index ce41daebc378..bba42fa1dba8 100644 --- a/configure.ac +++ b/configure.ac @@ -9,9 +9,18 @@ AC_INIT([boot-wrapper], [v0.2]) AM_INIT_AUTOMAKE([foreign]) -AC_ARG_ENABLE([aarch32-bw], - AS_HELP_STRING([--enable-aarch32-bw], [build a 32-bit boot-wrapper]), - [BOOTWRAPPER_ES=32], [BOOTWRAPPER_ES=64]) +# Allow a user to pass --with-bw-arch={aarch64-a,aarch32-a} +AC_ARG_WITH([bw-arch], + AS_HELP_STRING([--with-bw-arch], [aarch64-a selects AArch64-A (default), aarch32-a selects AArch32-A]), + [case "${withval}" in + no|yes|aarch64-a) USE_ARCH=aarch64-a ;; + aarch32-a) USE_ARCH=aarch32-a ;; + *) AC_MSG_ERROR([Bad value "${withval}" for --with-bw-arch. Use "aarch64-a" or "aarch32-a"]) ;; + esac]) + +AS_IF([test "x$USE_ARCH" = "xaarch32-a"], + [BOOTWRAPPER_ES=32], [BOOTWRAPPER_ES=64] +) AM_CONDITIONAL([BOOTWRAPPER_32], [test "x$BOOTWRAPPER_ES" = "x32"]) AC_ARG_ENABLE([aarch32-kernel], -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [boot-wrapper v3 1/4] Introduce --with-bw-arch for boot-wrapper compile arch 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 0 siblings, 0 replies; 11+ messages in thread From: Mark Rutland @ 2024-10-11 10:50 UTC (permalink / raw) To: Luca Fancellu; +Cc: andre.przywara, linux-arm-kernel On Wed, Jul 31, 2024 at 03:11:00PM +0100, Luca Fancellu wrote: > Introduce a new autoconf parameter --with-bw-arch that takes > 'aarch64-a' and 'aarch32-a' as compile architecture, the former > is selected by default when the parameter is not passed. > > This new parameter superseed --enable-aarch32-bw, its functionality > is now implemented by --with-bw-arch=aarch32-a. > > Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> > --- > Changes from v2: > - Major rework, reason in the cover letter. > --- > configure.ac | 15 ++++++++++++--- > 1 file changed, 12 insertions(+), 3 deletions(-) > > diff --git a/configure.ac b/configure.ac > index ce41daebc378..bba42fa1dba8 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -9,9 +9,18 @@ AC_INIT([boot-wrapper], [v0.2]) > > AM_INIT_AUTOMAKE([foreign]) > > -AC_ARG_ENABLE([aarch32-bw], > - AS_HELP_STRING([--enable-aarch32-bw], [build a 32-bit boot-wrapper]), > - [BOOTWRAPPER_ES=32], [BOOTWRAPPER_ES=64]) > +# Allow a user to pass --with-bw-arch={aarch64-a,aarch32-a} > +AC_ARG_WITH([bw-arch], > + AS_HELP_STRING([--with-bw-arch], [aarch64-a selects AArch64-A (default), aarch32-a selects AArch32-A]), Could we we please make the help text: specify boot-wrapper architecture: aarch64-a (default) or aarch32-a That way ist says what the option does, and it avoids the repeition. With that change I think this looks good to go. Mark. > + [case "${withval}" in > + no|yes|aarch64-a) USE_ARCH=aarch64-a ;; > + aarch32-a) USE_ARCH=aarch32-a ;; > + *) AC_MSG_ERROR([Bad value "${withval}" for --with-bw-arch. Use "aarch64-a" or "aarch32-a"]) ;; > + esac]) > + > +AS_IF([test "x$USE_ARCH" = "xaarch32-a"], > + [BOOTWRAPPER_ES=32], [BOOTWRAPPER_ES=64] > +) > AM_CONDITIONAL([BOOTWRAPPER_32], [test "x$BOOTWRAPPER_ES" = "x32"]) > > AC_ARG_ENABLE([aarch32-kernel], > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [boot-wrapper v3 2/4] aarch64: Enable Armv8-R EL2 boot 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-07-31 14:11 ` Luca Fancellu 2024-10-11 10:52 ` Mark Rutland 2024-07-31 14:11 ` [boot-wrapper v3 3/4] aarch64: Implement PSCI for Armv8-R Luca Fancellu 2024-07-31 14:11 ` [boot-wrapper v3 4/4] aarch64: Start Xen on Armv8-R at EL2 Luca Fancellu 3 siblings, 1 reply; 11+ messages in thread From: Luca Fancellu @ 2024-07-31 14:11 UTC (permalink / raw) To: mark.rutland, andre.przywara; +Cc: linux-arm-kernel When booting on Armv8-R, EL3 is not implemented and the Linux kernel needs to be booted in EL1, so initialise EL2 and start the kernel in the expected exception level. To do so, introduce the 'aarch64-r' argument for the --with-bw-arch parameter. PSCI is not yet implemented for aarch64-r. Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> --- Changes from v2: - Major rework, reason in the cover letter. --- Makefile.am | 4 +++ arch/aarch64/boot.S | 5 ++++ arch/aarch64/include/asm/cpu.h | 24 +++++++++++++++ arch/aarch64/init.c | 55 ++++++++++++++++++++++++++++++++++ configure.ac | 8 +++-- 5 files changed, 93 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6ebece25b230..bf97b989d5d7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,6 +25,10 @@ DEFINES += $(if $(SYSREGS_BASE), -DSYSREGS_BASE=$(SYSREGS_BASE), ) DEFINES += -DUART_BASE=$(UART_BASE) DEFINES += -DSTACK_SIZE=256 +if BOOTWRAPPER_64R +DEFINES += -DBOOTWRAPPER_64R +endif + if KERNEL_32 DEFINES += -DKERNEL_32 PSCI_CPU_ON := 0x84000003 diff --git a/arch/aarch64/boot.S b/arch/aarch64/boot.S index f8fc8082fbee..0b4f6824045a 100644 --- a/arch/aarch64/boot.S +++ b/arch/aarch64/boot.S @@ -100,7 +100,12 @@ ASM_FUNC(jump_kernel) mov x1, x21 mov x2, x22 mov x3, x23 +#if defined(BOOTWRAPPER_64R) + // On Armv8-R Linux needs to be booted at EL1 + mov x4, #SPSR_KERNEL_EL1 +#else mov x4, #SPSR_KERNEL +#endif mrs x5, CurrentEL cmp x5, #CURRENTEL_EL3 diff --git a/arch/aarch64/include/asm/cpu.h b/arch/aarch64/include/asm/cpu.h index a5744e16e4b2..6686161c7c0b 100644 --- a/arch/aarch64/include/asm/cpu.h +++ b/arch/aarch64/include/asm/cpu.h @@ -32,10 +32,15 @@ (BIT(29) | BIT(28) | BIT(23) | BIT(22) | BIT(18) | BIT(16) | \ BIT(11) | BIT(5) | BIT(4)) +#define CPTR_EL2_NO_E2H_RES1 \ + (BITS(13,12) | BIT(9) | BITS(7,0)) + #define SCTLR_EL2_RES1 \ (BIT(29) | BIT(28) | BIT(23) | BIT(22) | BIT(18) | BIT(16) | \ BIT(11) | BIT(5) | BIT(4)) +#define VSTCR_EL2_RES1 (BIT(31)) + #define SCTLR_EL1_RES1 \ (BIT(29) | BIT(28) | BIT(23) | BIT(22) | BIT(20) | BIT(11) | \ BIT(8) | BIT(7) | BIT(4)) @@ -64,7 +69,13 @@ #define SCR_EL3_PIEN BIT(45) #define SCR_EL3_D128En BIT(47) +#define VTCR_EL2_MSA BIT(31) + #define HCR_EL2_RES1 BIT(1) +#define HCR_EL2_APK_NOTRAP BIT(40) +#define HCR_EL2_API_NOTRAP BIT(41) +#define HCR_EL2_FIEN_NOTRAP BIT(47) +#define HCR_EL2_ENSCXT_NOTRAP BIT(53) #define ID_AA64DFR0_EL1_PMSVER BITS(35, 32) #define ID_AA64DFR0_EL1_TRACEBUFFER BITS(47, 44) @@ -81,6 +92,8 @@ #define ID_AA64ISAR2_EL1_GPA3 BITS(11, 8) #define ID_AA64ISAR2_EL1_APA3 BITS(15, 12) +#define ID_AA64MMFR0_EL1_MSA BITS(51, 48) +#define ID_AA64MMFR0_EL1_MSA_frac BITS(55, 52) #define ID_AA64MMFR0_EL1_FGT BITS(59, 56) #define ID_AA64MMFR0_EL1_ECV BITS(63, 60) @@ -96,8 +109,12 @@ #define ID_AA64PFR1_EL1_MTE BITS(11, 8) #define ID_AA64PFR1_EL1_SME BITS(27, 24) +#define ID_AA64PFR1_EL1_CSV2_frac BITS(35, 32) #define ID_AA64PFR1_EL1_THE BITS(51, 48) + +#define ID_AA64PFR0_EL1_RAS BITS(31, 28) #define ID_AA64PFR0_EL1_SVE BITS(35, 32) +#define ID_AA64PFR0_EL1_CSV2 BITS(59, 56) #define ID_AA64SMFR0_EL1 s3_0_c0_c4_5 #define ID_AA64SMFR0_EL1_FA64 BIT(63) @@ -106,7 +123,9 @@ * Initial register values required for the boot-wrapper to run out-of-reset. */ #define SCTLR_EL3_RESET SCTLR_EL3_RES1 +#define CPTR_EL2_RESET CPTR_EL2_NO_E2H_RES1 #define SCTLR_EL2_RESET SCTLR_EL2_RES1 +#define VSTCR_EL2_RESET VSTCR_EL2_RES1 #define SCTLR_EL1_RESET SCTLR_EL1_RES1 #define HCR_EL2_RESET HCR_EL2_RES1 @@ -123,6 +142,7 @@ #define SPSR_I (1 << 7) /* IRQ masked */ #define SPSR_F (1 << 6) /* FIQ masked */ #define SPSR_T (1 << 5) /* Thumb */ +#define SPSR_EL1H (5 << 0) /* EL1 Handler mode */ #define SPSR_EL2H (9 << 0) /* EL2 Handler mode */ #define SPSR_HYP (0x1a << 0) /* M[3:0] = hyp, M[4] = AArch32 */ @@ -135,6 +155,9 @@ #define ICC_CTLR_EL3 S3_6_C12_C12_4 #define ICC_PMR_EL1 S3_0_C4_C6_0 +#define VSTCR_EL2 s3_4_c2_c6_2 +#define VSCTLR_EL2 s3_4_c2_c0_0 + #define ZCR_EL3 s3_6_c1_c2_0 #define ZCR_EL3_LEN_MAX 0xf @@ -162,6 +185,7 @@ #else #define SCTLR_EL1_KERNEL SCTLR_EL1_RES1 #define SPSR_KERNEL (SPSR_A | SPSR_D | SPSR_I | SPSR_F | SPSR_EL2H) +#define SPSR_KERNEL_EL1 (SPSR_A | SPSR_D | SPSR_I | SPSR_F | SPSR_EL1H) #endif #ifndef __ASSEMBLY__ diff --git a/arch/aarch64/init.c b/arch/aarch64/init.c index 81fe33ab80ac..b0abde11ebd6 100644 --- a/arch/aarch64/init.c +++ b/arch/aarch64/init.c @@ -54,6 +54,18 @@ static inline bool cpu_has_permission_indirection(void) return mrs(ID_AA64MMFR3_EL1) & mask; } +static bool cpu_has_scxt(void) +{ + unsigned long csv2 = mrs_field(ID_AA64PFR0_EL1, CSV2); + + if (csv2 >= 2) + return true; + if (csv2 < 1) + return false; + + return mrs_field(ID_AA64PFR1_EL1, CSV2_frac) >= 2; +} + static void cpu_init_el3(void) { unsigned long scr = SCR_EL3_RES1 | SCR_EL3_NS | SCR_EL3_HCE; @@ -157,6 +169,43 @@ static void cpu_init_el3(void) } } +void cpu_init_el2_armv8r(void) +{ + unsigned long hcr = mrs(hcr_el2); + + /* On Armv8-R ID_AA64MMFR0_EL1[51:48] == 0xF */ + if ((mrs_field(ID_AA64MMFR0_EL1, MSA) != 0xF) || + (mrs_field(ID_AA64MMFR0_EL1, MSA_frac) < 2)) + { + print_string("Initialization failed, Armv8-R not detected or VMSA not supported at EL1.\r\n"); + while(1) {} + unreachable(); + } + + msr(vpidr_el2, mrs(midr_el1)); + msr(vmpidr_el2, mrs(mpidr_el1)); + + msr(VSCTLR_EL2, 0); + msr(VSTCR_EL2, VSTCR_EL2_RESET); + msr(vtcr_el2, VTCR_EL2_MSA); + + msr(cntvoff_el2, 0); + msr(cptr_el2, CPTR_EL2_RESET); + msr(mdcr_el2, 0); + + if (cpu_has_scxt()) + hcr |= HCR_EL2_ENSCXT_NOTRAP; + + if (mrs_field(ID_AA64PFR0_EL1, RAS) >= 2) + hcr |= HCR_EL2_FIEN_NOTRAP; + + if (cpu_has_pauth()) + hcr |= HCR_EL2_APK_NOTRAP | HCR_EL2_API_NOTRAP; + + msr(hcr_el2, hcr); + isb(); +} + #ifdef PSCI extern char psci_vectors[]; @@ -181,6 +230,12 @@ void cpu_init_arch(unsigned int cpu) gic_secure_init(); } +#if defined(BOOTWRAPPER_64R) + if (mrs(CurrentEL) == CURRENTEL_EL2) { + cpu_init_el2_armv8r(); + } +#endif + cpu_init_psci_arch(cpu); msr(CNTFRQ_EL0, COUNTER_FREQ); diff --git a/configure.ac b/configure.ac index bba42fa1dba8..88dbf9ba4f08 100644 --- a/configure.ac +++ b/configure.ac @@ -9,14 +9,16 @@ AC_INIT([boot-wrapper], [v0.2]) AM_INIT_AUTOMAKE([foreign]) -# Allow a user to pass --with-bw-arch={aarch64-a,aarch32-a} +# Allow a user to pass --with-bw-arch={aarch64-a,aarch32-a,aarch64-r} AC_ARG_WITH([bw-arch], - AS_HELP_STRING([--with-bw-arch], [aarch64-a selects AArch64-A (default), aarch32-a selects AArch32-A]), + AS_HELP_STRING([--with-bw-arch], [aarch64-a selects AArch64-A (default), aarch32-a selects AArch32-A, aarch64-r selects AArch64-R]), [case "${withval}" in no|yes|aarch64-a) USE_ARCH=aarch64-a ;; aarch32-a) USE_ARCH=aarch32-a ;; - *) AC_MSG_ERROR([Bad value "${withval}" for --with-bw-arch. Use "aarch64-a" or "aarch32-a"]) ;; + aarch64-r) USE_ARCH=aarch64-r ;; + *) AC_MSG_ERROR([Bad value "${withval}" for --with-bw-arch. Use "aarch64-a", "aarch32-a" or "aarch64-r"]) ;; esac]) +AM_CONDITIONAL([BOOTWRAPPER_64R], [test "x$USE_ARCH" = "xaarch64-r"]) AS_IF([test "x$USE_ARCH" = "xaarch32-a"], [BOOTWRAPPER_ES=32], [BOOTWRAPPER_ES=64] -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [boot-wrapper v3 2/4] aarch64: Enable Armv8-R EL2 boot 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 0 siblings, 1 reply; 11+ messages in thread From: Mark Rutland @ 2024-10-11 10:52 UTC (permalink / raw) To: Luca Fancellu; +Cc: andre.przywara, linux-arm-kernel Hi Luca, Overall this looks good, I just have a few structural comments below. On Wed, Jul 31, 2024 at 03:11:01PM +0100, Luca Fancellu wrote: > When booting on Armv8-R, EL3 is not implemented and the Linux > kernel needs to be booted in EL1, so initialise EL2 and start > the kernel in the expected exception level. > > To do so, introduce the 'aarch64-r' argument for the > --with-bw-arch parameter. > > PSCI is not yet implemented for aarch64-r. > > Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> > --- > Changes from v2: > - Major rework, reason in the cover letter. > --- > Makefile.am | 4 +++ > arch/aarch64/boot.S | 5 ++++ > arch/aarch64/include/asm/cpu.h | 24 +++++++++++++++ > arch/aarch64/init.c | 55 ++++++++++++++++++++++++++++++++++ > configure.ac | 8 +++-- > 5 files changed, 93 insertions(+), 3 deletions(-) > > diff --git a/Makefile.am b/Makefile.am > index 6ebece25b230..bf97b989d5d7 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -25,6 +25,10 @@ DEFINES += $(if $(SYSREGS_BASE), -DSYSREGS_BASE=$(SYSREGS_BASE), ) > DEFINES += -DUART_BASE=$(UART_BASE) > DEFINES += -DSTACK_SIZE=256 > > +if BOOTWRAPPER_64R > +DEFINES += -DBOOTWRAPPER_64R > +endif > + > if KERNEL_32 > DEFINES += -DKERNEL_32 > PSCI_CPU_ON := 0x84000003 > diff --git a/arch/aarch64/boot.S b/arch/aarch64/boot.S > index f8fc8082fbee..0b4f6824045a 100644 > --- a/arch/aarch64/boot.S > +++ b/arch/aarch64/boot.S > @@ -100,7 +100,12 @@ ASM_FUNC(jump_kernel) > mov x1, x21 > mov x2, x22 > mov x3, x23 > +#if defined(BOOTWRAPPER_64R) > + // On Armv8-R Linux needs to be booted at EL1 > + mov x4, #SPSR_KERNEL_EL1 > +#else > mov x4, #SPSR_KERNEL > +#endif > > mrs x5, CurrentEL > cmp x5, #CURRENTEL_EL3 > diff --git a/arch/aarch64/include/asm/cpu.h b/arch/aarch64/include/asm/cpu.h > index a5744e16e4b2..6686161c7c0b 100644 > --- a/arch/aarch64/include/asm/cpu.h > +++ b/arch/aarch64/include/asm/cpu.h > @@ -32,10 +32,15 @@ > (BIT(29) | BIT(28) | BIT(23) | BIT(22) | BIT(18) | BIT(16) | \ > BIT(11) | BIT(5) | BIT(4)) > > +#define CPTR_EL2_NO_E2H_RES1 \ > + (BITS(13,12) | BIT(9) | BITS(7,0)) > + > #define SCTLR_EL2_RES1 \ > (BIT(29) | BIT(28) | BIT(23) | BIT(22) | BIT(18) | BIT(16) | \ > BIT(11) | BIT(5) | BIT(4)) > > +#define VSTCR_EL2_RES1 (BIT(31)) > + > #define SCTLR_EL1_RES1 \ > (BIT(29) | BIT(28) | BIT(23) | BIT(22) | BIT(20) | BIT(11) | \ > BIT(8) | BIT(7) | BIT(4)) > @@ -64,7 +69,13 @@ > #define SCR_EL3_PIEN BIT(45) > #define SCR_EL3_D128En BIT(47) > > +#define VTCR_EL2_MSA BIT(31) > + > #define HCR_EL2_RES1 BIT(1) > +#define HCR_EL2_APK_NOTRAP BIT(40) > +#define HCR_EL2_API_NOTRAP BIT(41) > +#define HCR_EL2_FIEN_NOTRAP BIT(47) > +#define HCR_EL2_ENSCXT_NOTRAP BIT(53) These can drop the '_NOTRAP' suffix; that's only used on some of the MDSCR definitions because it's an enumerated value for a field (which the architecture doesn't name), whereas these should just be the architected names as with their SCR_EL3 counterparts, i.e. #define HCR_EL2_APK BIT(40) #define HCR_EL2_API BIT(41) #define HCR_EL2_FIEN BIT(47) #define HCR_EL2_EnSCXT BIT(53) That said, we don't set SCR_EL3.{FIEN,EnSCXT} today for A-class; and Linux doesn't currently care -- is that something you're actually using on R-class? > #define ID_AA64DFR0_EL1_PMSVER BITS(35, 32) > #define ID_AA64DFR0_EL1_TRACEBUFFER BITS(47, 44) > @@ -81,6 +92,8 @@ > #define ID_AA64ISAR2_EL1_GPA3 BITS(11, 8) > #define ID_AA64ISAR2_EL1_APA3 BITS(15, 12) > > +#define ID_AA64MMFR0_EL1_MSA BITS(51, 48) > +#define ID_AA64MMFR0_EL1_MSA_frac BITS(55, 52) > #define ID_AA64MMFR0_EL1_FGT BITS(59, 56) > #define ID_AA64MMFR0_EL1_ECV BITS(63, 60) > > @@ -96,8 +109,12 @@ > > #define ID_AA64PFR1_EL1_MTE BITS(11, 8) > #define ID_AA64PFR1_EL1_SME BITS(27, 24) > +#define ID_AA64PFR1_EL1_CSV2_frac BITS(35, 32) > #define ID_AA64PFR1_EL1_THE BITS(51, 48) > + > +#define ID_AA64PFR0_EL1_RAS BITS(31, 28) > #define ID_AA64PFR0_EL1_SVE BITS(35, 32) > +#define ID_AA64PFR0_EL1_CSV2 BITS(59, 56) > > #define ID_AA64SMFR0_EL1 s3_0_c0_c4_5 > #define ID_AA64SMFR0_EL1_FA64 BIT(63) > @@ -106,7 +123,9 @@ > * Initial register values required for the boot-wrapper to run out-of-reset. > */ > #define SCTLR_EL3_RESET SCTLR_EL3_RES1 > +#define CPTR_EL2_RESET CPTR_EL2_NO_E2H_RES1 > #define SCTLR_EL2_RESET SCTLR_EL2_RES1 > +#define VSTCR_EL2_RESET VSTCR_EL2_RES1 > #define SCTLR_EL1_RESET SCTLR_EL1_RES1 > #define HCR_EL2_RESET HCR_EL2_RES1 > > @@ -123,6 +142,7 @@ > #define SPSR_I (1 << 7) /* IRQ masked */ > #define SPSR_F (1 << 6) /* FIQ masked */ > #define SPSR_T (1 << 5) /* Thumb */ > +#define SPSR_EL1H (5 << 0) /* EL1 Handler mode */ > #define SPSR_EL2H (9 << 0) /* EL2 Handler mode */ > #define SPSR_HYP (0x1a << 0) /* M[3:0] = hyp, M[4] = AArch32 */ > > @@ -135,6 +155,9 @@ > #define ICC_CTLR_EL3 S3_6_C12_C12_4 > #define ICC_PMR_EL1 S3_0_C4_C6_0 > > +#define VSTCR_EL2 s3_4_c2_c6_2 > +#define VSCTLR_EL2 s3_4_c2_c0_0 > + > #define ZCR_EL3 s3_6_c1_c2_0 > #define ZCR_EL3_LEN_MAX 0xf > > @@ -162,6 +185,7 @@ > #else > #define SCTLR_EL1_KERNEL SCTLR_EL1_RES1 > #define SPSR_KERNEL (SPSR_A | SPSR_D | SPSR_I | SPSR_F | SPSR_EL2H) > +#define SPSR_KERNEL_EL1 (SPSR_A | SPSR_D | SPSR_I | SPSR_F | SPSR_EL1H) > #endif > > #ifndef __ASSEMBLY__ > diff --git a/arch/aarch64/init.c b/arch/aarch64/init.c > index 81fe33ab80ac..b0abde11ebd6 100644 > --- a/arch/aarch64/init.c > +++ b/arch/aarch64/init.c > @@ -54,6 +54,18 @@ static inline bool cpu_has_permission_indirection(void) > return mrs(ID_AA64MMFR3_EL1) & mask; > } > > +static bool cpu_has_scxt(void) > +{ > + unsigned long csv2 = mrs_field(ID_AA64PFR0_EL1, CSV2); > + > + if (csv2 >= 2) > + return true; > + if (csv2 < 1) > + return false; > + > + return mrs_field(ID_AA64PFR1_EL1, CSV2_frac) >= 2; > +} > + > static void cpu_init_el3(void) > { > unsigned long scr = SCR_EL3_RES1 | SCR_EL3_NS | SCR_EL3_HCE; > @@ -157,6 +169,43 @@ static void cpu_init_el3(void) > } > } > > +void cpu_init_el2_armv8r(void) > +{ > + unsigned long hcr = mrs(hcr_el2); > + > + /* On Armv8-R ID_AA64MMFR0_EL1[51:48] == 0xF */ > + if ((mrs_field(ID_AA64MMFR0_EL1, MSA) != 0xF) || > + (mrs_field(ID_AA64MMFR0_EL1, MSA_frac) < 2)) > + { > + print_string("Initialization failed, Armv8-R not detected or VMSA not supported at EL1.\r\n"); > + while(1) {} > + unreachable(); > + } I'd suggest we make this: if (mrs_field(ID_AA64MMFR0_EL1, MSA) != 0xF) { print_string("ID_AA64MMFR0_EL1.MSA != 0xF, not R-class\r\n"); while (1) wfe(); } if (mrs_field(ID_AA64MMFR0_EL1, MSA_frac) < 2) { print_string("ID_AA64MMFR0_EL1.MSA_frac < 2, EL1&0 VMSA not supported\r\n"); while (1) wfe(); } > + > + msr(vpidr_el2, mrs(midr_el1)); > + msr(vmpidr_el2, mrs(mpidr_el1)); > + > + msr(VSCTLR_EL2, 0); > + msr(VSTCR_EL2, VSTCR_EL2_RESET); > + msr(vtcr_el2, VTCR_EL2_MSA); > + > + msr(cntvoff_el2, 0); > + msr(cptr_el2, CPTR_EL2_RESET); > + msr(mdcr_el2, 0); > + > + if (cpu_has_scxt()) > + hcr |= HCR_EL2_ENSCXT_NOTRAP; > + > + if (mrs_field(ID_AA64PFR0_EL1, RAS) >= 2) > + hcr |= HCR_EL2_FIEN_NOTRAP; > + > + if (cpu_has_pauth()) > + hcr |= HCR_EL2_APK_NOTRAP | HCR_EL2_API_NOTRAP; > + > + msr(hcr_el2, hcr); > + isb(); > +} > + > #ifdef PSCI > extern char psci_vectors[]; > > @@ -181,6 +230,12 @@ void cpu_init_arch(unsigned int cpu) > gic_secure_init(); > } > > +#if defined(BOOTWRAPPER_64R) > + if (mrs(CurrentEL) == CURRENTEL_EL2) { > + cpu_init_el2_armv8r(); > + } > +#endif We generally try to avoid ifdeffery within functions (e.g. see how we use kernel_is_32_bit()). Can you add a bootwrapper_is_r_class() above, e.g. static inline bool bootwrapper_is_r_class(void) { #ifdef BOOTWRAPPER_64R return true; #else return false; #endif } That way here we can have: if (!bootwrapper_is_r_class() && mrs(CurrentEL) == CURRENTEL_EL3) { ... } if (bootwrapper_is_r_class() && mrs(CurrentEL) == CURRENTEL_EL2) { ... } ... and it'll be easier to restructure that in future if necessary (e.g. to handle A-class starting at EL2). > + > cpu_init_psci_arch(cpu); > > msr(CNTFRQ_EL0, COUNTER_FREQ); > diff --git a/configure.ac b/configure.ac > index bba42fa1dba8..88dbf9ba4f08 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -9,14 +9,16 @@ AC_INIT([boot-wrapper], [v0.2]) > > AM_INIT_AUTOMAKE([foreign]) > > -# Allow a user to pass --with-bw-arch={aarch64-a,aarch32-a} > +# Allow a user to pass --with-bw-arch={aarch64-a,aarch32-a,aarch64-r} > AC_ARG_WITH([bw-arch], > - AS_HELP_STRING([--with-bw-arch], [aarch64-a selects AArch64-A (default), aarch32-a selects AArch32-A]), > + AS_HELP_STRING([--with-bw-arch], [aarch64-a selects AArch64-A (default), aarch32-a selects AArch32-A, aarch64-r selects AArch64-R]), As on the ifrst patch, please simplify this to remover the repetition. Mark. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [boot-wrapper v3 2/4] aarch64: Enable Armv8-R EL2 boot 2024-10-11 10:52 ` Mark Rutland @ 2024-10-14 18:25 ` Luca Fancellu 2024-10-17 9:30 ` Mark Rutland 0 siblings, 1 reply; 11+ messages in thread From: Luca Fancellu @ 2024-10-14 18:25 UTC (permalink / raw) To: Mark Rutland; +Cc: Andre Przywara, linux-arm-kernel@lists.infradead.org Hi Mark, >> + >> #define HCR_EL2_RES1 BIT(1) >> +#define HCR_EL2_APK_NOTRAP BIT(40) >> +#define HCR_EL2_API_NOTRAP BIT(41) >> +#define HCR_EL2_FIEN_NOTRAP BIT(47) >> +#define HCR_EL2_ENSCXT_NOTRAP BIT(53) > > These can drop the '_NOTRAP' suffix; that's only used on some of the > MDSCR definitions because it's an enumerated value for a field (which > the architecture doesn't name), whereas these should just be the > architected names as with their SCR_EL3 counterparts, i.e. > > #define HCR_EL2_APK BIT(40) > #define HCR_EL2_API BIT(41) > #define HCR_EL2_FIEN BIT(47) > #define HCR_EL2_EnSCXT BIT(53) > > That said, we don't set SCR_EL3.{FIEN,EnSCXT} today for A-class; and > Linux doesn't currently care -- is that something you're actually using > on R-class? > I see EnSCXT is set currently in TF-A: https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/refs/heads/master/lib/el3_runtime/aarch64/context_mgmt.c#253 and FIEN as well provided that ENABLE_FEAT_RAS=1: https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/refs/heads/master/lib/el3_runtime/aarch64/context_mgmt.c#408 Said so, I’ve done a run without disabling the trap for them and Linux is booting fine, so what do you prefer here? Cheers, Luca ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [boot-wrapper v3 2/4] aarch64: Enable Armv8-R EL2 boot 2024-10-14 18:25 ` Luca Fancellu @ 2024-10-17 9:30 ` Mark Rutland 0 siblings, 0 replies; 11+ messages in thread From: Mark Rutland @ 2024-10-17 9:30 UTC (permalink / raw) To: Luca Fancellu; +Cc: Andre Przywara, linux-arm-kernel@lists.infradead.org On Mon, Oct 14, 2024 at 07:25:04PM +0100, Luca Fancellu wrote: > Hi Mark, > > >> #define HCR_EL2_RES1 BIT(1) > >> +#define HCR_EL2_APK_NOTRAP BIT(40) > >> +#define HCR_EL2_API_NOTRAP BIT(41) > >> +#define HCR_EL2_FIEN_NOTRAP BIT(47) > >> +#define HCR_EL2_ENSCXT_NOTRAP BIT(53) > > > > These can drop the '_NOTRAP' suffix; that's only used on some of the > > MDSCR definitions because it's an enumerated value for a field (which > > the architecture doesn't name), whereas these should just be the > > architected names as with their SCR_EL3 counterparts, i.e. > > > > #define HCR_EL2_APK BIT(40) > > #define HCR_EL2_API BIT(41) > > #define HCR_EL2_FIEN BIT(47) > > #define HCR_EL2_EnSCXT BIT(53) > > > > That said, we don't set SCR_EL3.{FIEN,EnSCXT} today for A-class; and > > Linux doesn't currently care -- is that something you're actually using > > on R-class? > > I see EnSCXT is set currently in TF-A: > https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/refs/heads/master/lib/el3_runtime/aarch64/context_mgmt.c#253 > > and FIEN as well provided that ENABLE_FEAT_RAS=1: > https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/refs/heads/master/lib/el3_runtime/aarch64/context_mgmt.c#408 > > Said so, I’ve done a run without disabling the trap for them and Linux is booting fine, so what do you > prefer here? Sorry for not being clear; please keep them for now, with the renaming above. For consistency we should update the A-class code to configure the relevant EL3 controls, but I'm happy for that to happen later. Mark. ^ permalink raw reply [flat|nested] 11+ messages in thread
* [boot-wrapper v3 3/4] aarch64: Implement PSCI for Armv8-R 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-07-31 14:11 ` [boot-wrapper v3 2/4] aarch64: Enable Armv8-R EL2 boot Luca Fancellu @ 2024-07-31 14:11 ` Luca Fancellu 2024-10-11 10:55 ` Mark Rutland 2024-07-31 14:11 ` [boot-wrapper v3 4/4] aarch64: Start Xen on Armv8-R at EL2 Luca Fancellu 3 siblings, 1 reply; 11+ messages in thread From: Luca Fancellu @ 2024-07-31 14:11 UTC (permalink / raw) To: mark.rutland, andre.przywara; +Cc: linux-arm-kernel 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(); } #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 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [boot-wrapper v3 3/4] aarch64: Implement PSCI for Armv8-R 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 0 siblings, 0 replies; 11+ messages in thread From: Mark Rutland @ 2024-10-11 10:55 UTC (permalink / raw) To: Luca Fancellu; +Cc: andre.przywara, linux-arm-kernel 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 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [boot-wrapper v3 4/4] aarch64: Start Xen on Armv8-R at EL2 2024-07-31 14:10 [boot-wrapper v3 0/4] Add Armv8-R AArch64 support Luca Fancellu ` (2 preceding siblings ...) 2024-07-31 14:11 ` [boot-wrapper v3 3/4] aarch64: Implement PSCI for Armv8-R Luca Fancellu @ 2024-07-31 14:11 ` Luca Fancellu 2024-10-11 10:56 ` Mark Rutland 3 siblings, 1 reply; 11+ messages in thread From: Luca Fancellu @ 2024-07-31 14:11 UTC (permalink / raw) To: mark.rutland, andre.przywara; +Cc: linux-arm-kernel When bootwrapper is compiled with Xen support and it is started at EL2 on Armv8-R AArch64, keep the current EL and jump to the Xen image using the SPSR_KERNEL as spsr_el2 value. Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> --- Changes from v2: - Major rework, reason in the cover letter. --- Makefile.am | 1 + arch/aarch64/boot.S | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 62e2988c0dd3..0aee117eb827 100644 --- a/Makefile.am +++ b/Makefile.am @@ -113,6 +113,7 @@ XEN_CHOSEN := xen,xen-bootargs = \"$(XEN_CMDLINE)\"; \ compatible = \"xen,linux-zimage\", \"xen,multiboot-module\"; \ reg = <0x0 $(DOM0_OFFSET) 0x0 $(KERNEL_SIZE)>; \ }; +DEFINES += -DXEN endif if INITRD diff --git a/arch/aarch64/boot.S b/arch/aarch64/boot.S index 0b4f6824045a..d50ff48d83de 100644 --- a/arch/aarch64/boot.S +++ b/arch/aarch64/boot.S @@ -100,7 +100,7 @@ ASM_FUNC(jump_kernel) mov x1, x21 mov x2, x22 mov x3, x23 -#if defined(BOOTWRAPPER_64R) +#if defined(BOOTWRAPPER_64R) && !defined(XEN) // On Armv8-R Linux needs to be booted at EL1 mov x4, #SPSR_KERNEL_EL1 #else -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [boot-wrapper v3 4/4] aarch64: Start Xen on Armv8-R at EL2 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 0 siblings, 0 replies; 11+ messages in thread From: Mark Rutland @ 2024-10-11 10:56 UTC (permalink / raw) To: Luca Fancellu; +Cc: andre.przywara, linux-arm-kernel On Wed, Jul 31, 2024 at 03:11:03PM +0100, Luca Fancellu wrote: > When bootwrapper is compiled with Xen support and it is started > at EL2 on Armv8-R AArch64, keep the current EL and jump to the > Xen image using the SPSR_KERNEL as spsr_el2 value. > > Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> > --- > Changes from v2: > - Major rework, reason in the cover letter. > --- > Makefile.am | 1 + > arch/aarch64/boot.S | 2 +- > 2 files changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Makefile.am b/Makefile.am > index 62e2988c0dd3..0aee117eb827 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -113,6 +113,7 @@ XEN_CHOSEN := xen,xen-bootargs = \"$(XEN_CMDLINE)\"; \ > compatible = \"xen,linux-zimage\", \"xen,multiboot-module\"; \ > reg = <0x0 $(DOM0_OFFSET) 0x0 $(KERNEL_SIZE)>; \ > }; > +DEFINES += -DXEN > endif > > if INITRD > diff --git a/arch/aarch64/boot.S b/arch/aarch64/boot.S > index 0b4f6824045a..d50ff48d83de 100644 > --- a/arch/aarch64/boot.S > +++ b/arch/aarch64/boot.S > @@ -100,7 +100,7 @@ ASM_FUNC(jump_kernel) > mov x1, x21 > mov x2, x22 > mov x3, x23 > -#if defined(BOOTWRAPPER_64R) > +#if defined(BOOTWRAPPER_64R) && !defined(XEN) > // On Armv8-R Linux needs to be booted at EL1 > mov x4, #SPSR_KERNEL_EL1 > #else FWIW, this looks fine to me. Mark. ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-10-17 9:55 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 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 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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox