blob: 519e2d16cd0628298a7890060cea611f70a9df9f [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
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +090029static void __flush_cache_one(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/*
33 * This is initialised here to ensure that it is not placed in the BSS. If
34 * that were to happen, note that cache_init gets called before the BSS is
35 * cleared, so this would get nulled out which would be hopeless.
36 */
37static void (*__flush_dcache_segment_fn)(unsigned long, unsigned long) =
38 (void (*)(unsigned long, unsigned long))0xdeadbeef;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * Write back the range of D-cache, and purge the I-cache.
42 *
Chris Smith09b5a102008-07-02 15:17:11 +090043 * Called from kernel/module.c:sys_init_module and routine for a.out format,
44 * signal handler code and kprobes code
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
Matt Fleminga6325242009-10-06 21:22:21 +000046static void __uses_jump_to_uncached sh4_flush_icache_range(void *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Paul Mundtf26b2a52009-08-21 17:23:14 +090048 struct flusher_data *data = args;
Paul Mundtf26b2a52009-08-21 17:23:14 +090049 unsigned long start, end;
Paul Mundt983f4c52009-09-01 21:12:55 +090050 unsigned long flags, v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int i;
52
Paul Mundtf26b2a52009-08-21 17:23:14 +090053 start = data->addr1;
54 end = data->addr2;
55
Paul Mundt682f88a2009-09-09 13:19:46 +090056 /* If there are too many pages then just blow away the caches */
57 if (((end - start) >> PAGE_SHIFT) >= MAX_ICACHE_PAGES) {
58 local_flush_cache_all(NULL);
59 return;
Chris Smith09b5a102008-07-02 15:17:11 +090060 }
Paul Mundt682f88a2009-09-09 13:19:46 +090061
62 /*
63 * Selectively flush d-cache then invalidate the i-cache.
64 * This is inefficient, so only use this for small ranges.
65 */
66 start &= ~(L1_CACHE_BYTES-1);
67 end += L1_CACHE_BYTES-1;
68 end &= ~(L1_CACHE_BYTES-1);
69
70 local_irq_save(flags);
71 jump_to_uncached();
72
73 for (v = start; v < end; v += L1_CACHE_BYTES) {
74 unsigned long icacheaddr;
75
76 __ocbwb(v);
77
78 icacheaddr = CACHE_IC_ADDRESS_ARRAY | (v &
79 cpu_data->icache.entry_mask);
80
81 /* Clear i-cache line valid-bit */
82 for (i = 0; i < cpu_data->icache.ways; i++) {
83 __raw_writel(0, icacheaddr);
84 icacheaddr += cpu_data->icache.way_incr;
85 }
86 }
87
88 back_to_cached();
89 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +090092static inline void flush_cache_one(unsigned long start, unsigned long phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Paul Mundt983f4c52009-09-01 21:12:55 +090094 unsigned long flags, exec_offset = 0;
Paul Mundt33573c02006-09-27 18:37:30 +090095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /*
Richard Curnowb638d0b2006-09-27 14:09:26 +090097 * All types of SH-4 require PC to be in P2 to operate on the I-cache.
98 * Some types of SH-4 require PC to be in P2 to operate on the D-cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900100 if ((boot_cpu_data.flags & CPU_HAS_P2_FLUSH_BUG) ||
Paul Mundt33573c02006-09-27 18:37:30 +0900101 (start < CACHE_OC_ADDRESS_ARRAY))
Paul Mundt510c72ad2006-11-27 12:06:26 +0900102 exec_offset = 0x20000000;
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900103
Paul Mundt983f4c52009-09-01 21:12:55 +0900104 local_irq_save(flags);
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900105 __flush_cache_one(start | SH_CACHE_ASSOC, P1SEGADDR(phys), exec_offset);
Paul Mundt983f4c52009-09-01 21:12:55 +0900106 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109/*
110 * Write back & invalidate the D-cache of the page.
111 * (To avoid "alias" issues)
112 */
Paul Mundte76a0132009-08-27 11:31:16 +0900113static void sh4_flush_dcache_page(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Paul Mundte76a0132009-08-27 11:31:16 +0900115 struct page *page = arg;
Paul Mundtc139a592009-08-20 15:24:41 +0900116#ifndef CONFIG_SMP
Paul Mundt2277ab42009-07-22 19:20:49 +0900117 struct address_space *mapping = page_mapping(page);
118
Paul Mundt2277ab42009-07-22 19:20:49 +0900119 if (mapping && !mapping_mapped(mapping))
120 set_bit(PG_dcache_dirty, &page->flags);
121 else
122#endif
123 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 unsigned long phys = PHYSADDR(page_address(page));
Richard Curnowb638d0b2006-09-27 14:09:26 +0900125 unsigned long addr = CACHE_OC_ADDRESS_ARRAY;
126 int i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /* Loop all the D-cache */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900129 n = boot_cpu_data.dcache.n_aliases;
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900130 for (i = 0; i < n; i++, addr += PAGE_SIZE)
131 flush_cache_one(addr, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
Paul Mundtfdfc74f2006-09-27 14:05:52 +0900133
134 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900137/* TODO: Selective icache invalidation through IC address array.. */
Paul Mundt205a3b42008-09-05 18:00:29 +0900138static void __uses_jump_to_uncached flush_icache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Paul Mundt983f4c52009-09-01 21:12:55 +0900140 unsigned long flags, ccr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Paul Mundt983f4c52009-09-01 21:12:55 +0900142 local_irq_save(flags);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900143 jump_to_uncached();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* Flush I-cache */
146 ccr = ctrl_inl(CCR);
147 ccr |= CCR_CACHE_ICI;
148 ctrl_outl(ccr, CCR);
149
Paul Mundt29847622006-09-27 14:57:44 +0900150 /*
Stuart Menefycbaa1182007-11-30 17:06:36 +0900151 * back_to_cached() will take care of the barrier for us, don't add
Paul Mundt29847622006-09-27 14:57:44 +0900152 * another one!
153 */
Paul Mundt983f4c52009-09-01 21:12:55 +0900154
Stuart Menefycbaa1182007-11-30 17:06:36 +0900155 back_to_cached();
Paul Mundt983f4c52009-09-01 21:12:55 +0900156 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Paul Mundt0b445dc2009-08-15 11:22:50 +0900159static inline void flush_dcache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900161 (*__flush_dcache_segment_fn)(0UL, boot_cpu_data.dcache.way_size);
Paul Mundtfdfc74f2006-09-27 14:05:52 +0900162 wmb();
Paul Mundta2527102006-09-27 11:29:55 +0900163}
164
Paul Mundtf26b2a52009-08-21 17:23:14 +0900165static void sh4_flush_cache_all(void *unused)
Paul Mundta2527102006-09-27 11:29:55 +0900166{
167 flush_dcache_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 flush_icache_all();
169}
170
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900171static void __flush_cache_mm(struct mm_struct *mm, unsigned long start,
172 unsigned long end)
173{
174 unsigned long d = 0, p = start & PAGE_MASK;
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900175 unsigned long alias_mask = boot_cpu_data.dcache.alias_mask;
176 unsigned long n_aliases = boot_cpu_data.dcache.n_aliases;
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900177 unsigned long select_bit;
178 unsigned long all_aliases_mask;
179 unsigned long addr_offset;
180 pgd_t *dir;
181 pmd_t *pmd;
182 pud_t *pud;
183 pte_t *pte;
184 int i;
185
186 dir = pgd_offset(mm, p);
187 pud = pud_offset(dir, p);
188 pmd = pmd_offset(pud, p);
189 end = PAGE_ALIGN(end);
190
191 all_aliases_mask = (1 << n_aliases) - 1;
192
193 do {
194 if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd))) {
195 p &= PMD_MASK;
196 p += PMD_SIZE;
197 pmd++;
198
199 continue;
200 }
201
202 pte = pte_offset_kernel(pmd, p);
203
204 do {
205 unsigned long phys;
206 pte_t entry = *pte;
207
208 if (!(pte_val(entry) & _PAGE_PRESENT)) {
209 pte++;
210 p += PAGE_SIZE;
211 continue;
212 }
213
214 phys = pte_val(entry) & PTE_PHYS_MASK;
215
216 if ((p ^ phys) & alias_mask) {
217 d |= 1 << ((p & alias_mask) >> PAGE_SHIFT);
218 d |= 1 << ((phys & alias_mask) >> PAGE_SHIFT);
219
220 if (d == all_aliases_mask)
221 goto loop_exit;
222 }
223
224 pte++;
225 p += PAGE_SIZE;
226 } while (p < end && ((unsigned long)pte & ~PAGE_MASK));
227 pmd++;
228 } while (p < end);
229
230loop_exit:
231 addr_offset = 0;
232 select_bit = 1;
233
234 for (i = 0; i < n_aliases; i++) {
235 if (d & select_bit) {
236 (*__flush_dcache_segment_fn)(addr_offset, PAGE_SIZE);
237 wmb();
238 }
239
240 select_bit <<= 1;
241 addr_offset += PAGE_SIZE;
242 }
243}
244
245/*
246 * Note : (RPC) since the caches are physically tagged, the only point
247 * of flush_cache_mm for SH-4 is to get rid of aliases from the
248 * D-cache. The assumption elsewhere, e.g. flush_cache_range, is that
249 * lines can stay resident so long as the virtual address they were
250 * accessed with (hence cache set) is in accord with the physical
251 * address (i.e. tag). It's no different here. So I reckon we don't
252 * need to flush the I-cache, since aliases don't matter for that. We
253 * should try that.
254 *
255 * Caller takes mm->mmap_sem.
256 */
Paul Mundtf26b2a52009-08-21 17:23:14 +0900257static void sh4_flush_cache_mm(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Paul Mundtf26b2a52009-08-21 17:23:14 +0900259 struct mm_struct *mm = arg;
260
Paul Mundte7b8b7f2009-08-15 02:21:16 +0900261 if (cpu_context(smp_processor_id(), mm) == NO_CONTEXT)
262 return;
263
Richard Curnowb638d0b2006-09-27 14:09:26 +0900264 /*
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900265 * If cache is only 4k-per-way, there are never any 'aliases'. Since
266 * the cache is physically tagged, the data can just be left in there.
Richard Curnowb638d0b2006-09-27 14:09:26 +0900267 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900268 if (boot_cpu_data.dcache.n_aliases == 0)
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900269 return;
270
271 /*
272 * Don't bother groveling around the dcache for the VMA ranges
273 * if there are too many PTEs to make it worthwhile.
274 */
275 if (mm->nr_ptes >= MAX_DCACHE_PAGES)
276 flush_dcache_all();
277 else {
278 struct vm_area_struct *vma;
279
280 /*
281 * In this case there are reasonably sized ranges to flush,
282 * iterate through the VMA list and take care of any aliases.
283 */
284 for (vma = mm->mmap; vma; vma = vma->vm_next)
285 __flush_cache_mm(mm, vma->vm_start, vma->vm_end);
286 }
287
288 /* Only touch the icache if one of the VMAs has VM_EXEC set. */
289 if (mm->exec_vm)
290 flush_icache_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293/*
294 * Write back and invalidate I/D-caches for the page.
295 *
296 * ADDR: Virtual Address (U0 address)
297 * PFN: Physical page number
298 */
Paul Mundtf26b2a52009-08-21 17:23:14 +0900299static void sh4_flush_cache_page(void *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Paul Mundtf26b2a52009-08-21 17:23:14 +0900301 struct flusher_data *data = args;
302 struct vm_area_struct *vma;
303 unsigned long address, pfn, phys;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900304 unsigned int alias_mask;
305
Paul Mundtf26b2a52009-08-21 17:23:14 +0900306 vma = data->vma;
307 address = data->addr1;
308 pfn = data->addr2;
309 phys = pfn << PAGE_SHIFT;
310
Paul Mundte7b8b7f2009-08-15 02:21:16 +0900311 if (cpu_context(smp_processor_id(), vma->vm_mm) == NO_CONTEXT)
312 return;
313
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900314 alias_mask = boot_cpu_data.dcache.alias_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* We only need to flush D-cache when we have alias */
Richard Curnowb638d0b2006-09-27 14:09:26 +0900317 if ((address^phys) & alias_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Loop 4K of the D-cache */
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900319 flush_cache_one(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900320 CACHE_OC_ADDRESS_ARRAY | (address & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 phys);
322 /* Loop another 4K of the D-cache */
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900323 flush_cache_one(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900324 CACHE_OC_ADDRESS_ARRAY | (phys & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 phys);
326 }
327
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900328 alias_mask = boot_cpu_data.icache.alias_mask;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900329 if (vma->vm_flags & VM_EXEC) {
330 /*
331 * Evict entries from the portion of the cache from which code
332 * may have been executed at this address (virtual). There's
333 * no need to evict from the portion corresponding to the
334 * physical address as for the D-cache, because we know the
335 * kernel has never executed the code through its identity
336 * translation.
337 */
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900338 flush_cache_one(
Richard Curnowb638d0b2006-09-27 14:09:26 +0900339 CACHE_IC_ADDRESS_ARRAY | (address & alias_mask),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 phys);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344/*
345 * Write back and invalidate D-caches.
346 *
347 * START, END: Virtual Address (U0 address)
348 *
349 * NOTE: We need to flush the _physical_ page entry.
350 * Flushing the cache lines for U0 only isn't enough.
351 * We need to flush for P1 too, which may contain aliases.
352 */
Paul Mundtf26b2a52009-08-21 17:23:14 +0900353static void sh4_flush_cache_range(void *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Paul Mundtf26b2a52009-08-21 17:23:14 +0900355 struct flusher_data *data = args;
356 struct vm_area_struct *vma;
357 unsigned long start, end;
358
359 vma = data->vma;
360 start = data->addr1;
361 end = data->addr2;
362
Paul Mundte7b8b7f2009-08-15 02:21:16 +0900363 if (cpu_context(smp_processor_id(), vma->vm_mm) == NO_CONTEXT)
364 return;
365
Richard Curnowb638d0b2006-09-27 14:09:26 +0900366 /*
367 * If cache is only 4k-per-way, there are never any 'aliases'. Since
368 * the cache is physically tagged, the data can just be left in there.
369 */
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900370 if (boot_cpu_data.dcache.n_aliases == 0)
Richard Curnowb638d0b2006-09-27 14:09:26 +0900371 return;
372
Paul Mundta2527102006-09-27 11:29:55 +0900373 /*
374 * Don't bother with the lookup and alias check if we have a
375 * wide range to cover, just blow away the dcache in its
376 * entirety instead. -- PFM.
377 */
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900378 if (((end - start) >> PAGE_SHIFT) >= MAX_DCACHE_PAGES)
Paul Mundta2527102006-09-27 11:29:55 +0900379 flush_dcache_all();
Paul Mundt28ccf7f2006-09-27 18:30:07 +0900380 else
381 __flush_cache_mm(vma->vm_mm, start, end);
Richard Curnowb638d0b2006-09-27 14:09:26 +0900382
383 if (vma->vm_flags & VM_EXEC) {
384 /*
385 * TODO: Is this required??? Need to look at how I-cache
386 * coherency is assured when new programs are loaded to see if
387 * this matters.
388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 flush_icache_all();
Richard Curnowb638d0b2006-09-27 14:09:26 +0900390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Richard Curnowb638d0b2006-09-27 14:09:26 +0900393/**
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900394 * __flush_cache_one
Richard Curnowb638d0b2006-09-27 14:09:26 +0900395 *
396 * @addr: address in memory mapped cache array
397 * @phys: P1 address to flush (has to match tags if addr has 'A' bit
398 * set i.e. associative write)
399 * @exec_offset: set to 0x20000000 if flush has to be executed from P2
400 * region else 0x0
401 *
402 * The offset into the cache array implied by 'addr' selects the
403 * 'colour' of the virtual address range that will be flushed. The
404 * operation (purge/write-back) is selected by the lower 2 bits of
405 * 'phys'.
406 */
Valentin Sitdikova7a7c0e2009-10-16 14:15:38 +0900407static void __flush_cache_one(unsigned long addr, unsigned long phys,
Richard Curnowb638d0b2006-09-27 14:09:26 +0900408 unsigned long exec_offset)
409{
410 int way_count;
411 unsigned long base_addr = addr;
412 struct cache_info *dcache;
413 unsigned long way_incr;
414 unsigned long a, ea, p;
415 unsigned long temp_pc;
416
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900417 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900418 /* Write this way for better assembly. */
419 way_count = dcache->ways;
420 way_incr = dcache->way_incr;
421
422 /*
423 * Apply exec_offset (i.e. branch to P2 if required.).
424 *
425 * FIXME:
426 *
427 * If I write "=r" for the (temp_pc), it puts this in r6 hence
428 * trashing exec_offset before it's been added on - why? Hence
429 * "=&r" as a 'workaround'
430 */
431 asm volatile("mov.l 1f, %0\n\t"
432 "add %1, %0\n\t"
433 "jmp @%0\n\t"
434 "nop\n\t"
435 ".balign 4\n\t"
436 "1: .long 2f\n\t"
437 "2:\n" : "=&r" (temp_pc) : "r" (exec_offset));
438
439 /*
440 * We know there will be >=1 iteration, so write as do-while to avoid
441 * pointless nead-of-loop check for 0 iterations.
442 */
443 do {
444 ea = base_addr + PAGE_SIZE;
445 a = base_addr;
446 p = phys;
447
448 do {
449 *(volatile unsigned long *)a = p;
450 /*
451 * Next line: intentionally not p+32, saves an add, p
452 * will do since only the cache tag bits need to
453 * match.
454 */
455 *(volatile unsigned long *)(a+32) = p;
456 a += 64;
457 p += 64;
458 } while (a < ea);
459
460 base_addr += way_incr;
461 } while (--way_count != 0);
462}
463
464/*
465 * Break the 1, 2 and 4 way variants of this out into separate functions to
466 * avoid nearly all the overhead of having the conditional stuff in the function
467 * bodies (+ the 1 and 2 way cases avoid saving any registers too).
Stuart Menefya5cf9e22009-08-24 17:36:24 +0900468 *
469 * We want to eliminate unnecessary bus transactions, so this code uses
470 * a non-obvious technique.
471 *
472 * Loop over a cache way sized block of, one cache line at a time. For each
473 * line, use movca.a to cause the current cache line contents to be written
474 * back, but without reading anything from main memory. However this has the
475 * side effect that the cache is now caching that memory location. So follow
476 * this with a cache invalidate to mark the cache line invalid. And do all
477 * this with interrupts disabled, to avoid the cache line being accidently
478 * evicted while it is holding garbage.
Stuart Menefyffad9d72009-08-24 18:39:39 +0900479 *
480 * This also breaks in a number of circumstances:
481 * - if there are modifications to the region of memory just above
482 * empty_zero_page (for example because a breakpoint has been placed
483 * there), then these can be lost.
484 *
485 * This is because the the memory address which the cache temporarily
486 * caches in the above description is empty_zero_page. So the
487 * movca.l hits the cache (it is assumed that it misses, or at least
488 * isn't dirty), modifies the line and then invalidates it, losing the
489 * required change.
490 *
491 * - If caches are disabled or configured in write-through mode, then
492 * the movca.l writes garbage directly into memory.
Richard Curnowb638d0b2006-09-27 14:09:26 +0900493 */
Matt Flemingce3f7cb2009-09-01 13:32:48 +0900494static void __flush_dcache_segment_writethrough(unsigned long start,
495 unsigned long extent_per_way)
496{
497 unsigned long addr;
498 int i;
499
500 addr = CACHE_OC_ADDRESS_ARRAY | (start & cpu_data->dcache.entry_mask);
501
502 while (extent_per_way) {
503 for (i = 0; i < cpu_data->dcache.ways; i++)
504 __raw_writel(0, addr + cpu_data->dcache.way_incr * i);
505
506 addr += cpu_data->dcache.linesz;
507 extent_per_way -= cpu_data->dcache.linesz;
508 }
509}
510
Richard Curnowb638d0b2006-09-27 14:09:26 +0900511static void __flush_dcache_segment_1way(unsigned long start,
512 unsigned long extent_per_way)
513{
514 unsigned long orig_sr, sr_with_bl;
515 unsigned long base_addr;
516 unsigned long way_incr, linesz, way_size;
517 struct cache_info *dcache;
518 register unsigned long a0, a0e;
519
520 asm volatile("stc sr, %0" : "=r" (orig_sr));
521 sr_with_bl = orig_sr | (1<<28);
522 base_addr = ((unsigned long)&empty_zero_page[0]);
523
524 /*
525 * The previous code aligned base_addr to 16k, i.e. the way_size of all
526 * existing SH-4 D-caches. Whilst I don't see a need to have this
527 * aligned to any better than the cache line size (which it will be
528 * anyway by construction), let's align it to at least the way_size of
529 * any existing or conceivable SH-4 D-cache. -- RPC
530 */
531 base_addr = ((base_addr >> 16) << 16);
532 base_addr |= start;
533
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900534 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900535 linesz = dcache->linesz;
536 way_incr = dcache->way_incr;
537 way_size = dcache->way_size;
538
539 a0 = base_addr;
540 a0e = base_addr + extent_per_way;
541 do {
542 asm volatile("ldc %0, sr" : : "r" (sr_with_bl));
543 asm volatile("movca.l r0, @%0\n\t"
544 "ocbi @%0" : : "r" (a0));
545 a0 += linesz;
546 asm volatile("movca.l r0, @%0\n\t"
547 "ocbi @%0" : : "r" (a0));
548 a0 += linesz;
549 asm volatile("movca.l r0, @%0\n\t"
550 "ocbi @%0" : : "r" (a0));
551 a0 += linesz;
552 asm volatile("movca.l r0, @%0\n\t"
553 "ocbi @%0" : : "r" (a0));
554 asm volatile("ldc %0, sr" : : "r" (orig_sr));
555 a0 += linesz;
556 } while (a0 < a0e);
557}
558
559static void __flush_dcache_segment_2way(unsigned long start,
560 unsigned long extent_per_way)
561{
562 unsigned long orig_sr, sr_with_bl;
563 unsigned long base_addr;
564 unsigned long way_incr, linesz, way_size;
565 struct cache_info *dcache;
566 register unsigned long a0, a1, a0e;
567
568 asm volatile("stc sr, %0" : "=r" (orig_sr));
569 sr_with_bl = orig_sr | (1<<28);
570 base_addr = ((unsigned long)&empty_zero_page[0]);
571
572 /* See comment under 1-way above */
573 base_addr = ((base_addr >> 16) << 16);
574 base_addr |= start;
575
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900576 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900577 linesz = dcache->linesz;
578 way_incr = dcache->way_incr;
579 way_size = dcache->way_size;
580
581 a0 = base_addr;
582 a1 = a0 + way_incr;
583 a0e = base_addr + extent_per_way;
584 do {
585 asm volatile("ldc %0, sr" : : "r" (sr_with_bl));
586 asm volatile("movca.l r0, @%0\n\t"
587 "movca.l r0, @%1\n\t"
588 "ocbi @%0\n\t"
589 "ocbi @%1" : :
590 "r" (a0), "r" (a1));
591 a0 += linesz;
592 a1 += linesz;
593 asm volatile("movca.l r0, @%0\n\t"
594 "movca.l r0, @%1\n\t"
595 "ocbi @%0\n\t"
596 "ocbi @%1" : :
597 "r" (a0), "r" (a1));
598 a0 += linesz;
599 a1 += linesz;
600 asm volatile("movca.l r0, @%0\n\t"
601 "movca.l r0, @%1\n\t"
602 "ocbi @%0\n\t"
603 "ocbi @%1" : :
604 "r" (a0), "r" (a1));
605 a0 += linesz;
606 a1 += linesz;
607 asm volatile("movca.l r0, @%0\n\t"
608 "movca.l r0, @%1\n\t"
609 "ocbi @%0\n\t"
610 "ocbi @%1" : :
611 "r" (a0), "r" (a1));
612 asm volatile("ldc %0, sr" : : "r" (orig_sr));
613 a0 += linesz;
614 a1 += linesz;
615 } while (a0 < a0e);
616}
617
618static void __flush_dcache_segment_4way(unsigned long start,
619 unsigned long extent_per_way)
620{
621 unsigned long orig_sr, sr_with_bl;
622 unsigned long base_addr;
623 unsigned long way_incr, linesz, way_size;
624 struct cache_info *dcache;
625 register unsigned long a0, a1, a2, a3, a0e;
626
627 asm volatile("stc sr, %0" : "=r" (orig_sr));
628 sr_with_bl = orig_sr | (1<<28);
629 base_addr = ((unsigned long)&empty_zero_page[0]);
630
631 /* See comment under 1-way above */
632 base_addr = ((base_addr >> 16) << 16);
633 base_addr |= start;
634
Paul Mundt7ec9d6f2007-09-21 18:05:20 +0900635 dcache = &boot_cpu_data.dcache;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900636 linesz = dcache->linesz;
637 way_incr = dcache->way_incr;
638 way_size = dcache->way_size;
639
640 a0 = base_addr;
641 a1 = a0 + way_incr;
642 a2 = a1 + way_incr;
643 a3 = a2 + way_incr;
644 a0e = base_addr + extent_per_way;
645 do {
646 asm volatile("ldc %0, sr" : : "r" (sr_with_bl));
647 asm volatile("movca.l r0, @%0\n\t"
648 "movca.l r0, @%1\n\t"
649 "movca.l r0, @%2\n\t"
650 "movca.l r0, @%3\n\t"
651 "ocbi @%0\n\t"
652 "ocbi @%1\n\t"
653 "ocbi @%2\n\t"
654 "ocbi @%3\n\t" : :
655 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
656 a0 += linesz;
657 a1 += linesz;
658 a2 += linesz;
659 a3 += linesz;
660 asm volatile("movca.l r0, @%0\n\t"
661 "movca.l r0, @%1\n\t"
662 "movca.l r0, @%2\n\t"
663 "movca.l r0, @%3\n\t"
664 "ocbi @%0\n\t"
665 "ocbi @%1\n\t"
666 "ocbi @%2\n\t"
667 "ocbi @%3\n\t" : :
668 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
669 a0 += linesz;
670 a1 += linesz;
671 a2 += linesz;
672 a3 += linesz;
673 asm volatile("movca.l r0, @%0\n\t"
674 "movca.l r0, @%1\n\t"
675 "movca.l r0, @%2\n\t"
676 "movca.l r0, @%3\n\t"
677 "ocbi @%0\n\t"
678 "ocbi @%1\n\t"
679 "ocbi @%2\n\t"
680 "ocbi @%3\n\t" : :
681 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
682 a0 += linesz;
683 a1 += linesz;
684 a2 += linesz;
685 a3 += linesz;
686 asm volatile("movca.l r0, @%0\n\t"
687 "movca.l r0, @%1\n\t"
688 "movca.l r0, @%2\n\t"
689 "movca.l r0, @%3\n\t"
690 "ocbi @%0\n\t"
691 "ocbi @%1\n\t"
692 "ocbi @%2\n\t"
693 "ocbi @%3\n\t" : :
694 "r" (a0), "r" (a1), "r" (a2), "r" (a3));
695 asm volatile("ldc %0, sr" : : "r" (orig_sr));
696 a0 += linesz;
697 a1 += linesz;
698 a2 += linesz;
699 a3 += linesz;
700 } while (a0 < a0e);
701}
Paul Mundt37443ef2009-08-15 12:29:49 +0900702
703extern void __weak sh4__flush_region_init(void);
704
705/*
706 * SH-4 has virtually indexed and physically tagged cache.
707 */
708void __init sh4_cache_init(void)
709{
Paul Mundtac6a0cf2009-09-01 13:54:14 +0900710 unsigned int wt_enabled = !!(__raw_readl(CCR) & CCR_CACHE_WT);
711
Paul Mundt37443ef2009-08-15 12:29:49 +0900712 printk("PVR=%08x CVR=%08x PRR=%08x\n",
713 ctrl_inl(CCN_PVR),
714 ctrl_inl(CCN_CVR),
715 ctrl_inl(CCN_PRR));
716
Paul Mundtac6a0cf2009-09-01 13:54:14 +0900717 if (wt_enabled)
718 __flush_dcache_segment_fn = __flush_dcache_segment_writethrough;
719 else {
720 switch (boot_cpu_data.dcache.ways) {
721 case 1:
722 __flush_dcache_segment_fn = __flush_dcache_segment_1way;
723 break;
724 case 2:
725 __flush_dcache_segment_fn = __flush_dcache_segment_2way;
726 break;
727 case 4:
728 __flush_dcache_segment_fn = __flush_dcache_segment_4way;
729 break;
730 default:
731 panic("unknown number of cache ways\n");
732 break;
733 }
Paul Mundt37443ef2009-08-15 12:29:49 +0900734 }
735
Paul Mundtf26b2a52009-08-21 17:23:14 +0900736 local_flush_icache_range = sh4_flush_icache_range;
737 local_flush_dcache_page = sh4_flush_dcache_page;
738 local_flush_cache_all = sh4_flush_cache_all;
739 local_flush_cache_mm = sh4_flush_cache_mm;
740 local_flush_cache_dup_mm = sh4_flush_cache_mm;
741 local_flush_cache_page = sh4_flush_cache_page;
742 local_flush_cache_range = sh4_flush_cache_range;
Paul Mundt37443ef2009-08-15 12:29:49 +0900743
744 sh4__flush_region_init();
745}