Re: [PATCH 1/7] m68k: Implement a default flush_dcache_all

2024-07-03 Thread Tom Rini
On Wed, 19 Jun 2024 15:27:53 -0600, Tom Rini wrote: > Implement a weak default version of flush_dcache_all which is based on > the ARM default, which is to flush the entire range via > flush_dcache_range(...). > > Applied to u-boot/master, thanks! -- Tom

Re: [PATCH 1/7] m68k: Implement a default flush_dcache_all

2024-06-25 Thread Ilias Apalodimas
On Thu, 20 Jun 2024 at 00:28, Tom Rini wrote: > > Implement a weak default version of flush_dcache_all which is based on > the ARM default, which is to flush the entire range via > flush_dcache_range(...). > > Signed-off-by: Tom Rini > --- > Cc: Huan Wang > Cc: Angelo Dureghello > --- > arch/m

[PATCH 1/7] m68k: Implement a default flush_dcache_all

2024-06-19 Thread Tom Rini
Implement a weak default version of flush_dcache_all which is based on the ARM default, which is to flush the entire range via flush_dcache_range(...). Signed-off-by: Tom Rini --- Cc: Huan Wang Cc: Angelo Dureghello --- arch/m68k/lib/cache.c | 9 + 1 file changed, 9 insertions(+) diff