blob: e290885874127e2f097636e1323bc1078c1bd423 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/cacheflush.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999-2002 Russell King
5 *
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
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/glue.h>
Russell Kingb8a9b662005-06-20 11:31:09 +010016#include <asm/shmparam.h>
Catalin Marinas376e1422008-11-06 13:23:08 +000017#include <asm/cachetype.h>
Russell Kingb8a9b662005-06-20 11:31:09 +010018
19#define CACHE_COLOUR(vaddr) ((vaddr & (SHMLBA - 1)) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/*
22 * Cache Model
23 * ===========
24 */
25#undef _CACHE
26#undef MULTI_CACHE
27
Russell King6cc7cbe2006-09-27 18:00:35 +010028#if defined(CONFIG_CPU_CACHE_V3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029# ifdef _CACHE
30# define MULTI_CACHE 1
31# else
32# define _CACHE v3
33# endif
34#endif
35
Russell King6cc7cbe2006-09-27 18:00:35 +010036#if defined(CONFIG_CPU_CACHE_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037# ifdef _CACHE
38# define MULTI_CACHE 1
39# else
40# define _CACHE v4
41# endif
42#endif
43
44#if defined(CONFIG_CPU_ARM920T) || defined(CONFIG_CPU_ARM922T) || \
45 defined(CONFIG_CPU_ARM925T) || defined(CONFIG_CPU_ARM1020)
46# define MULTI_CACHE 1
47#endif
48
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020049#if defined(CONFIG_CPU_FA526)
50# ifdef _CACHE
51# define MULTI_CACHE 1
52# else
53# define _CACHE fa
54# endif
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#if defined(CONFIG_CPU_ARM926T)
58# ifdef _CACHE
59# define MULTI_CACHE 1
60# else
61# define _CACHE arm926
62# endif
63#endif
64
Hyok S. Choid60674e2006-09-26 17:38:18 +090065#if defined(CONFIG_CPU_ARM940T)
66# ifdef _CACHE
67# define MULTI_CACHE 1
68# else
69# define _CACHE arm940
70# endif
71#endif
72
Hyok S. Choif37f46e2006-09-26 17:38:32 +090073#if defined(CONFIG_CPU_ARM946E)
74# ifdef _CACHE
75# define MULTI_CACHE 1
76# else
77# define _CACHE arm946
78# endif
79#endif
80
Russell King6cc7cbe2006-09-27 18:00:35 +010081#if defined(CONFIG_CPU_CACHE_V4WB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082# ifdef _CACHE
83# define MULTI_CACHE 1
84# else
85# define _CACHE v4wb
86# endif
87#endif
88
89#if defined(CONFIG_CPU_XSCALE)
90# ifdef _CACHE
91# define MULTI_CACHE 1
92# else
93# define _CACHE xscale
94# endif
95#endif
96
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010097#if defined(CONFIG_CPU_XSC3)
98# ifdef _CACHE
99# define MULTI_CACHE 1
100# else
101# define _CACHE xsc3
102# endif
103#endif
104
Eric Miao49cbe782009-01-20 14:15:18 +0800105#if defined(CONFIG_CPU_MOHAWK)
106# ifdef _CACHE
107# define MULTI_CACHE 1
108# else
109# define _CACHE mohawk
110# endif
111#endif
112
Assaf Hoffmane50d6402007-10-23 15:14:41 -0400113#if defined(CONFIG_CPU_FEROCEON)
Stanislav Samsonov836a8052008-06-03 11:24:40 +0300114# define MULTI_CACHE 1
Assaf Hoffmane50d6402007-10-23 15:14:41 -0400115#endif
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#if defined(CONFIG_CPU_V6)
118//# ifdef _CACHE
119# define MULTI_CACHE 1
120//# else
121//# define _CACHE v6
122//# endif
123#endif
124
Catalin Marinasbbe88882007-05-08 22:27:46 +0100125#if defined(CONFIG_CPU_V7)
126//# ifdef _CACHE
127# define MULTI_CACHE 1
128//# else
129//# define _CACHE v7
130//# endif
131#endif
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#if !defined(_CACHE) && !defined(MULTI_CACHE)
134#error Unknown cache maintainence model
135#endif
136
137/*
138 * This flag is used to indicate that the page pointed to by a pte
139 * is dirty and requires cleaning before returning it to the user.
140 */
141#define PG_dcache_dirty PG_arch_1
142
143/*
144 * MM Cache Management
145 * ===================
146 *
147 * The arch/arm/mm/cache-*.S and arch/arm/mm/proc-*.S files
148 * implement these methods.
149 *
150 * Start addresses are inclusive and end addresses are exclusive;
151 * start addresses should be rounded down, end addresses up.
152 *
153 * See Documentation/cachetlb.txt for more information.
154 * Please note that the implementation of these, and the required
155 * effects are cache-type (VIVT/VIPT/PIPT) specific.
156 *
157 * flush_cache_kern_all()
158 *
159 * Unconditionally clean and invalidate the entire cache.
160 *
161 * flush_cache_user_mm(mm)
162 *
163 * Clean and invalidate all user space cache entries
164 * before a change of page tables.
165 *
166 * flush_cache_user_range(start, end, flags)
167 *
168 * Clean and invalidate a range of cache entries in the
169 * specified address space before a change of page tables.
170 * - start - user start address (inclusive, page aligned)
171 * - end - user end address (exclusive, page aligned)
172 * - flags - vma->vm_flags field
173 *
174 * coherent_kern_range(start, end)
175 *
176 * Ensure coherency between the Icache and the Dcache in the
177 * region described by start, end. If you have non-snooping
178 * Harvard caches, you need to implement this function.
179 * - start - virtual start address
180 * - end - virtual end address
181 *
182 * DMA Cache Coherency
183 * ===================
184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * dma_flush_range(start, end)
186 *
187 * Clean and invalidate the specified virtual address range.
188 * - start - virtual start address
189 * - end - virtual end address
190 */
191
192struct cpu_cache_fns {
193 void (*flush_kern_all)(void);
194 void (*flush_user_all)(void);
195 void (*flush_user_range)(unsigned long, unsigned long, unsigned int);
196
197 void (*coherent_kern_range)(unsigned long, unsigned long);
198 void (*coherent_user_range)(unsigned long, unsigned long);
Russell King2c9b9c82009-11-26 12:56:21 +0000199 void (*flush_kern_dcache_area)(void *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Russell Kinga9c91472009-11-26 16:19:58 +0000201 void (*dma_map_area)(const void *, size_t, int);
202 void (*dma_unmap_area)(const void *, size_t, int);
203
Russell King7ae5a762007-02-06 17:39:31 +0000204 void (*dma_flush_range)(const void *, const void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Catalin Marinas953233d2007-02-05 14:48:08 +0100207struct outer_cache_fns {
208 void (*inv_range)(unsigned long, unsigned long);
209 void (*clean_range)(unsigned long, unsigned long);
210 void (*flush_range)(unsigned long, unsigned long);
211};
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/*
214 * Select the calling method
215 */
216#ifdef MULTI_CACHE
217
218extern struct cpu_cache_fns cpu_cache;
219
220#define __cpuc_flush_kern_all cpu_cache.flush_kern_all
221#define __cpuc_flush_user_all cpu_cache.flush_user_all
222#define __cpuc_flush_user_range cpu_cache.flush_user_range
223#define __cpuc_coherent_kern_range cpu_cache.coherent_kern_range
224#define __cpuc_coherent_user_range cpu_cache.coherent_user_range
Russell King2c9b9c82009-11-26 12:56:21 +0000225#define __cpuc_flush_dcache_area cpu_cache.flush_kern_dcache_area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227/*
228 * These are private to the dma-mapping API. Do not use directly.
229 * Their sole purpose is to ensure that data held in the cache
230 * is visible to DMA, or data written by DMA to system memory is
231 * visible to the CPU.
232 */
Russell Kinga9c91472009-11-26 16:19:58 +0000233#define dmac_map_area cpu_cache.dma_map_area
234#define dmac_unmap_area cpu_cache.dma_unmap_area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define dmac_flush_range cpu_cache.dma_flush_range
236
237#else
238
239#define __cpuc_flush_kern_all __glue(_CACHE,_flush_kern_cache_all)
240#define __cpuc_flush_user_all __glue(_CACHE,_flush_user_cache_all)
241#define __cpuc_flush_user_range __glue(_CACHE,_flush_user_cache_range)
242#define __cpuc_coherent_kern_range __glue(_CACHE,_coherent_kern_range)
243#define __cpuc_coherent_user_range __glue(_CACHE,_coherent_user_range)
Russell King2c9b9c82009-11-26 12:56:21 +0000244#define __cpuc_flush_dcache_area __glue(_CACHE,_flush_kern_dcache_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246extern void __cpuc_flush_kern_all(void);
247extern void __cpuc_flush_user_all(void);
248extern void __cpuc_flush_user_range(unsigned long, unsigned long, unsigned int);
249extern void __cpuc_coherent_kern_range(unsigned long, unsigned long);
250extern void __cpuc_coherent_user_range(unsigned long, unsigned long);
Russell King2c9b9c82009-11-26 12:56:21 +0000251extern void __cpuc_flush_dcache_area(void *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/*
254 * These are private to the dma-mapping API. Do not use directly.
255 * Their sole purpose is to ensure that data held in the cache
256 * is visible to DMA, or data written by DMA to system memory is
257 * visible to the CPU.
258 */
Russell Kinga9c91472009-11-26 16:19:58 +0000259#define dmac_map_area __glue(_CACHE,_dma_map_area)
260#define dmac_unmap_area __glue(_CACHE,_dma_unmap_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#define dmac_flush_range __glue(_CACHE,_dma_flush_range)
262
Russell Kinga9c91472009-11-26 16:19:58 +0000263extern void dmac_map_area(const void *, size_t, int);
264extern void dmac_unmap_area(const void *, size_t, int);
Russell King7ae5a762007-02-06 17:39:31 +0000265extern void dmac_flush_range(const void *, const void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267#endif
268
Catalin Marinas953233d2007-02-05 14:48:08 +0100269#ifdef CONFIG_OUTER_CACHE
270
271extern struct outer_cache_fns outer_cache;
272
273static inline void outer_inv_range(unsigned long start, unsigned long end)
274{
275 if (outer_cache.inv_range)
276 outer_cache.inv_range(start, end);
277}
278static inline void outer_clean_range(unsigned long start, unsigned long end)
279{
280 if (outer_cache.clean_range)
281 outer_cache.clean_range(start, end);
282}
283static inline void outer_flush_range(unsigned long start, unsigned long end)
284{
285 if (outer_cache.flush_range)
286 outer_cache.flush_range(start, end);
287}
288
289#else
290
291static inline void outer_inv_range(unsigned long start, unsigned long end)
292{ }
293static inline void outer_clean_range(unsigned long start, unsigned long end)
294{ }
295static inline void outer_flush_range(unsigned long start, unsigned long end)
296{ }
297
298#endif
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * Copy user data from/to a page which is mapped into a different
302 * processes address space. Really, we want to allow our "user
303 * space" model to handle this.
304 */
305#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
306 do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 memcpy(dst, src, len); \
George G. Davisa188ad22006-09-02 18:43:20 +0100308 flush_ptrace_access(vma, page, vaddr, dst, len, 1);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } while (0)
310
311#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
312 do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 memcpy(dst, src, len); \
314 } while (0)
315
316/*
317 * Convert calls to our calling convention.
318 */
319#define flush_cache_all() __cpuc_flush_kern_all()
Russell King2f0b1922009-10-25 10:40:02 +0000320
321static inline void vivt_flush_cache_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600323 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 __cpuc_flush_user_all();
325}
326
327static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000328vivt_flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600330 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 __cpuc_flush_user_range(start & PAGE_MASK, PAGE_ALIGN(end),
332 vma->vm_flags);
333}
334
335static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000336vivt_flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600338 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 unsigned long addr = user_addr & PAGE_MASK;
340 __cpuc_flush_user_range(addr, addr + PAGE_SIZE, vma->vm_flags);
341 }
342}
George G. Davisa188ad22006-09-02 18:43:20 +0100343
344static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000345vivt_flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
George G. Davisa188ad22006-09-02 18:43:20 +0100346 unsigned long uaddr, void *kaddr,
347 unsigned long len, int write)
348{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600349 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
George G. Davisa188ad22006-09-02 18:43:20 +0100350 unsigned long addr = (unsigned long)kaddr;
351 __cpuc_coherent_kern_range(addr, addr + len);
352 }
353}
Russell King2f0b1922009-10-25 10:40:02 +0000354
355#ifndef CONFIG_CPU_CACHE_VIPT
356#define flush_cache_mm(mm) \
357 vivt_flush_cache_mm(mm)
358#define flush_cache_range(vma,start,end) \
359 vivt_flush_cache_range(vma,start,end)
360#define flush_cache_page(vma,addr,pfn) \
361 vivt_flush_cache_page(vma,addr,pfn)
362#define flush_ptrace_access(vma,page,ua,ka,len,write) \
363 vivt_flush_ptrace_access(vma,page,ua,ka,len,write)
Russell Kingd7b6b352005-09-08 15:32:23 +0100364#else
365extern void flush_cache_mm(struct mm_struct *mm);
366extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
367extern void flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn);
George G. Davisa188ad22006-09-02 18:43:20 +0100368extern void flush_ptrace_access(struct vm_area_struct *vma, struct page *page,
369 unsigned long uaddr, void *kaddr,
370 unsigned long len, int write);
Russell Kingd7b6b352005-09-08 15:32:23 +0100371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Ralf Baechleec8c0442006-12-12 17:14:57 +0000373#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * flush_cache_user_range is used when we want to ensure that the
377 * Harvard caches are synchronised for the user space address range.
378 * This is used for the ARM private sys_cacheflush system call.
379 */
380#define flush_cache_user_range(vma,start,end) \
381 __cpuc_coherent_user_range((start) & PAGE_MASK, PAGE_ALIGN(end))
382
383/*
384 * Perform necessary cache operations to ensure that data previously
385 * stored within this range of addresses can be executed by the CPU.
386 */
387#define flush_icache_range(s,e) __cpuc_coherent_kern_range(s,e)
388
389/*
390 * Perform necessary cache operations to ensure that the TLB will
391 * see data written in the specified area.
392 */
393#define clean_dcache_area(start,size) cpu_dcache_clean_area(start, size)
394
395/*
396 * flush_dcache_page is used when the kernel has written to the page
397 * cache page at virtual address page->virtual.
398 *
399 * If this page isn't mapped (ie, page_mapping == NULL), or it might
400 * have userspace mappings, then we _must_ always clean + invalidate
401 * the dcache entries associated with the kernel mapping.
402 *
403 * Otherwise we can defer the operation, and clean the cache when we are
404 * about to change to user space. This is the same method as used on SPARC64.
405 * See update_mmu_cache for the user space part.
406 */
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100407#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408extern void flush_dcache_page(struct page *);
409
Catalin Marinas826cbda2008-06-13 10:28:36 +0100410static inline void __flush_icache_all(void)
411{
Russell Kingdf71dfd2009-10-24 22:36:36 +0100412#ifdef CONFIG_ARM_ERRATA_411920
413 extern void v6_icache_inval_all(void);
414 v6_icache_inval_all();
415#else
Catalin Marinas826cbda2008-06-13 10:28:36 +0100416 asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n"
417 :
418 : "r" (0));
Russell Kingdf71dfd2009-10-24 22:36:36 +0100419#endif
Catalin Marinas826cbda2008-06-13 10:28:36 +0100420}
421
Russell King6020dff2006-12-30 23:17:40 +0000422#define ARCH_HAS_FLUSH_ANON_PAGE
423static inline void flush_anon_page(struct vm_area_struct *vma,
424 struct page *page, unsigned long vmaddr)
425{
426 extern void __flush_anon_page(struct vm_area_struct *vma,
427 struct page *, unsigned long);
428 if (PageAnon(page))
429 __flush_anon_page(vma, page, vmaddr);
430}
431
Nicolas Pitre73be1592009-06-12 03:09:29 +0100432#define ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
433static inline void flush_kernel_dcache_page(struct page *page)
434{
435 /* highmem pages are always flushed upon kunmap already */
436 if ((cache_is_vivt() || cache_is_vipt_aliasing()) && !PageHighMem(page))
Russell King2c9b9c82009-11-26 12:56:21 +0000437 __cpuc_flush_dcache_area(page_address(page), PAGE_SIZE);
Nicolas Pitre73be1592009-06-12 03:09:29 +0100438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#define flush_dcache_mmap_lock(mapping) \
Nick Piggin19fd6232008-07-25 19:45:32 -0700441 spin_lock_irq(&(mapping)->tree_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#define flush_dcache_mmap_unlock(mapping) \
Nick Piggin19fd6232008-07-25 19:45:32 -0700443 spin_unlock_irq(&(mapping)->tree_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445#define flush_icache_user_range(vma,page,addr,len) \
446 flush_dcache_page(page)
447
448/*
449 * We don't appear to need to do anything here. In fact, if we did, we'd
450 * duplicate cache flushing elsewhere performed by flush_dcache_page().
451 */
452#define flush_icache_page(vma,page) do { } while (0)
453
Catalin Marinas376e1422008-11-06 13:23:08 +0000454/*
455 * flush_cache_vmap() is used when creating mappings (eg, via vmap,
456 * vmalloc, ioremap etc) in kernel space for pages. On non-VIPT
457 * caches, since the direct-mappings of these pages may contain cached
458 * data, we need to do a full cache flush to ensure that writebacks
459 * don't corrupt data placed into these pages via the new mappings.
460 */
461static inline void flush_cache_vmap(unsigned long start, unsigned long end)
462{
463 if (!cache_is_vipt_nonaliasing())
464 flush_cache_all();
465 else
466 /*
467 * set_pte_at() called from vmap_pte_range() does not
468 * have a DSB after cleaning the cache line.
469 */
470 dsb();
471}
472
473static inline void flush_cache_vunmap(unsigned long start, unsigned long end)
474{
475 if (!cache_is_vipt_nonaliasing())
476 flush_cache_all();
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#endif