]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - include/asm-sh/cache.h
Coding Style cleanup; update CHANGELOG
[karo-tx-uboot.git] / include / asm-sh / cache.h
1 #ifndef __ASM_SH_CACHE_H
2 #define __ASM_SH_CACHE_H
3
4 #if defined(CONFIG_SH4) || defined(CONFIG_SH4A)
5
6 #define L1_CACHE_BYTES 32
7 struct __large_struct { unsigned long buf[100]; };
8 #define __m(x) (*(struct __large_struct *)(x))
9
10 void dcache_wback_range (u32 start, u32 end)
11 {
12         u32 v;
13
14         start &= ~(L1_CACHE_BYTES - 1);
15         for (v = start; v < end; v += L1_CACHE_BYTES) {
16                 asm volatile ("ocbwb     %0":   /* no output */
17                               :"m" (__m (v)));
18         }
19 }
20
21 void dcache_invalid_range (u32 start, u32 end)
22 {
23         u32 v;
24
25         start &= ~(L1_CACHE_BYTES - 1);
26         for (v = start; v < end; v += L1_CACHE_BYTES) {
27                 asm volatile ("ocbi     %0":    /* no output */
28                               :"m" (__m (v)));
29         }
30 }
31 #endif /* CONFIG_SH4 || CONFIG_SH4A */
32
33 #endif  /* __ASM_SH_CACHE_H */