From 21f0c9a2829415f52b64cbdf965b01525e78f17a Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Wed, 11 Feb 2009 12:55:51 +0000 Subject: Make basic cache functions into calls, and get rid of CACHE_FUNCTION_WRAPPERS and CACHE_FUNCTIONS_AS_CALL macros. Rename flush/invalidate_icache to cpucache_flush/invalidate. They're inlined only if an implementation isn't provided by defining HAVE_CPUCACHE_FLUSH/INVALIDATE. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19971 a1c6a512-1295-4272-9138-f99709370657 --- firmware/rolo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware/rolo.c') diff --git a/firmware/rolo.c b/firmware/rolo.c index 6a3fcd2bbb..014f00e2c7 100644 --- a/firmware/rolo.c +++ b/firmware/rolo.c @@ -75,7 +75,7 @@ void rolo_restart_cop(void) COP_INT_DIS = -1; /* Invalidate cache */ - invalidate_icache(); + cpucache_invalidate(); /* Disable cache */ CACHE_CTL = CACHE_CTL_DISABLE; @@ -147,7 +147,7 @@ void rolo_restart(const unsigned char* source, unsigned char* dest, CPU_INT_DIS = -1; /* Flush cache */ - flush_icache(); + cpucache_flush(); /* Disable cache */ CACHE_CTL = CACHE_CTL_DISABLE; @@ -174,7 +174,7 @@ void rolo_restart(const unsigned char* source, unsigned char* dest, #elif defined(CPU_TCC780X) || (CONFIG_CPU == S3C2440) /* Flush and invalidate caches */ - invalidate_icache(); + cpucache_invalidate(); asm volatile( "mov pc, %0 \n" -- cgit v1.2.3