blob: 7ce81618831382fbef9fe987a0a9ecc64ad95662 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/mm/cache-sh4.c
3 *
4 * Copyright (C) 1999, 2000, 2002 Niibe Yutaka
Paul Mundtd10040f2007-09-24 16:38:25 +09005 * Copyright (C) 2001 - 2007 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2003 Richard Curnow
Chris Smith09b5a102008-07-02 15:17:11 +09007 * Copyright (c) 2007 STMicroelectronics (R&D) Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mm.h>
Paul Mundt52e27782006-11-21 11:09:41 +090015#include <linux/io.h>
16#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/mmu_context.h>
18#include <asm/cacheflush.h>
19
Paul Mundt28ccf7f2006-09-27 18:30:07 +090020/*
21 * The maximum number of pages we support up to when doing ranged dcache
22 * flushing. Anything exceeding this will simply flush the dcache in its
23 * entirety.
24 */
25#define MAX_DCACHE_PAGES 64 /* XXX: Tune for ways */
Chris Smith09b5a102008-07-02 15:17:11 +090026#define MAX_ICACHE_PAGES 32
Paul Mundt28ccf7f2006-09-27 18:30:07 +090027
Richard Curnowb638d0b2006-09-27 14:09:26 +090028static void __flush_dcache_segment_1way(unsigned long start,
29 unsigned long extent);
30static void __flush_dcache_segment_2way(unsigned long start,
31 unsigned long extent);
32static void __flush_dcache_segment_4way(unsigned long start,
33 unsigned long extent);
34
35static void __flush_cache_4096(unsigned long addr, unsigned long phys,
Paul Mundta2527102006-09-27 11:29:55 +090036 unsigned long exec_offset);
Richard Curnowb638d0b2006-09-27 14:09:26 +090037
38/*
39 * This is initialised here to ensure that it is not placed in the BSS. If
40 * that were to happen, note that cache_init gets called before the BSS is
41 * cleared, so this would get nulled out which would be hopeless.
42 */
43static void (*__flush_dcache_segment_fn)(unsigned long, unsigned long) =
44 (void (*)(unsigned long, unsigned long))0xdeadbeef;
45
46static void compute_alias(struct cache_info *c)
47{
48 c->alias_mask = ((c->sets - 1) << c->entry_shift) & ~(PAGE_SIZE - 1);
Paul Mundtd10040f2007-09-24 16:38:25 +090049 c->n_aliases = c->alias_mask ? (c->alias_mask >> PAGE_SHIFT) + 1 : 0;
Richard Curnowb638d0b2006-09-27 14:09:26 +090050}
51
52static void __init emit_cache_params(void)
53{
54 printk("PVR=%08x CVR=%08x PRR=%08x\n",
55 ctrl_inl(CCN_PVR),
56 ctrl_inl(CCN_CVR),
57 ctrl_inl(CCN_PRR));
58 printk("I-cache : n_ways=%d n_sets=%d way_incr=%d\n",
Paul Mundt7ec9d6f2007-09-21 18:05:20 +090059 boot_cpu_data.icache.ways,
60 boot_cpu_data.icache.sets,
61 boot_cpu_data.icache.way_incr);
Richard Curnowb638d0b2006-09-27 14:09:26 +090062 printk("I-cache : entry_mask=0x%08x alias_mask=0x%08x n_aliases=%d\n",
Paul Mundt7ec9d6f2007-09-21 18:05:20 +090063 boot_cpu_data.icache.entry_mask,
64 boot_cpu_data.icache.alias_mask,
65 boot_cpu_data.icache.n_aliases);
Richard Curnowb638d0b2006-09-27 14:09:26 +090066 printk("D-cache : n_ways=%d n_sets=%d way_incr=%d\n",
Paul Mundt7ec9d6f2007-09-21 18:05:20 +090067 boot_cpu_data.dcache.ways,
68 boot_cpu_data.dcache.sets,
69 boot_cpu_data.dcache.way_incr);
Richard Curnowb638d0b2006-09-27 14:09:26 +090070 printk("D-cache : entry_mask=0x%08x alias_mask=0x%08x n_aliases=%d\n",
Paul Mundt7ec9d6f2007-09-21 18:05:20 +090071 boot_cpu_data.dcache.entry_mask,
72 boot_cpu_data.dcache.alias_mask,
73 boot_cpu_data.dcache.n_aliases);
Richard Curnowb638d0b2006-09-27 14:09:26 +090074
Paul Mundtab27f622007-09-24 17:00:45 +090075 /*
76 * Emit Secondary Cache parameters if the CPU has a probed L2.
77 */
78 if (boot_cpu_data.flags & CPU_HAS_L2_CACHE) {
79 printk("S-cache : n_ways=%d n_sets=%d way_incr=%d\n",
80 boot_cpu_data.scache.ways,
81 boot_cpu_data.scache.sets,
82 boot_cpu_data.scache.way_incr);
83 printk("S-cache : entry_mask=0x%08x alias_mask=0x%08x n_aliases=%d\n",
84 boot_cpu_data.scache.entry_mask,
85 boot_cpu_data.scache.alias_mask,
86 boot_cpu_data.scache.n_aliases);
87 }
88
Richard Curnowb638d0b2006-09-27 14:09:26 +090089 if (!__flush_dcache_segment_fn)
90 panic("unknown number of cache ways\n");
91}
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
94 * SH-4 has virtually indexed and physically tagged cache.
95 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096void __init p3_cache_init(void)
97{
Paul Mundt7ec9d6f2007-09-21 18:05:20 +090098 compute_alias(&boot_cpu_data.icache);
99 compute_alias(&boot_cpu_data.dcache);
Paul Mundtab27f622007-09-24 17:00:45 +0900100 compute_alias(&boot_cpu_data.scache);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900101
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900102 switch (boot_cpu_data.dcache.ways) {
Richard Curnowb638d0b2006-09-27 14:09:26 +0900103 case 1:
104 __flush_dcache_segment_fn = __flush_dcache_segment_1way;
105 break;
106 case 2:
107 __flush_dcache_segment_fn = __flush_dcache_segment_2way;
108 break;
109 case 4:
110 __flush_dcache_segment_fn = __flush_dcache_segment_4way;
111 break;
112 default:
113 __flush_dcache_segment_fn = NULL;
114 break;
115 }
116
117 emit_cache_params();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
120/*
121 * Write back the dirty D-caches, but not invalidate them.
122 *
123 * START: Virtual Address (U0, P1, or P3)
124 * SIZE: Size of the region.
125 */
126void __flush_wback_region(void *start, int size)
127{
128 unsigned long v;
129 unsigned long begin, end;
130
131 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
132 end = ((unsigned long)start + size + L1_CACHE_BYTES-1)
133 & ~(L1_CACHE_BYTES-1);
134 for (v = begin; v < end; v+=L1_CACHE_BYTES) {
135 asm volatile("ocbwb %0"
136 : /* no output */
137 : "m" (__m(v)));
138 }
139}
140
141/*
142 * Write back the dirty D-caches and invalidate them.
143 *
144 * START: Virtual Address (U0, P1, or P3)
145 * SIZE: Size of the region.
146 */
147void __flush_purge_region(void *start, int size)
148{
149 unsigned long v;
150 unsigned long begin, end;
151
152 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
153 end = ((unsigned long)start + size + L1_CACHE_BYTES-1)
154 & ~(L1_CACHE_BYTES-1);
155 for (v = begin; v < end; v+=L1_CACHE_BYTES) {
156 asm volatile("ocbp %0"
157 : /* no output */
158 : "m" (__m(v)));
159 }
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/*
163 * No write back please
164 */
165void __flush_invalidate_region(void *start, int size)
166{
167 unsigned long v;
168 unsigned long begin, end;
169
170 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1);
171 end = ((unsigned long)start + size + L1_CACHE_BYTES-1)
172 & ~(L1_CACHE_BYTES-1);
173 for (v = begin; v < end; v+=L1_CACHE_BYTES) {
174 asm volatile("ocbi %0"
175 : /* no output */
176 : "m" (__m(v)));
177 }
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
181 * Write back the range of D-cache, and purge the I-cache.
182 *
Chris Smith09b5a102008-07-02 15:17:11 +0900183 * Called from kernel/module.c:sys_init_module and routine for a.out format,
184 * signal handler code and kprobes code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
186void flush_icache_range(unsigned long start, unsigned long end)
187{
Chris Smith09b5a102008-07-02 15:17:11 +0900188 int icacheaddr;
189 unsigned long flags, v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int i;
191
Chris Smith09b5a102008-07-02 15:17:11 +0900192 /* If there are too many pages then just blow the caches */
193 if (((end - start) >> PAGE_SHIFT) >= MAX_ICACHE_PAGES) {
194 flush_cache_all();
195 } else {
196 /* selectively flush d-cache then invalidate the i-cache */
197 /* this is inefficient, so only use for small ranges */
198 start &= ~(L1_CACHE_BYTES-1);
199 end += L1_CACHE_BYTES-1;
200 end &= ~(L1_CACHE_BYTES-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Chris Smith09b5a102008-07-02 15:17:11 +0900202 local_irq_save(flags);
203 jump_to_uncached();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Chris Smith09b5a102008-07-02 15:17:11 +0900205 for (v = start; v < end; v+=L1_CACHE_BYTES) {
206 asm volatile("ocbwb %0"
207 : /* no output */
208 : "m" (__m(v)));
Richard Curnowb638d0b2006-09-27 14:09:26 +0900209
Chris Smith09b5a102008-07-02 15:17:11 +0900210 icacheaddr = CACHE_IC_ADDRESS_ARRAY | (
211 v & cpu_data->icache.entry_mask);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900212
Chris Smith09b5a102008-07-02 15:17:11 +0900213 for (i = 0; i < cpu_data->icache.ways;
214 i++, icacheaddr += cpu_data->icache.way_incr)
215 /* Clear i-cache line valid-bit */
216 ctrl_outl(0, icacheaddr);
217 }
218
219 back_to_cached();
220 local_irq_restore(flags);
221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224static inline void flush_cache_4096(unsigned long start,
225 unsigned long phys)
226{
Paul Mundt33573c02006-09-27 18:37:30 +0900227 unsigned long flags, exec_offset = 0;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /*
Richard Curnowb638d0b2006-09-27 14:09:26 +0900230 * All types of SH-4 require PC to be in P2 to operate on the I-cache.
231 * Some types of SH-4 require PC to be in P2 to operate on the D-cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900233 if ((boot_cpu_data.flags & CPU_HAS_P2_FLUSH_BUG) ||
Paul Mundt33573c02006-09-27 18:37:30 +0900234 (start < CACHE_OC_ADDRESS_ARRAY))
Paul Mundt510c72ad2006-11-27 12:06:26 +0900235 exec_offset = 0x20000000;
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900236
Paul Mundt33573c02006-09-27 18:37:30 +0900237 local_irq_save(flags);
238 __flush_cache_4096(start | SH_CACHE_ASSOC,
239 P1SEGADDR(phys), exec_offset);
240 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243/*
244 * Write back & invalidate the D-cache of the page.
245 * (To avoid "alias" issues)
246 */
247void flush_dcache_page(struct page *page)
248{
Paul Mundt39e688a2007-03-05 19:46:47 +0900249 if (test_bit(PG_mapped, &page->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 unsigned long phys = PHYSADDR(page_address(page));
Richard Curnowb638d0b2006-09-27 14:09:26 +0900251 unsigned long addr = CACHE_OC_ADDRESS_ARRAY;
252 int i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 /* Loop all the D-cache */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900255 n = boot_cpu_data.dcache.n_aliases;
Paul Mundt510c72ad2006-11-27 12:06:26 +0900256 for (i = 0; i < n; i++, addr += 4096)
Richard Curnowb638d0b2006-09-27 14:09:26 +0900257 flush_cache_4096(addr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Paul Mundtfdfc74f2006-09-27 14:05:52 +0900259
260 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900263/* TODO: Selective icache invalidation through IC address array.. */
Paul Mundt205a3b42008-09-05 18:00:29 +0900264static void __uses_jump_to_uncached flush_icache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 unsigned long flags, ccr;
267
268 local_irq_save(flags);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900269 jump_to_uncached();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* Flush I-cache */
272 ccr = ctrl_inl(CCR);
273 ccr |= CCR_CACHE_ICI;
274 ctrl_outl(ccr, CCR);
275
Paul Mundt29847622006-09-27 14:57:44 +0900276 /*
Stuart Menefycbaa1182007-11-30 17:06:36 +0900277 * back_to_cached() will take care of the barrier for us, don't add
Paul Mundt29847622006-09-27 14:57:44 +0900278 * another one!
279 */
280
Stuart Menefycbaa1182007-11-30 17:06:36 +0900281 back_to_cached();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 local_irq_restore(flags);
283}
284
Paul Mundta2527102006-09-27 11:29:55 +0900285void flush_dcache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900287 (*__flush_dcache_segment_fn)(0UL, boot_cpu_data.dcache.way_size);
Paul Mundtfdfc74f2006-09-27 14:05:52 +0900288 wmb();
Paul Mundta2527102006-09-27 11:29:55 +0900289}
290
291void flush_cache_all(void)
292{
293 flush_dcache_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 flush_icache_all();
295}
296
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900297static void __flush_cache_mm(struct mm_struct *mm, unsigned long start,
298 unsigned long end)
299{
300 unsigned long d = 0, p = start & PAGE_MASK;
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900301 unsigned long alias_mask = boot_cpu_data.dcache.alias_mask;
302 unsigned long n_aliases = boot_cpu_data.dcache.n_aliases;
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900303 unsigned long select_bit;
304 unsigned long all_aliases_mask;
305 unsigned long addr_offset;
306 pgd_t *dir;
307 pmd_t *pmd;
308 pud_t *pud;
309 pte_t *pte;
310 int i;
311
312 dir = pgd_offset(mm, p);
313 pud = pud_offset(dir, p);
314 pmd = pmd_offset(pud, p);
315 end = PAGE_ALIGN(end);
316
317 all_aliases_mask = (1 << n_aliases) - 1;
318
319 do {
320 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd))) {
321 p &= PMD_MASK;
322 p += PMD_SIZE;
323 pmd++;
324
325 continue;
326 }
327
328 pte = pte_offset_kernel(pmd, p);
329
330 do {
331 unsigned long phys;
332 pte_t entry = *pte;
333
334 if (!(pte_val(entry) & _PAGE_PRESENT)) {
335 pte++;
336 p += PAGE_SIZE;
337 continue;
338 }
339
340 phys = pte_val(entry) & PTE_PHYS_MASK;
341
342 if ((p ^ phys) & alias_mask) {
343 d |= 1 << ((p & alias_mask) >> PAGE_SHIFT);
344 d |= 1 << ((phys & alias_mask) >> PAGE_SHIFT);
345
346 if (d == all_aliases_mask)
347 goto loop_exit;
348 }
349
350 pte++;
351 p += PAGE_SIZE;
352 } while (p < end && ((unsigned long)pte & ~PAGE_MASK));
353 pmd++;
354 } while (p < end);
355
356loop_exit:
357 addr_offset = 0;
358 select_bit = 1;
359
360 for (i = 0; i < n_aliases; i++) {
361 if (d & select_bit) {
362 (*__flush_dcache_segment_fn)(addr_offset, PAGE_SIZE);
363 wmb();
364 }
365
366 select_bit <<= 1;
367 addr_offset += PAGE_SIZE;
368 }
369}
370
371/*
372 * Note : (RPC) since the caches are physically tagged, the only point
373 * of flush_cache_mm for SH-4 is to get rid of aliases from the
374 * D-cache. The assumption elsewhere, e.g. flush_cache_range, is that
375 * lines can stay resident so long as the virtual address they were
376 * accessed with (hence cache set) is in accord with the physical
377 * address (i.e. tag). It's no different here. So I reckon we don't
378 * need to flush the I-cache, since aliases don't matter for that. We
379 * should try that.
380 *
381 * Caller takes mm->mmap_sem.
382 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383void flush_cache_mm(struct mm_struct *mm)
384{
Richard Curnowb638d0b2006-09-27 14:09:26 +0900385 /*
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900386 * If cache is only 4k-per-way, there are never any 'aliases'. Since
387 * the cache is physically tagged, the data can just be left in there.
Richard Curnowb638d0b2006-09-27 14:09:26 +0900388 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900389 if (boot_cpu_data.dcache.n_aliases == 0)
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900390 return;
391
392 /*
393 * Don't bother groveling around the dcache for the VMA ranges
394 * if there are too many PTEs to make it worthwhile.
395 */
396 if (mm->nr_ptes >= MAX_DCACHE_PAGES)
397 flush_dcache_all();
398 else {
399 struct vm_area_struct *vma;
400
401 /*
402 * In this case there are reasonably sized ranges to flush,
403 * iterate through the VMA list and take care of any aliases.
404 */
405 for (vma = mm->mmap; vma; vma = vma->vm_next)
406 __flush_cache_mm(mm, vma->vm_start, vma->vm_end);
407 }
408
409 /* Only touch the icache if one of the VMAs has VM_EXEC set. */
410 if (mm->exec_vm)
411 flush_icache_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
414/*
415 * Write back and invalidate I/D-caches for the page.
416 *
417 * ADDR: Virtual Address (U0 address)
418 * PFN: Physical page number
419 */
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900420void flush_cache_page(struct vm_area_struct *vma, unsigned long address,
421 unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 unsigned long phys = pfn << PAGE_SHIFT;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900424 unsigned int alias_mask;
425
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900426 alias_mask = boot_cpu_data.dcache.alias_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* We only need to flush D-cache when we have alias */
Richard Curnowb638d0b2006-09-27 14:09:26 +0900429 if ((address^phys) & alias_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* Loop 4K of the D-cache */
431 flush_cache_4096(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900432 CACHE_OC_ADDRESS_ARRAY | (address & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 phys);
434 /* Loop another 4K of the D-cache */
435 flush_cache_4096(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900436 CACHE_OC_ADDRESS_ARRAY | (phys & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 phys);
438 }
439
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900440 alias_mask = boot_cpu_data.icache.alias_mask;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900441 if (vma->vm_flags & VM_EXEC) {
442 /*
443 * Evict entries from the portion of the cache from which code
444 * may have been executed at this address (virtual). There's
445 * no need to evict from the portion corresponding to the
446 * physical address as for the D-cache, because we know the
447 * kernel has never executed the code through its identity
448 * translation.
449 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 flush_cache_4096(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900451 CACHE_IC_ADDRESS_ARRAY | (address & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 phys);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
456/*
457 * Write back and invalidate D-caches.
458 *
459 * START, END: Virtual Address (U0 address)
460 *
461 * NOTE: We need to flush the _physical_ page entry.
462 * Flushing the cache lines for U0 only isn't enough.
463 * We need to flush for P1 too, which may contain aliases.
464 */
465void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
466 unsigned long end)
467{
Richard Curnowb638d0b2006-09-27 14:09:26 +0900468 /*
469 * If cache is only 4k-per-way, there are never any 'aliases'. Since
470 * the cache is physically tagged, the data can just be left in there.
471 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900472 if (boot_cpu_data.dcache.n_aliases == 0)
Richard Curnowb638d0b2006-09-27 14:09:26 +0900473 return;
474
Paul Mundta2527102006-09-27 11:29:55 +0900475 /*
476 * Don't bother with the lookup and alias check if we have a
477 * wide range to cover, just blow away the dcache in its
478 * entirety instead. -- PFM.
479 */
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900480 if (((end - start) >> PAGE_SHIFT) >= MAX_DCACHE_PAGES)
Paul Mundta2527102006-09-27 11:29:55 +0900481 flush_dcache_all();
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900482 else
483 __flush_cache_mm(vma->vm_mm, start, end);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900484
485 if (vma->vm_flags & VM_EXEC) {
486 /*
487 * TODO: Is this required??? Need to look at how I-cache
488 * coherency is assured when new programs are loaded to see if
489 * this matters.
490 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 flush_icache_all();
Richard Curnowb638d0b2006-09-27 14:09:26 +0900492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495/*
496 * flush_icache_user_range
497 * @vma: VMA of the process
498 * @page: page
499 * @addr: U0 address
500 * @len: length of the range (< page size)
501 */
502void flush_icache_user_range(struct vm_area_struct *vma,
503 struct page *page, unsigned long addr, int len)
504{
505 flush_cache_page(vma, addr, page_to_pfn(page));
Paul Mundtfdfc74f2006-09-27 14:05:52 +0900506 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Richard Curnowb638d0b2006-09-27 14:09:26 +0900509/**
510 * __flush_cache_4096
511 *
512 * @addr: address in memory mapped cache array
513 * @phys: P1 address to flush (has to match tags if addr has 'A' bit
514 * set i.e. associative write)
515 * @exec_offset: set to 0x20000000 if flush has to be executed from P2
516 * region else 0x0
517 *
518 * The offset into the cache array implied by 'addr' selects the
519 * 'colour' of the virtual address range that will be flushed. The
520 * operation (purge/write-back) is selected by the lower 2 bits of
521 * 'phys'.
522 */
523static void __flush_cache_4096(unsigned long addr, unsigned long phys,
524 unsigned long exec_offset)
525{
526 int way_count;
527 unsigned long base_addr = addr;
528 struct cache_info *dcache;
529 unsigned long way_incr;
530 unsigned long a, ea, p;
531 unsigned long temp_pc;
532
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900533 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900534 /* Write this way for better assembly. */
535 way_count = dcache->ways;
536 way_incr = dcache->way_incr;
537
538 /*
539 * Apply exec_offset (i.e. branch to P2 if required.).
540 *
541 * FIXME:
542 *
543 * If I write "=r" for the (temp_pc), it puts this in r6 hence
544 * trashing exec_offset before it's been added on - why? Hence
545 * "=&r" as a 'workaround'
546 */
547 asm volatile("mov.l 1f, %0\n\t"
548 "add %1, %0\n\t"
549 "jmp @%0\n\t"
550 "nop\n\t"
551 ".balign 4\n\t"
552 "1: .long 2f\n\t"
553 "2:\n" : "=&r" (temp_pc) : "r" (exec_offset));
554
555 /*
556 * We know there will be >=1 iteration, so write as do-while to avoid
557 * pointless nead-of-loop check for 0 iterations.
558 */
559 do {
560 ea = base_addr + PAGE_SIZE;
561 a = base_addr;
562 p = phys;
563
564 do {
565 *(volatile unsigned long *)a = p;
566 /*
567 * Next line: intentionally not p+32, saves an add, p
568 * will do since only the cache tag bits need to
569 * match.
570 */
571 *(volatile unsigned long *)(a+32) = p;
572 a += 64;
573 p += 64;
574 } while (a < ea);
575
576 base_addr += way_incr;
577 } while (--way_count != 0);
578}
579
580/*
581 * Break the 1, 2 and 4 way variants of this out into separate functions to
582 * avoid nearly all the overhead of having the conditional stuff in the function
583 * bodies (+ the 1 and 2 way cases avoid saving any registers too).
Stuart Menefya5cf9e22009-08-24 17:36:24 +0900584 *
585 * We want to eliminate unnecessary bus transactions, so this code uses
586 * a non-obvious technique.
587 *
588 * Loop over a cache way sized block of, one cache line at a time. For each
589 * line, use movca.a to cause the current cache line contents to be written
590 * back, but without reading anything from main memory. However this has the
591 * side effect that the cache is now caching that memory location. So follow
592 * this with a cache invalidate to mark the cache line invalid. And do all
593 * this with interrupts disabled, to avoid the cache line being accidently
594 * evicted while it is holding garbage.
Richard Curnowb638d0b2006-09-27 14:09:26 +0900595 */
596static void __flush_dcache_segment_1way(unsigned long start,
597 unsigned long extent_per_way)
598{
599 unsigned long orig_sr, sr_with_bl;
600 unsigned long base_addr;
601 unsigned long way_incr, linesz, way_size;
602 struct cache_info *dcache;
603 register unsigned long a0, a0e;
604
605 asm volatile("stc sr, %0" : "=r" (orig_sr));
606 sr_with_bl = orig_sr | (1<<28);
607 base_addr = ((unsigned long)&empty_zero_page[0]);
608
609 /*
610 * The previous code aligned base_addr to 16k, i.e. the way_size of all
611 * existing SH-4 D-caches. Whilst I don't see a need to have this
612 * aligned to any better than the cache line size (which it will be
613 * anyway by construction), let's align it to at least the way_size of
614 * any existing or conceivable SH-4 D-cache. -- RPC
615 */
616 base_addr = ((base_addr >> 16) << 16);
617 base_addr |= start;
618
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900619 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900620 linesz = dcache->linesz;
621 way_incr = dcache->way_incr;
622 way_size = dcache->way_size;
623
624 a0 = base_addr;
625 a0e = base_addr + extent_per_way;
626 do {
627 asm volatile("ldc %0, sr" : : "r" (sr_with_bl));
628 asm volatile("movca.l r0, @%0\n\t"
629 "ocbi @%0" : : "r" (a0));
630 a0 += linesz;
631 asm volatile("movca.l r0, @%0\n\t"
632 "ocbi @%0" : : "r" (a0));
633 a0 += linesz;
634 asm volatile("movca.l r0, @%0\n\t"
635 "ocbi @%0" : : "r" (a0));
636 a0 += linesz;
637 asm volatile("movca.l r0, @%0\n\t"
638 "ocbi @%0" : : "r" (a0));
639 asm volatile("ldc %0, sr" : : "r" (orig_sr));
640 a0 += linesz;
641 } while (a0 < a0e);
642}
643
644static void __flush_dcache_segment_2way(unsigned long start,
645 unsigned long extent_per_way)
646{
647 unsigned long orig_sr, sr_with_bl;
648 unsigned long base_addr;
649 unsigned long way_incr, linesz, way_size;
650 struct cache_info *dcache;
651 register unsigned long a0, a1, a0e;
652
653 asm volatile("stc sr, %0" : "=r" (orig_sr));
654 sr_with_bl = orig_sr | (1<<28);
655 base_addr = ((unsigned long)&empty_zero_page[0]);
656
657 /* See comment under 1-way above */
658 base_addr = ((base_addr >> 16) << 16);
659 base_addr |= start;
660
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900661 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900662 linesz = dcache->linesz;
663 way_incr = dcache->way_incr;
664 way_size = dcache->way_size;
665
666 a0 = base_addr;
667 a1 = a0 + way_incr;
668 a0e = base_addr + extent_per_way;
669 do {
670 asm volatile("ldc %0, sr" : : "r" (sr_with_bl));
671 asm volatile("movca.l r0, @%0\n\t"
672 "movca.l r0, @%1\n\t"
673 "ocbi @%0\n\t"
674 "ocbi @%1" : :
675 "r" (a0), "r" (a1));
676 a0 += linesz;
677 a1 += linesz;
678 asm volatile("movca.l r0, @%0\n\t"
679 "movca.l r0, @%1\n\t"
680 "ocbi @%0\n\t"
681 "ocbi @%1" : :
682 "r" (a0), "r" (a1));
683 a0 += linesz;
684 a1 += linesz;
685 asm volatile("movca.l r0, @%0\n\t"
686 "movca.l r0, @%1\n\t"
687 "ocbi @%0\n\t"
688 "ocbi @%1" : :
689 "r" (a0), "r" (a1));
690 a0 += linesz;
691 a1 += linesz;
692 asm volatile("movca.l r0, @%0\n\t"
693 "movca.l r0, @%1\n\t"
694 "ocbi @%0\n\t"
695 "ocbi @%1" : :
696 "r" (a0), "r" (a1));
697 asm volatile("ldc %0, sr" : : "r" (orig_sr));
698 a0 += linesz;
699 a1 += linesz;
700 } while (a0 < a0e);
701}
702
703static void __flush_dcache_segment_4way(unsigned long start,
704 unsigned long extent_per_way)
705{
706 unsigned long orig_sr, sr_with_bl;
707 unsigned long base_addr;
708 unsigned long way_incr, linesz, way_size;
709 struct cache_info *dcache;
710 register unsigned long a0, a1, a2, a3, a0e;
711
712 asm volatile("stc sr, %0" : "=r" (orig_sr));
713 sr_with_bl = orig_sr | (1<<28);
714 base_addr = ((unsigned long)&empty_zero_page[0]);
715
716 /* See comment under 1-way above */
717 base_addr = ((base_addr >> 16) << 16);
718 base_addr |= start;
719
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900720 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900721 linesz = dcache->linesz;
722 way_incr = dcache->way_incr;
723 way_size = dcache->way_size;
724
725 a0 = base_addr;
726 a1 = a0 + way_incr;
727 a2 = a1 + way_incr;
728 a3 = a2 + way_incr;
729 a0e = base_addr + extent_per_way;
730 do {
731 asm volatile("ldc %0, sr" : : "r" (sr_with_bl));
732 asm volatile("movca.l r0, @%0\n\t"
733 "movca.l r0, @%1\n\t"
734 "movca.l r0, @%2\n\t"
735 "movca.l r0, @%3\n\t"
736 "ocbi @%0\n\t"
737 "ocbi @%1\n\t"
738 "ocbi @%2\n\t"
739 "ocbi @%3\n\t" : :
740 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
741 a0 += linesz;
742 a1 += linesz;
743 a2 += linesz;
744 a3 += linesz;
745 asm volatile("movca.l r0, @%0\n\t"
746 "movca.l r0, @%1\n\t"
747 "movca.l r0, @%2\n\t"
748 "movca.l r0, @%3\n\t"
749 "ocbi @%0\n\t"
750 "ocbi @%1\n\t"
751 "ocbi @%2\n\t"
752 "ocbi @%3\n\t" : :
753 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
754 a0 += linesz;
755 a1 += linesz;
756 a2 += linesz;
757 a3 += linesz;
758 asm volatile("movca.l r0, @%0\n\t"
759 "movca.l r0, @%1\n\t"
760 "movca.l r0, @%2\n\t"
761 "movca.l r0, @%3\n\t"
762 "ocbi @%0\n\t"
763 "ocbi @%1\n\t"
764 "ocbi @%2\n\t"
765 "ocbi @%3\n\t" : :
766 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
767 a0 += linesz;
768 a1 += linesz;
769 a2 += linesz;
770 a3 += linesz;
771 asm volatile("movca.l r0, @%0\n\t"
772 "movca.l r0, @%1\n\t"
773 "movca.l r0, @%2\n\t"
774 "movca.l r0, @%3\n\t"
775 "ocbi @%0\n\t"
776 "ocbi @%1\n\t"
777 "ocbi @%2\n\t"
778 "ocbi @%3\n\t" : :
779 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
780 asm volatile("ldc %0, sr" : : "r" (orig_sr));
781 a0 += linesz;
782 a1 += linesz;
783 a2 += linesz;
784 a3 += linesz;
785 } while (a0 < a0e);
786}