Re: [U-Boot] [PATCH v2 4/7] ARM: switch to non-secure state during bootm execution

2013-07-04 Thread Andre Przywara
On 06/28/2013 05:18 AM, Masahiro Yamada wrote: Hi Andre. --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -60,6 +60,8 @@ COBJS-y += reset.o COBJS-y += cache.o COBJS-y += cache-cp15.o +COBJS-$(CONFIG_ARMV7_VIRT) += virt-v7.o + Judging from the file name virt-v

Re: [U-Boot] [PATCH v2 4/7] ARM: switch to non-secure state during bootm execution

2013-06-27 Thread Masahiro Yamada
Hi Andre. > --- a/arch/arm/lib/Makefile > +++ b/arch/arm/lib/Makefile > @@ -60,6 +60,8 @@ COBJS-y += reset.o > COBJS-y += cache.o > COBJS-y += cache-cp15.o > > +COBJS-$(CONFIG_ARMV7_VIRT) += virt-v7.o > + Judging from the file name virt-v7.c, you are thinkig this file is specif

Re: [U-Boot] [PATCH v2 4/7] ARM: switch to non-secure state during bootm execution

2013-06-19 Thread Christoffer Dall
On Thu, Jun 13, 2013 at 01:01:10PM +0200, Andre Przywara wrote: > To actually trigger the non-secure switch we just implemented, call > the switching routine from within the bootm command implementation. > This way we automatically enable this feature without further user > intervention. > > The c

[U-Boot] [PATCH v2 4/7] ARM: switch to non-secure state during bootm execution

2013-06-13 Thread Andre Przywara
To actually trigger the non-secure switch we just implemented, call the switching routine from within the bootm command implementation. This way we automatically enable this feature without further user intervention. The core specific part of the work is done in the assembly routine in nonsec_virt