Re: [PATCH v1 2/5] board_init: Use memset_simple() in board_init_f_init_reserve()

2021-08-09 Thread Stefan Roese
Hi Rasmus, On 09.08.21 09:52, Rasmus Villemoes wrote: On 06/08/2021 15.38, Stefan Roese wrote: board_init_f_init_reserve() is called very early in the boot process, before the caches are enabled. Because of this, the optimized memset() version can't be used here on ARM64. With this patch, the

Re: [PATCH v1 2/5] board_init: Use memset_simple() in board_init_f_init_reserve()

2021-08-09 Thread Rasmus Villemoes
On 06/08/2021 15.38, Stefan Roese wrote: > board_init_f_init_reserve() is called very early in the boot process, > before the caches are enabled. Because of this, the optimized memset() > version can't be used here on ARM64. With this patch, the simple memset > version memset_simple() is used here

[PATCH v1 2/5] board_init: Use memset_simple() in board_init_f_init_reserve()

2021-08-06 Thread Stefan Roese
board_init_f_init_reserve() is called very early in the boot process, before the caches are enabled. Because of this, the optimized memset() version can't be used here on ARM64. With this patch, the simple memset version memset_simple() is used here instead. Signed-off-by: Stefan Roese ---