aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2010-11-08 23:27:50 -0500
committerGreg Ungerer <gerg@uclinux.org>2011-01-05 00:19:19 -0500
commitd475e3e4739ce465df740b51decbbea3b1b51823 (patch)
tree537a24e871043cb216fe9db747e94367eca47a71 /arch/m68k
parent8ce877a8eb8293b5b2c07f259d694026b0f519e4 (diff)
m68knommu: make cache push code ColdFire generic
Currently the code to push cache lines is only available to version 4 cores. Version 3 cores may also need to use this if we support copy- back caches on them. Move this code to make it more generic, and useful for all version ColdFire cores. With this in place we can now have a single cache_flush_all() code path that does all the right things on all version cores. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r--arch/m68k/include/asm/cacheflush_no.h7
-rw-r--r--arch/m68k/include/asm/m54xxacr.h38
2 files changed, 7 insertions, 38 deletions
diff --git a/arch/m68k/include/asm/cacheflush_no.h b/arch/m68k/include/asm/cacheflush_no.h
index 8ada4ffc98e..f931e182983 100644
--- a/arch/m68k/include/asm/cacheflush_no.h
+++ b/arch/m68k/include/asm/cacheflush_no.h
@@ -30,9 +30,13 @@
30#define copy_from_user_page(vma, page, vaddr, dst, src, len) \ 30#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
31 memcpy(dst, src, len) 31 memcpy(dst, src, len)
32 32
33#ifndef __flush_cache_all 33void mcf_cache_push(void);
34
34static inline void __flush_cache_all(void) 35static inline void __flush_cache_all(void)
35{ 36{
37#ifdef CACHE_PUSH
38 mcf_cache_push();
39#endif
36#ifdef CACHE_INVALIDATE 40#ifdef CACHE_INVALIDATE
37 __asm__ __volatile__ ( 41 __asm__ __volatile__ (
38 "movel %0, %%d0\n\t" 42 "movel %0, %%d0\n\t"
@@ -41,6 +45,5 @@ static inline void __flush_cache_all(void)
41 : : "i" (CACHE_INVALIDATE) : "d0" ); 45 : : "i" (CACHE_INVALIDATE) : "d0" );
42#endif 46#endif
43} 47}
44#endif /* __flush_cache_all */
45 48
46#endif /* _M68KNOMMU_CACHEFLUSH_H */ 49#endif /* _M68KNOMMU_CACHEFLUSH_H */
diff --git a/arch/m68k/include/asm/m54xxacr.h b/arch/m68k/include/asm/m54xxacr.h
index 3c81a7a34a8..6bce82fdb9c 100644
--- a/arch/m68k/include/asm/m54xxacr.h
+++ b/arch/m68k/include/asm/m54xxacr.h
@@ -83,46 +83,12 @@
83#define ACR2_MODE (0x000f0000+INSN_CACHE_MODE) 83#define ACR2_MODE (0x000f0000+INSN_CACHE_MODE)
84#define ACR3_MODE 0 84#define ACR3_MODE 0
85 85
86#ifndef __ASSEMBLY__
87
88#if ((DATA_CACHE_MODE & ACR_CM) == ACR_CM_WT) 86#if ((DATA_CACHE_MODE & ACR_CM) == ACR_CM_WT)
89#define flush_dcache_range(a, l) do { asm("nop"); } while (0) 87#define flush_dcache_range(a, l) do { asm("nop"); } while (0)
90#endif 88#endif
91
92static inline void __m54xx_flush_cache_all(void)
93{
94 __asm__ __volatile__ (
95#if ((DATA_CACHE_MODE & ACR_CM) == ACR_CM_CP) 89#if ((DATA_CACHE_MODE & ACR_CM) == ACR_CM_CP)
96 /* 90/* Copyback cache mode must push dirty cache lines first */
97 * Use cpushl to push and invalidate all cache lines. 91#define CACHE_PUSH
98 * Gas doesn't seem to know how to generate the ColdFire
99 * cpushl instruction... Oh well, bit stuff it for now.
100 */
101 "clrl %%d0\n\t"
102 "1:\n\t"
103 "movel %%d0,%%a0\n\t"
104 "2:\n\t"
105 ".word 0xf468\n\t"
106 "addl %0,%%a0\n\t"
107 "cmpl %1,%%a0\n\t"
108 "blt 2b\n\t"
109 "addql #1,%%d0\n\t"
110 "cmpil %2,%%d0\n\t"
111 "bne 1b\n\t"
112#endif 92#endif
113 "movel %3,%%d0\n\t"
114 "movec %%d0,%%CACR\n\t"
115 "nop\n\t" /* forces flush of Store Buffer */
116 : /* No output */
117 : "i" (CACHE_LINE_SIZE),
118 "i" (DCACHE_SIZE / CACHE_WAYS),
119 "i" (CACHE_WAYS),
120 "i" (CACHE_INVALIDATE)
121 : "d0", "a0" );
122}
123
124#define __flush_cache_all() __m54xx_flush_cache_all()
125
126#endif /* __ASSEMBLY__ */
127 93
128#endif /* m54xxacr_h */ 94#endif /* m54xxacr_h */