Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/xfs-vipt
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / include / asm / cacheflush.h
blob5fe4a2ad7fa34deb2e7be770fdfa782359f6d245
1 /*
2 * arch/arm/include/asm/cacheflush.h
4 * Copyright (C) 1999-2002 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #ifndef _ASMARM_CACHEFLUSH_H
11 #define _ASMARM_CACHEFLUSH_H
13 #include <linux/mm.h>
15 #include <asm/glue.h>
16 #include <asm/shmparam.h>
17 #include <asm/cachetype.h>
19 #define CACHE_COLOUR(vaddr) ((vaddr & (SHMLBA - 1)) >> PAGE_SHIFT)
22 * Cache Model
23 * ===========
25 #undef _CACHE
26 #undef MULTI_CACHE
28 #if defined(CONFIG_CPU_CACHE_V3)
29 # ifdef _CACHE
30 # define MULTI_CACHE 1
31 # else
32 # define _CACHE v3
33 # endif
34 #endif
36 #if defined(CONFIG_CPU_CACHE_V4)
37 # ifdef _CACHE
38 # define MULTI_CACHE 1
39 # else
40 # define _CACHE v4
41 # endif
42 #endif
44 #if defined(CONFIG_CPU_ARM920T) || defined(CONFIG_CPU_ARM922T) || \
45 defined(CONFIG_CPU_ARM925T) || defined(CONFIG_CPU_ARM1020) || \
46 defined(CONFIG_CPU_ARM1026)
47 # define MULTI_CACHE 1
48 #endif
50 #if defined(CONFIG_CPU_FA526)
51 # ifdef _CACHE
52 # define MULTI_CACHE 1
53 # else
54 # define _CACHE fa
55 # endif
56 #endif
58 #if defined(CONFIG_CPU_ARM926T)
59 # ifdef _CACHE
60 # define MULTI_CACHE 1
61 # else
62 # define _CACHE arm926
63 # endif
64 #endif
66 #if defined(CONFIG_CPU_ARM940T)
67 # ifdef _CACHE
68 # define MULTI_CACHE 1
69 # else
70 # define _CACHE arm940
71 # endif
72 #endif
74 #if defined(CONFIG_CPU_ARM946E)
75 # ifdef _CACHE
76 # define MULTI_CACHE 1
77 # else
78 # define _CACHE arm946
79 # endif
80 #endif
82 #if defined(CONFIG_CPU_CACHE_V4WB)
83 # ifdef _CACHE
84 # define MULTI_CACHE 1
85 # else
86 # define _CACHE v4wb
87 # endif
88 #endif
90 #if defined(CONFIG_CPU_XSCALE)
91 # ifdef _CACHE
92 # define MULTI_CACHE 1
93 # else
94 # define _CACHE xscale
95 # endif
96 #endif
98 #if defined(CONFIG_CPU_XSC3)
99 # ifdef _CACHE
100 # define MULTI_CACHE 1
101 # else
102 # define _CACHE xsc3
103 # endif
104 #endif
106 #if defined(CONFIG_CPU_MOHAWK)
107 # ifdef _CACHE
108 # define MULTI_CACHE 1
109 # else
110 # define _CACHE mohawk
111 # endif
112 #endif
114 #if defined(CONFIG_CPU_FEROCEON)
115 # define MULTI_CACHE 1
116 #endif
118 #if defined(CONFIG_CPU_V6)
119 //# ifdef _CACHE
120 # define MULTI_CACHE 1
121 //# else
122 //# define _CACHE v6
123 //# endif
124 #endif
126 #if defined(CONFIG_CPU_V7)
127 //# ifdef _CACHE
128 # define MULTI_CACHE 1
129 //# else
130 //# define _CACHE v7
131 //# endif
132 #endif
134 #if !defined(_CACHE) && !defined(MULTI_CACHE)
135 #error Unknown cache maintainence model
136 #endif
139 * This flag is used to indicate that the page pointed to by a pte
140 * is dirty and requires cleaning before returning it to the user.
142 #define PG_dcache_dirty PG_arch_1
145 * MM Cache Management
146 * ===================
148 * The arch/arm/mm/cache-*.S and arch/arm/mm/proc-*.S files
149 * implement these methods.
151 * Start addresses are inclusive and end addresses are exclusive;
152 * start addresses should be rounded down, end addresses up.
154 * See Documentation/cachetlb.txt for more information.
155 * Please note that the implementation of these, and the required
156 * effects are cache-type (VIVT/VIPT/PIPT) specific.
158 * flush_kern_all()
160 * Unconditionally clean and invalidate the entire cache.
162 * flush_user_all()
164 * Clean and invalidate all user space cache entries
165 * before a change of page tables.
167 * flush_user_range(start, end, flags)
169 * Clean and invalidate a range of cache entries in the
170 * specified address space before a change of page tables.
171 * - start - user start address (inclusive, page aligned)
172 * - end - user end address (exclusive, page aligned)
173 * - flags - vma->vm_flags field
175 * coherent_kern_range(start, end)
177 * Ensure coherency between the Icache and the Dcache in the
178 * region described by start, end. If you have non-snooping
179 * Harvard caches, you need to implement this function.
180 * - start - virtual start address
181 * - end - virtual end address
183 * coherent_user_range(start, end)
185 * Ensure coherency between the Icache and the Dcache in the
186 * region described by start, end. If you have non-snooping
187 * Harvard caches, you need to implement this function.
188 * - start - virtual start address
189 * - end - virtual end address
191 * flush_kern_dcache_area(kaddr, size)
193 * Ensure that the data held in page is written back.
194 * - kaddr - page address
195 * - size - region size
197 * DMA Cache Coherency
198 * ===================
200 * dma_inv_range(start, end)
202 * Invalidate (discard) the specified virtual address range.
203 * May not write back any entries. If 'start' or 'end'
204 * are not cache line aligned, those lines must be written
205 * back.
206 * - start - virtual start address
207 * - end - virtual end address
209 * dma_clean_range(start, end)
211 * Clean (write back) the specified virtual address range.
212 * - start - virtual start address
213 * - end - virtual end address
215 * dma_flush_range(start, end)
217 * Clean and invalidate the specified virtual address range.
218 * - start - virtual start address
219 * - end - virtual end address
222 struct cpu_cache_fns {
223 void (*flush_kern_all)(void);
224 void (*flush_user_all)(void);
225 void (*flush_user_range)(unsigned long, unsigned long, unsigned int);
227 void (*coherent_kern_range)(unsigned long, unsigned long);
228 void (*coherent_user_range)(unsigned long, unsigned long);
229 void (*flush_kern_dcache_area)(void *, size_t);
231 void (*dma_inv_range)(const void *, const void *);
232 void (*dma_clean_range)(const void *, const void *);
233 void (*dma_flush_range)(const void *, const void *);
236 struct outer_cache_fns {
237 void (*inv_range)(unsigned long, unsigned long);
238 void (*clean_range)(unsigned long, unsigned long);
239 void (*flush_range)(unsigned long, unsigned long);
243 * Select the calling method
245 #ifdef MULTI_CACHE
247 extern struct cpu_cache_fns cpu_cache;
249 #define __cpuc_flush_kern_all cpu_cache.flush_kern_all
250 #define __cpuc_flush_user_all cpu_cache.flush_user_all
251 #define __cpuc_flush_user_range cpu_cache.flush_user_range
252 #define __cpuc_coherent_kern_range cpu_cache.coherent_kern_range
253 #define __cpuc_coherent_user_range cpu_cache.coherent_user_range
254 #define __cpuc_flush_dcache_area cpu_cache.flush_kern_dcache_area
257 * These are private to the dma-mapping API. Do not use directly.
258 * Their sole purpose is to ensure that data held in the cache
259 * is visible to DMA, or data written by DMA to system memory is
260 * visible to the CPU.
262 #define dmac_inv_range cpu_cache.dma_inv_range
263 #define dmac_clean_range cpu_cache.dma_clean_range
264 #define dmac_flush_range cpu_cache.dma_flush_range
266 #else
268 #define __cpuc_flush_kern_all __glue(_CACHE,_flush_kern_cache_all)
269 #define __cpuc_flush_user_all __glue(_CACHE,_flush_user_cache_all)
270 #define __cpuc_flush_user_range __glue(_CACHE,_flush_user_cache_range)
271 #define __cpuc_coherent_kern_range __glue(_CACHE,_coherent_kern_range)
272 #define __cpuc_coherent_user_range __glue(_CACHE,_coherent_user_range)
273 #define __cpuc_flush_dcache_area __glue(_CACHE,_flush_kern_dcache_area)
275 extern void __cpuc_flush_kern_all(void);
276 extern void __cpuc_flush_user_all(void);
277 extern void __cpuc_flush_user_range(unsigned long, unsigned long, unsigned int);
278 extern void __cpuc_coherent_kern_range(unsigned long, unsigned long);
279 extern void __cpuc_coherent_user_range(unsigned long, unsigned long);
280 extern void __cpuc_flush_dcache_area(void *, size_t);
283 * These are private to the dma-mapping API. Do not use directly.
284 * Their sole purpose is to ensure that data held in the cache
285 * is visible to DMA, or data written by DMA to system memory is
286 * visible to the CPU.
288 #define dmac_inv_range __glue(_CACHE,_dma_inv_range)
289 #define dmac_clean_range __glue(_CACHE,_dma_clean_range)
290 #define dmac_flush_range __glue(_CACHE,_dma_flush_range)
292 extern void dmac_inv_range(const void *, const void *);
293 extern void dmac_clean_range(const void *, const void *);
294 extern void dmac_flush_range(const void *, const void *);
296 #endif
298 #ifdef CONFIG_OUTER_CACHE
300 extern struct outer_cache_fns outer_cache;
302 static inline void outer_inv_range(unsigned long start, unsigned long end)
304 if (outer_cache.inv_range)
305 outer_cache.inv_range(start, end);
307 static inline void outer_clean_range(unsigned long start, unsigned long end)
309 if (outer_cache.clean_range)
310 outer_cache.clean_range(start, end);
312 static inline void outer_flush_range(unsigned long start, unsigned long end)
314 if (outer_cache.flush_range)
315 outer_cache.flush_range(start, end);
318 #else
320 static inline void outer_inv_range(unsigned long start, unsigned long end)
322 static inline void outer_clean_range(unsigned long start, unsigned long end)
324 static inline void outer_flush_range(unsigned long start, unsigned long end)
327 #endif
330 * Copy user data from/to a page which is mapped into a different
331 * processes address space. Really, we want to allow our "user
332 * space" model to handle this.
334 #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
335 do { \
336 memcpy(dst, src, len); \
337 flush_ptrace_access(vma, page, vaddr, dst, len, 1);\
338 } while (0)
340 #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
341 do { \
342 memcpy(dst, src, len); \
343 } while (0)
346 * Convert calls to our calling convention.
348 #define flush_cache_all() __cpuc_flush_kern_all()
350 static inline void vivt_flush_cache_mm(struct mm_struct *mm)
352 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm)))
353 __cpuc_flush_user_all();
356 static inline void
357 vivt_flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
359 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm)))
360 __cpuc_flush_user_range(start & PAGE_MASK, PAGE_ALIGN(end),
361 vma->vm_flags);
364 static inline void
365 vivt_flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn)
367 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
368 unsigned long addr = user_addr & PAGE_MASK;
369 __cpuc_flush_user_range(addr, addr + PAGE_SIZE, vma->vm_flags);
373 static inline void
374 vivt_flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
375 unsigned long uaddr, void *kaddr,
376 unsigned long len, int write)
378 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
379 unsigned long addr = (unsigned long)kaddr;
380 __cpuc_coherent_kern_range(addr, addr + len);
384 #ifndef CONFIG_CPU_CACHE_VIPT
385 #define flush_cache_mm(mm) \
386 vivt_flush_cache_mm(mm)
387 #define flush_cache_range(vma,start,end) \
388 vivt_flush_cache_range(vma,start,end)
389 #define flush_cache_page(vma,addr,pfn) \
390 vivt_flush_cache_page(vma,addr,pfn)
391 #define flush_ptrace_access(vma,page,ua,ka,len,write) \
392 vivt_flush_ptrace_access(vma,page,ua,ka,len,write)
393 #else
394 extern void flush_cache_mm(struct mm_struct *mm);
395 extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
396 extern void flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn);
397 extern void flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
398 unsigned long uaddr, void *kaddr,
399 unsigned long len, int write);
400 #endif
402 #define flush_cache_dup_mm(mm) flush_cache_mm(mm)
405 * flush_cache_user_range is used when we want to ensure that the
406 * Harvard caches are synchronised for the user space address range.
407 * This is used for the ARM private sys_cacheflush system call.
409 #define flush_cache_user_range(vma,start,end) \
410 __cpuc_coherent_user_range((start) & PAGE_MASK, PAGE_ALIGN(end))
413 * Perform necessary cache operations to ensure that data previously
414 * stored within this range of addresses can be executed by the CPU.
416 #define flush_icache_range(s,e) __cpuc_coherent_kern_range(s,e)
419 * Perform necessary cache operations to ensure that the TLB will
420 * see data written in the specified area.
422 #define clean_dcache_area(start,size) cpu_dcache_clean_area(start, size)
425 * flush_dcache_page is used when the kernel has written to the page
426 * cache page at virtual address page->virtual.
428 * If this page isn't mapped (ie, page_mapping == NULL), or it might
429 * have userspace mappings, then we _must_ always clean + invalidate
430 * the dcache entries associated with the kernel mapping.
432 * Otherwise we can defer the operation, and clean the cache when we are
433 * about to change to user space. This is the same method as used on SPARC64.
434 * See update_mmu_cache for the user space part.
436 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
437 extern void flush_dcache_page(struct page *);
439 static inline void __flush_icache_all(void)
441 #ifdef CONFIG_ARM_ERRATA_411920
442 extern void v6_icache_inval_all(void);
443 v6_icache_inval_all();
444 #else
445 asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n"
447 : "r" (0));
448 #endif
450 static inline void flush_kernel_vmap_range(void *addr, int size)
452 if ((cache_is_vivt() || cache_is_vipt_aliasing()))
453 __cpuc_flush_dcache_area(addr, (size_t)size);
455 static inline void invalidate_kernel_vmap_range(void *addr, int size)
457 if ((cache_is_vivt() || cache_is_vipt_aliasing()))
458 __cpuc_flush_dcache_area(addr, (size_t)size);
461 #define ARCH_HAS_FLUSH_ANON_PAGE
462 static inline void flush_anon_page(struct vm_area_struct *vma,
463 struct page *page, unsigned long vmaddr)
465 extern void __flush_anon_page(struct vm_area_struct *vma,
466 struct page *, unsigned long);
467 if (PageAnon(page))
468 __flush_anon_page(vma, page, vmaddr);
471 #define ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
472 static inline void flush_kernel_dcache_page(struct page *page)
474 /* highmem pages are always flushed upon kunmap already */
475 if ((cache_is_vivt() || cache_is_vipt_aliasing()) && !PageHighMem(page))
476 __cpuc_flush_dcache_area(page_address(page), PAGE_SIZE);
479 #define flush_dcache_mmap_lock(mapping) \
480 spin_lock_irq(&(mapping)->tree_lock)
481 #define flush_dcache_mmap_unlock(mapping) \
482 spin_unlock_irq(&(mapping)->tree_lock)
484 #define flush_icache_user_range(vma,page,addr,len) \
485 flush_dcache_page(page)
488 * We don't appear to need to do anything here. In fact, if we did, we'd
489 * duplicate cache flushing elsewhere performed by flush_dcache_page().
491 #define flush_icache_page(vma,page) do { } while (0)
494 * flush_cache_vmap() is used when creating mappings (eg, via vmap,
495 * vmalloc, ioremap etc) in kernel space for pages. On non-VIPT
496 * caches, since the direct-mappings of these pages may contain cached
497 * data, we need to do a full cache flush to ensure that writebacks
498 * don't corrupt data placed into these pages via the new mappings.
500 static inline void flush_cache_vmap(unsigned long start, unsigned long end)
502 if (!cache_is_vipt_nonaliasing())
503 flush_cache_all();
504 else
506 * set_pte_at() called from vmap_pte_range() does not
507 * have a DSB after cleaning the cache line.
509 dsb();
512 static inline void flush_cache_vunmap(unsigned long start, unsigned long end)
514 if (!cache_is_vipt_nonaliasing())
515 flush_cache_all();
518 #endif