diff options
Diffstat (limited to 'sys/arch/macppc/stand/cache.c')
-rw-r--r-- | sys/arch/macppc/stand/cache.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/arch/macppc/stand/cache.c b/sys/arch/macppc/stand/cache.c new file mode 100644 index 00000000000..65fa15728b3 --- /dev/null +++ b/sys/arch/macppc/stand/cache.c @@ -0,0 +1,23 @@ +/* $OpenBSD: cache.c,v 1.1 2001/09/01 15:39:02 drahn Exp $ */ +#define CACHELINESIZE 32 /* For now XXX */ + +void +syncicache(from, len) + void *from; + int len; +{ + int l = len; + void *p = from; + + do { + asm volatile ("dcbf %1,%0" :: "r"(p), "r"(0)); + p += CACHELINESIZE; + } while ((l -= CACHELINESIZE) > 0); + asm volatile ("sync"); + do { + asm volatile ("icbi %1,%0" :: "r"(from), "r"(0)); + from += CACHELINESIZE; + } while ((len -= CACHELINESIZE) > 0); + asm volatile ("isync"); +} + |