Re: [U-Boot] [PATCH 1/9] ARM: HYP/non-sec: fix alignment requirements for vectors

2013-11-21 Thread Andre Przywara
On 11/21/2013 09:59 AM, Marc Zyngier wrote: Make sure the vectors are aligned on a 32 byte boundary, not the code that deals with it... I think that patch was posted before, and I already acked it, but it didn't make it into some tree. Albert, can you please take this? Also a candidate for th

Re: [U-Boot] [PATCH 1/9] ARM: HYP/non-sec: fix alignment requirements for vectors

2013-11-21 Thread Marc Zyngier
Hi Masahiro, On 21/11/13 10:19, Masahiro Yamada wrote: > Hello Marc > >> +.align 5 @ Minimal alignment for vectors >> + >> /* the vector table for secure state and HYP mode */ >> _monitor_vectors: >> .word 0 /* reset */ >> @@ -32,7 +34,6 @@ _monitor_vecto

Re: [U-Boot] [PATCH 1/9] ARM: HYP/non-sec: fix alignment requirements for vectors

2013-11-21 Thread Masahiro Yamada
Hello Marc > + .align 5 @ Minimal alignment for vectors > + > /* the vector table for secure state and HYP mode */ > _monitor_vectors: > .word 0 /* reset */ > @@ -32,7 +34,6 @@ _monitor_vectors: > * to non-secure state. > * We use only r0 and r1 here,

[U-Boot] [PATCH 1/9] ARM: HYP/non-sec: fix alignment requirements for vectors

2013-11-21 Thread Marc Zyngier
Make sure the vectors are aligned on a 32 byte boundary, not the code that deals with it... Signed-off-by: Marc Zyngier --- arch/arm/cpu/armv7/nonsec_virt.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7/nonsec_virt.S b/arch/arm/cpu/armv7/nonsec_virt.S i