diff options
Diffstat (limited to 'arch/sh/mm/cache-sh4.c')
-rw-r--r-- | arch/sh/mm/cache-sh4.c | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/arch/sh/mm/cache-sh4.c b/arch/sh/mm/cache-sh4.c index c3a09b27f8d5..dfc1d0379479 100644 --- a/arch/sh/mm/cache-sh4.c +++ b/arch/sh/mm/cache-sh4.c | |||
@@ -119,66 +119,6 @@ void __init p3_cache_init(void) | |||
119 | } | 119 | } |
120 | 120 | ||
121 | /* | 121 | /* |
122 | * Write back the dirty D-caches, but not invalidate them. | ||
123 | * | ||
124 | * START: Virtual Address (U0, P1, or P3) | ||
125 | * SIZE: Size of the region. | ||
126 | */ | ||
127 | void __flush_wback_region(void *start, int size) | ||
128 | { | ||
129 | unsigned long v; | ||
130 | unsigned long begin, end; | ||
131 | |||
132 | begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); | ||
133 | end = ((unsigned long)start + size + L1_CACHE_BYTES-1) | ||
134 | & ~(L1_CACHE_BYTES-1); | ||
135 | for (v = begin; v < end; v+=L1_CACHE_BYTES) { | ||
136 | asm volatile("ocbwb %0" | ||
137 | : /* no output */ | ||
138 | : "m" (__m(v))); | ||
139 | } | ||
140 | } | ||
141 | |||
142 | /* | ||
143 | * Write back the dirty D-caches and invalidate them. | ||
144 | * | ||
145 | * START: Virtual Address (U0, P1, or P3) | ||
146 | * SIZE: Size of the region. | ||
147 | */ | ||
148 | void __flush_purge_region(void *start, int size) | ||
149 | { | ||
150 | unsigned long v; | ||
151 | unsigned long begin, end; | ||
152 | |||
153 | begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); | ||
154 | end = ((unsigned long)start + size + L1_CACHE_BYTES-1) | ||
155 | & ~(L1_CACHE_BYTES-1); | ||
156 | for (v = begin; v < end; v+=L1_CACHE_BYTES) { | ||
157 | asm volatile("ocbp %0" | ||
158 | : /* no output */ | ||
159 | : "m" (__m(v))); | ||
160 | } | ||
161 | } | ||
162 | |||
163 | /* | ||
164 | * No write back please | ||
165 | */ | ||
166 | void __flush_invalidate_region(void *start, int size) | ||
167 | { | ||
168 | unsigned long v; | ||
169 | unsigned long begin, end; | ||
170 | |||
171 | begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); | ||
172 | end = ((unsigned long)start + size + L1_CACHE_BYTES-1) | ||
173 | & ~(L1_CACHE_BYTES-1); | ||
174 | for (v = begin; v < end; v+=L1_CACHE_BYTES) { | ||
175 | asm volatile("ocbi %0" | ||
176 | : /* no output */ | ||
177 | : "m" (__m(v))); | ||
178 | } | ||
179 | } | ||
180 | |||
181 | /* | ||
182 | * Write back the range of D-cache, and purge the I-cache. | 122 | * Write back the range of D-cache, and purge the I-cache. |
183 | * | 123 | * |
184 | * Called from kernel/module.c:sys_init_module and routine for a.out format, | 124 | * Called from kernel/module.c:sys_init_module and routine for a.out format, |