Re: [U-Boot] [PATCH v2 07/23] armv8: add simple sdelay implementation

2016-12-04 Thread Simon Glass
Hi Andre, On 4 December 2016 at 18:52, Andre Przywara wrote: > The sunxi DRAM setup code needs an sdelay() implementation, which > wasn't defined for armv8 so far. > Shamelessly copy the armv7 version and adjust it to work in AArch64. > > Signed-off-by: Andre Przywara > --- > arch/arm/cpu/armv8

[U-Boot] [PATCH v2 07/23] armv8: add simple sdelay implementation

2016-12-04 Thread Andre Przywara
The sunxi DRAM setup code needs an sdelay() implementation, which wasn't defined for armv8 so far. Shamelessly copy the armv7 version and adjust it to work in AArch64. Signed-off-by: Andre Przywara --- arch/arm/cpu/armv8/cpu.c | 13 + 1 file changed, 13 insertions(+) diff --git a/ar