Re: [PATCH 2/3] arm: implement invalidate_icache_all on ARM11

2024-06-19 Thread Tom Rini
On Wed, Jun 19, 2024 at 02:56:24PM +0200, Heinrich Schuchardt wrote: > On 19.06.24 14:22, Ilias Apalodimas wrote: > > Hi Heinrich, > > > > On Sun, 16 Jun 2024 at 20:31, Heinrich Schuchardt > > wrote: > > > > > > In EFI sub-system we rely on invalidate_icache_all() to invalidate the > > > instruc

Re: [PATCH 2/3] arm: implement invalidate_icache_all on ARM11

2024-06-19 Thread Heinrich Schuchardt
On 19.06.24 14:22, Ilias Apalodimas wrote: Hi Heinrich, On Sun, 16 Jun 2024 at 20:31, Heinrich Schuchardt wrote: In EFI sub-system we rely on invalidate_icache_all() to invalidate the instruction cache after loading binaries. Add the missing implementation on ARM1136, ARM1176. Signed-off-by:

Re: [PATCH 2/3] arm: implement invalidate_icache_all on ARM11

2024-06-19 Thread Ilias Apalodimas
Hi Heinrich, On Sun, 16 Jun 2024 at 20:31, Heinrich Schuchardt wrote: > > In EFI sub-system we rely on invalidate_icache_all() to invalidate the > instruction cache after loading binaries. Add the missing implementation on > ARM1136, ARM1176. > > Signed-off-by: Heinrich Schuchardt > --- > arch/

[PATCH 2/3] arm: implement invalidate_icache_all on ARM11

2024-06-16 Thread Heinrich Schuchardt
In EFI sub-system we rely on invalidate_icache_all() to invalidate the instruction cache after loading binaries. Add the missing implementation on ARM1136, ARM1176. Signed-off-by: Heinrich Schuchardt --- arch/arm/cpu/arm11/cpu.c | 12 1 file changed, 12 insertions(+) diff --git a/a