diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2009-02-11 12:55:51 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2009-02-11 12:55:51 +0000 |
| commit | 21f0c9a2829415f52b64cbdf965b01525e78f17a (patch) | |
| tree | b5cb8021097722969f75784011c9f64f991c0c3d /apps/plugin.c | |
| parent | 4cd7597172d916db9fc99bde4c03b669366f852a (diff) | |
| download | rockbox-21f0c9a2829415f52b64cbdf965b01525e78f17a.zip rockbox-21f0c9a2829415f52b64cbdf965b01525e78f17a.tar.gz rockbox-21f0c9a2829415f52b64cbdf965b01525e78f17a.tar.bz2 rockbox-21f0c9a2829415f52b64cbdf965b01525e78f17a.tar.xz | |
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
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 3b14b00..f9f1c53 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -327,9 +327,9 @@ static const struct plugin_api rockbox_api = { trigger_cpu_boost, cancel_cpu_boost, #endif -#ifdef CACHE_FUNCTIONS_AS_CALL - flush_icache, - invalidate_icache, +#if NUM_CORES > 1 + cpucache_flush, + cpucache_invalidate, #endif timer_register, timer_unregister, @@ -694,7 +694,7 @@ int plugin_load(const char* plugin, const void* parameter) #if NUM_CORES > 1 /* Make sure COP cache is flushed and invalidated before loading */ my_core = switch_core(CURRENT_CORE ^ 1); - invalidate_icache(); + cpucache_invalidate(); switch_core(my_core); #endif @@ -742,7 +742,7 @@ int plugin_load(const char* plugin, const void* parameter) lcd_remote_update(); #endif - invalidate_icache(); + cpucache_invalidate(); oldbars = viewportmanager_set_statusbar(VP_SB_HIDE_ALL); rc = hdr->entry_point(parameter); @@ -854,7 +854,7 @@ void plugin_iram_init(char *iramstart, char *iramcopy, size_t iram_size, memset(iramcopy, 0, iram_size); #if NUM_CORES > 1 /* writeback cleared iedata and iramcopy areas */ - flush_icache(); + cpucache_flush(); #endif } #endif /* PLUGIN_USE_IRAM */ |