From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marc Zyngier Date: Wed, 04 Feb 2015 11:02:28 +0000 Subject: [U-Boot] [PATCH] ARM: HYP/non-sec: relocation before enable secondary cores In-Reply-To: <1423044909-5475-1-git-send-email-Peng.Fan@freescale.com> References: <1423044909-5475-1-git-send-email-Peng.Fan@freescale.com> Message-ID: <54D1FC44.90805@arm.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 04/02/15 10:15, Peng Fan wrote: > If CONFIG_ARMV7_PSCI is not defined and CONFIG_ARMV7_SECURE_BASE is defined, > smp_kicl_all_cpus may enable secondary cores and runs into secure_ram_addr( > _smp_pen), before code is relocated to secure ram. > So need relocation to secure ram before enable secondary cores. > > Signed-off-by: Peng Fan > --- > arch/arm/cpu/armv7/virt-v7.c | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > > diff --git a/arch/arm/cpu/armv7/virt-v7.c b/arch/arm/cpu/armv7/virt-v7.c > index b69fd37..4cb8806 100644 > --- a/arch/arm/cpu/armv7/virt-v7.c > +++ b/arch/arm/cpu/armv7/virt-v7.c > @@ -112,13 +112,20 @@ int armv7_init_nonsec(void) > for (i = 1; i <= itlinesnr; i++) > writel((unsigned)-1, gic_dist_addr + GICD_IGROUPRn + 4 * i); > > + /* > + * Relocate secure section before any cpu runs in secure ram. > + * smp_kick_all_cpus may enable other cores and runs into secure > + * ram, so need to relocate secure section before enabling other > + * cores. > + */ > + relocate_secure_section(); > + > #ifndef CONFIG_ARMV7_PSCI > smp_set_core_boot_addr((unsigned long)secure_ram_addr(_smp_pen), -1); > smp_kick_all_cpus(); > #endif > > /* call the non-sec switching code on this CPU also */ > - relocate_secure_section(); > secure_ram_addr(_nonsec_init)(); > return 0; > } > Seems like a sensible thing to do. FWIW: Acked-by: Marc Zyngier M. -- Jazz is not dead. It just smells funny...