From d95c39072ace1a7aeaad3ee49ed668399b4862bd Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Fri, 13 Apr 2007 20:55:48 +0000 Subject: Portal Player: Add invalidate_icache and flush_icache. Flush the cache on the core for newborn threads. In doing so, move more ARM stuff to the target tree and organize it to make a clean job of it. If anything isn't appropriate for some particular device give a hollar or even just fix it by some added #ifdefing. I was informed that the PP targets are register compatible so I'm going off that advice. The Sansa likes it though. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13144 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/coldfire/system-target.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'firmware/target/coldfire') diff --git a/firmware/target/coldfire/system-target.h b/firmware/target/coldfire/system-target.h index 40542353be..6f1b2eb4ae 100644 --- a/firmware/target/coldfire/system-target.h +++ b/firmware/target/coldfire/system-target.h @@ -19,6 +19,9 @@ #ifndef SYSTEM_TARGET_H #define SYSTEM_TARGET_H +#define nop \ + asm volatile ("trapf") + #define or_l(mask, address) \ asm \ ("or.l %0,(%1)" \ @@ -147,6 +150,7 @@ static inline uint32_t swap_odd_even32(uint32_t value) return value; } +#define HAVE_INVALIDATE_ICACHE static inline void invalidate_icache(void) { asm volatile ("move.l #0x01000000,%d0\n" -- cgit v1.2.3