blob: 92b7d947db9484d5acd6e2f8e964fe475fab41c3 [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>
Paul Mundt2277ab42009-07-22 19:20:49 +090017#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/mmu_context.h>
19#include <asm/cacheflush.h>
20
Paul Mundt28ccf7f2006-09-27 18:30:07 +090021/*
22 * The maximum number of pages we support up to when doing ranged dcache
23 * flushing. Anything exceeding this will simply flush the dcache in its
24 * entirety.
25 */
26#define MAX_DCACHE_PAGES 64 /* XXX: Tune for ways */
Chris Smith09b5a102008-07-02 15:17:11 +090027#define MAX_ICACHE_PAGES 32
Paul Mundt28ccf7f2006-09-27 18:30:07 +090028
Richard Curnowb638d0b2006-09-27 14:09:26 +090029static void __flush_cache_4096(unsigned long addr, unsigned long phys,
Paul Mundta2527102006-09-27 11:29:55 +090030 unsigned long exec_offset);
Richard Curnowb638d0b2006-09-27 14:09:26 +090031
32/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * Write back the range of D-cache, and purge the I-cache.
34 *
Chris Smith09b5a102008-07-02 15:17:11 +090035 * Called from kernel/module.c:sys_init_module and routine for a.out format,
36 * signal handler code and kprobes code
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
Paul Mundtf26b2a52009-08-21 17:23:14 +090038static void sh4_flush_icache_range(void *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Paul Mundtf26b2a52009-08-21 17:23:14 +090040 struct flusher_data *data = args;
Paul Mundtf26b2a52009-08-21 17:23:14 +090041 unsigned long start, end;
Paul Mundt983f4c52009-09-01 21:12:55 +090042 unsigned long flags, v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 int i;
44
Paul Mundtf26b2a52009-08-21 17:23:14 +090045 start = data->addr1;
46 end = data->addr2;
47
Paul Mundt682f88a2009-09-09 13:19:46 +090048 /* If there are too many pages then just blow away the caches */
49 if (((end - start) >> PAGE_SHIFT) >= MAX_ICACHE_PAGES) {
50 local_flush_cache_all(NULL);
51 return;
Chris Smith09b5a102008-07-02 15:17:11 +090052 }
Paul Mundt682f88a2009-09-09 13:19:46 +090053
54 /*
55 * Selectively flush d-cache then invalidate the i-cache.
56 * This is inefficient, so only use this for small ranges.
57 */
58 start &= ~(L1_CACHE_BYTES-1);
59 end += L1_CACHE_BYTES-1;
60 end &= ~(L1_CACHE_BYTES-1);
61
62 local_irq_save(flags);
63 jump_to_uncached();
64
65 for (v = start; v < end; v += L1_CACHE_BYTES) {
66 unsigned long icacheaddr;
67
68 __ocbwb(v);
69
70 icacheaddr = CACHE_IC_ADDRESS_ARRAY | (v &
71 cpu_data->icache.entry_mask);
72
73 /* Clear i-cache line valid-bit */
74 for (i = 0; i < cpu_data->icache.ways; i++) {
75 __raw_writel(0, icacheaddr);
76 icacheaddr += cpu_data->icache.way_incr;
77 }
78 }
79
80 back_to_cached();
81 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84static inline void flush_cache_4096(unsigned long start,
85 unsigned long phys)
86{
Paul Mundt983f4c52009-09-01 21:12:55 +090087 unsigned long flags, exec_offset = 0;
Paul Mundt33573c02006-09-27 18:37:30 +090088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /*
Richard Curnowb638d0b2006-09-27 14:09:26 +090090 * All types of SH-4 require PC to be in P2 to operate on the I-cache.
91 * Some types of SH-4 require PC to be in P2 to operate on the D-cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +090093 if ((boot_cpu_data.flags & CPU_HAS_P2_FLUSH_BUG) ||
Paul Mundt33573c02006-09-27 18:37:30 +090094 (start < CACHE_OC_ADDRESS_ARRAY))
Paul Mundt510c72ad2006-11-27 12:06:26 +090095 exec_offset = 0x20000000;
Paul Mundt28ccf7f2006-09-27 18:30:07 +090096
Paul Mundt983f4c52009-09-01 21:12:55 +090097 local_irq_save(flags);
Paul Mundt33573c02006-09-27 18:37:30 +090098 __flush_cache_4096(start | SH_CACHE_ASSOC,
99 P1SEGADDR(phys), exec_offset);
Paul Mundt983f4c52009-09-01 21:12:55 +0900100 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103/*
104 * Write back & invalidate the D-cache of the page.
105 * (To avoid "alias" issues)
106 */
Paul Mundte76a0132009-08-27 11:31:16 +0900107static void sh4_flush_dcache_page(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Paul Mundte76a0132009-08-27 11:31:16 +0900109 struct page *page = arg;
Paul Mundtc139a592009-08-20 15:24:41 +0900110#ifndef CONFIG_SMP
Paul Mundt2277ab42009-07-22 19:20:49 +0900111 struct address_space *mapping = page_mapping(page);
112
Paul Mundt2277ab42009-07-22 19:20:49 +0900113 if (mapping && !mapping_mapped(mapping))
114 set_bit(PG_dcache_dirty, &page->flags);
115 else
116#endif
117 {
Paul Mundt31c9efd2009-09-09 14:10:28 +0900118 unsigned long phys = page_to_phys(page);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900119 unsigned long addr = CACHE_OC_ADDRESS_ARRAY;
120 int i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* Loop all the D-cache */
Paul Mundt31c9efd2009-09-09 14:10:28 +0900123 n = boot_cpu_data.dcache.way_incr >> 12;
Paul Mundt510c72ad2006-11-27 12:06:26 +0900124 for (i = 0; i < n; i++, addr += 4096)
Richard Curnowb638d0b2006-09-27 14:09:26 +0900125 flush_cache_4096(addr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Paul Mundtfdfc74f2006-09-27 14:05:52 +0900127
128 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900131/* TODO: Selective icache invalidation through IC address array.. */
Paul Mundt205a3b42008-09-05 18:00:29 +0900132static void __uses_jump_to_uncached flush_icache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Paul Mundt983f4c52009-09-01 21:12:55 +0900134 unsigned long flags, ccr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Paul Mundt983f4c52009-09-01 21:12:55 +0900136 local_irq_save(flags);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900137 jump_to_uncached();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* Flush I-cache */
140 ccr = ctrl_inl(CCR);
141 ccr |= CCR_CACHE_ICI;
142 ctrl_outl(ccr, CCR);
143
Paul Mundt29847622006-09-27 14:57:44 +0900144 /*
Stuart Menefycbaa1182007-11-30 17:06:36 +0900145 * back_to_cached() will take care of the barrier for us, don't add
Paul Mundt29847622006-09-27 14:57:44 +0900146 * another one!
147 */
Paul Mundt983f4c52009-09-01 21:12:55 +0900148
Stuart Menefycbaa1182007-11-30 17:06:36 +0900149 back_to_cached();
Paul Mundt983f4c52009-09-01 21:12:55 +0900150 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Paul Mundtbd6df572009-09-09 14:22:15 +0900153static void flush_dcache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Paul Mundtbd6df572009-09-09 14:22:15 +0900155 unsigned long addr, end_addr, entry_offset;
156
157 end_addr = CACHE_OC_ADDRESS_ARRAY +
158 (current_cpu_data.dcache.sets <<
159 current_cpu_data.dcache.entry_shift) *
160 current_cpu_data.dcache.ways;
161
162 entry_offset = 1 << current_cpu_data.dcache.entry_shift;
163
164 for (addr = CACHE_OC_ADDRESS_ARRAY; addr < end_addr; ) {
165 __raw_writel(0, addr); addr += entry_offset;
166 __raw_writel(0, addr); addr += entry_offset;
167 __raw_writel(0, addr); addr += entry_offset;
168 __raw_writel(0, addr); addr += entry_offset;
169 __raw_writel(0, addr); addr += entry_offset;
170 __raw_writel(0, addr); addr += entry_offset;
171 __raw_writel(0, addr); addr += entry_offset;
172 __raw_writel(0, addr); addr += entry_offset;
173 }
Paul Mundta2527102006-09-27 11:29:55 +0900174}
175
Paul Mundtf26b2a52009-08-21 17:23:14 +0900176static void sh4_flush_cache_all(void *unused)
Paul Mundta2527102006-09-27 11:29:55 +0900177{
178 flush_dcache_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 flush_icache_all();
180}
181
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900182/*
183 * Note : (RPC) since the caches are physically tagged, the only point
184 * of flush_cache_mm for SH-4 is to get rid of aliases from the
185 * D-cache. The assumption elsewhere, e.g. flush_cache_range, is that
186 * lines can stay resident so long as the virtual address they were
187 * accessed with (hence cache set) is in accord with the physical
Paul Mundt654d3642009-09-09 14:04:06 +0900188 * address (i.e. tag). It's no different here.
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900189 *
190 * Caller takes mm->mmap_sem.
191 */
Paul Mundtf26b2a52009-08-21 17:23:14 +0900192static void sh4_flush_cache_mm(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Paul Mundtf26b2a52009-08-21 17:23:14 +0900194 struct mm_struct *mm = arg;
195
Paul Mundte7b8b7f2009-08-15 02:21:16 +0900196 if (cpu_context(smp_processor_id(), mm) == NO_CONTEXT)
197 return;
198
Paul Mundt654d3642009-09-09 14:04:06 +0900199 flush_dcache_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202/*
203 * Write back and invalidate I/D-caches for the page.
204 *
205 * ADDR: Virtual Address (U0 address)
206 * PFN: Physical page number
207 */
Paul Mundtf26b2a52009-08-21 17:23:14 +0900208static void sh4_flush_cache_page(void *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Paul Mundtf26b2a52009-08-21 17:23:14 +0900210 struct flusher_data *data = args;
211 struct vm_area_struct *vma;
212 unsigned long address, pfn, phys;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900213 unsigned int alias_mask;
214
Paul Mundtf26b2a52009-08-21 17:23:14 +0900215 vma = data->vma;
216 address = data->addr1;
217 pfn = data->addr2;
218 phys = pfn << PAGE_SHIFT;
219
Paul Mundte7b8b7f2009-08-15 02:21:16 +0900220 if (cpu_context(smp_processor_id(), vma->vm_mm) == NO_CONTEXT)
221 return;
222
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900223 alias_mask = boot_cpu_data.dcache.alias_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* We only need to flush D-cache when we have alias */
Richard Curnowb638d0b2006-09-27 14:09:26 +0900226 if ((address^phys) & alias_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* Loop 4K of the D-cache */
228 flush_cache_4096(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900229 CACHE_OC_ADDRESS_ARRAY | (address & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 phys);
231 /* Loop another 4K of the D-cache */
232 flush_cache_4096(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900233 CACHE_OC_ADDRESS_ARRAY | (phys & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 phys);
235 }
236
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900237 alias_mask = boot_cpu_data.icache.alias_mask;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900238 if (vma->vm_flags & VM_EXEC) {
239 /*
240 * Evict entries from the portion of the cache from which code
241 * may have been executed at this address (virtual). There's
242 * no need to evict from the portion corresponding to the
243 * physical address as for the D-cache, because we know the
244 * kernel has never executed the code through its identity
245 * translation.
246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 flush_cache_4096(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900248 CACHE_IC_ADDRESS_ARRAY | (address & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 phys);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/*
254 * Write back and invalidate D-caches.
255 *
256 * START, END: Virtual Address (U0 address)
257 *
258 * NOTE: We need to flush the _physical_ page entry.
259 * Flushing the cache lines for U0 only isn't enough.
260 * We need to flush for P1 too, which may contain aliases.
261 */
Paul Mundtf26b2a52009-08-21 17:23:14 +0900262static void sh4_flush_cache_range(void *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Paul Mundtf26b2a52009-08-21 17:23:14 +0900264 struct flusher_data *data = args;
265 struct vm_area_struct *vma;
266 unsigned long start, end;
267
268 vma = data->vma;
269 start = data->addr1;
270 end = data->addr2;
271
Paul Mundte7b8b7f2009-08-15 02:21:16 +0900272 if (cpu_context(smp_processor_id(), vma->vm_mm) == NO_CONTEXT)
273 return;
274
Richard Curnowb638d0b2006-09-27 14:09:26 +0900275 /*
276 * If cache is only 4k-per-way, there are never any 'aliases'. Since
277 * the cache is physically tagged, the data can just be left in there.
278 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900279 if (boot_cpu_data.dcache.n_aliases == 0)
Richard Curnowb638d0b2006-09-27 14:09:26 +0900280 return;
281
Paul Mundt654d3642009-09-09 14:04:06 +0900282 flush_dcache_all();
Richard Curnowb638d0b2006-09-27 14:09:26 +0900283
Paul Mundt654d3642009-09-09 14:04:06 +0900284 if (vma->vm_flags & VM_EXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 flush_icache_all();
286}
287
Richard Curnowb638d0b2006-09-27 14:09:26 +0900288/**
289 * __flush_cache_4096
290 *
291 * @addr: address in memory mapped cache array
292 * @phys: P1 address to flush (has to match tags if addr has 'A' bit
293 * set i.e. associative write)
294 * @exec_offset: set to 0x20000000 if flush has to be executed from P2
295 * region else 0x0
296 *
297 * The offset into the cache array implied by 'addr' selects the
298 * 'colour' of the virtual address range that will be flushed. The
299 * operation (purge/write-back) is selected by the lower 2 bits of
300 * 'phys'.
301 */
302static void __flush_cache_4096(unsigned long addr, unsigned long phys,
303 unsigned long exec_offset)
304{
305 int way_count;
306 unsigned long base_addr = addr;
307 struct cache_info *dcache;
308 unsigned long way_incr;
309 unsigned long a, ea, p;
310 unsigned long temp_pc;
311
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900312 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900313 /* Write this way for better assembly. */
314 way_count = dcache->ways;
315 way_incr = dcache->way_incr;
316
317 /*
318 * Apply exec_offset (i.e. branch to P2 if required.).
319 *
320 * FIXME:
321 *
322 * If I write "=r" for the (temp_pc), it puts this in r6 hence
323 * trashing exec_offset before it's been added on - why? Hence
324 * "=&r" as a 'workaround'
325 */
326 asm volatile("mov.l 1f, %0\n\t"
327 "add %1, %0\n\t"
328 "jmp @%0\n\t"
329 "nop\n\t"
330 ".balign 4\n\t"
331 "1: .long 2f\n\t"
332 "2:\n" : "=&r" (temp_pc) : "r" (exec_offset));
333
334 /*
335 * We know there will be >=1 iteration, so write as do-while to avoid
336 * pointless nead-of-loop check for 0 iterations.
337 */
338 do {
339 ea = base_addr + PAGE_SIZE;
340 a = base_addr;
341 p = phys;
342
343 do {
344 *(volatile unsigned long *)a = p;
345 /*
346 * Next line: intentionally not p+32, saves an add, p
347 * will do since only the cache tag bits need to
348 * match.
349 */
350 *(volatile unsigned long *)(a+32) = p;
351 a += 64;
352 p += 64;
353 } while (a < ea);
354
355 base_addr += way_incr;
356 } while (--way_count != 0);
357}
358
Paul Mundt37443ef2009-08-15 12:29:49 +0900359extern void __weak sh4__flush_region_init(void);
360
361/*
362 * SH-4 has virtually indexed and physically tagged cache.
363 */
364void __init sh4_cache_init(void)
365{
366 printk("PVR=%08x CVR=%08x PRR=%08x\n",
367 ctrl_inl(CCN_PVR),
368 ctrl_inl(CCN_CVR),
369 ctrl_inl(CCN_PRR));
370
Paul Mundtf26b2a52009-08-21 17:23:14 +0900371 local_flush_icache_range = sh4_flush_icache_range;
372 local_flush_dcache_page = sh4_flush_dcache_page;
373 local_flush_cache_all = sh4_flush_cache_all;
374 local_flush_cache_mm = sh4_flush_cache_mm;
375 local_flush_cache_dup_mm = sh4_flush_cache_mm;
376 local_flush_cache_page = sh4_flush_cache_page;
377 local_flush_cache_range = sh4_flush_cache_range;
Paul Mundt37443ef2009-08-15 12:29:49 +0900378
379 sh4__flush_region_init();
380}