blob: 7d0614f599a794c7cb193a993f0ffc53baf4be5b [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>
Catalin Marinas33f663f2010-03-24 16:46:52 +010018#include <asm/outercache.h>
Russell Kingb8a9b662005-06-20 11:31:09 +010019
20#define CACHE_COLOUR(vaddr) ((vaddr & (SHMLBA - 1)) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
23 * Cache Model
24 * ===========
25 */
26#undef _CACHE
27#undef MULTI_CACHE
28
Russell King6cc7cbe2006-09-27 18:00:35 +010029#if defined(CONFIG_CPU_CACHE_V3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030# ifdef _CACHE
31# define MULTI_CACHE 1
32# else
33# define _CACHE v3
34# endif
35#endif
36
Russell King6cc7cbe2006-09-27 18:00:35 +010037#if defined(CONFIG_CPU_CACHE_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038# ifdef _CACHE
39# define MULTI_CACHE 1
40# else
41# define _CACHE v4
42# endif
43#endif
44
45#if defined(CONFIG_CPU_ARM920T) || defined(CONFIG_CPU_ARM922T) || \
Abdoulaye Walsimou Gaye1c8e1702010-02-19 12:47:14 +010046 defined(CONFIG_CPU_ARM925T) || defined(CONFIG_CPU_ARM1020) || \
47 defined(CONFIG_CPU_ARM1026)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048# define MULTI_CACHE 1
49#endif
50
Paulius Zaleckas28853ac2009-03-25 13:10:01 +020051#if defined(CONFIG_CPU_FA526)
52# ifdef _CACHE
53# define MULTI_CACHE 1
54# else
55# define _CACHE fa
56# endif
57#endif
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#if defined(CONFIG_CPU_ARM926T)
60# ifdef _CACHE
61# define MULTI_CACHE 1
62# else
63# define _CACHE arm926
64# endif
65#endif
66
Hyok S. Choid60674e2006-09-26 17:38:18 +090067#if defined(CONFIG_CPU_ARM940T)
68# ifdef _CACHE
69# define MULTI_CACHE 1
70# else
71# define _CACHE arm940
72# endif
73#endif
74
Hyok S. Choif37f46e2006-09-26 17:38:32 +090075#if defined(CONFIG_CPU_ARM946E)
76# ifdef _CACHE
77# define MULTI_CACHE 1
78# else
79# define _CACHE arm946
80# endif
81#endif
82
Russell King6cc7cbe2006-09-27 18:00:35 +010083#if defined(CONFIG_CPU_CACHE_V4WB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084# ifdef _CACHE
85# define MULTI_CACHE 1
86# else
87# define _CACHE v4wb
88# endif
89#endif
90
91#if defined(CONFIG_CPU_XSCALE)
92# ifdef _CACHE
93# define MULTI_CACHE 1
94# else
95# define _CACHE xscale
96# endif
97#endif
98
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010099#if defined(CONFIG_CPU_XSC3)
100# ifdef _CACHE
101# define MULTI_CACHE 1
102# else
103# define _CACHE xsc3
104# endif
105#endif
106
Eric Miao49cbe782009-01-20 14:15:18 +0800107#if defined(CONFIG_CPU_MOHAWK)
108# ifdef _CACHE
109# define MULTI_CACHE 1
110# else
111# define _CACHE mohawk
112# endif
113#endif
114
Assaf Hoffmane50d64092007-10-23 15:14:41 -0400115#if defined(CONFIG_CPU_FEROCEON)
Stanislav Samsonov836a8052008-06-03 11:24:40 +0300116# define MULTI_CACHE 1
Assaf Hoffmane50d64092007-10-23 15:14:41 -0400117#endif
118
Russell Kinge399b1a2011-01-17 15:08:32 +0000119#if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120//# ifdef _CACHE
121# define MULTI_CACHE 1
122//# else
123//# define _CACHE v6
124//# endif
125#endif
126
Catalin Marinasbbe88882007-05-08 22:27:46 +0100127#if defined(CONFIG_CPU_V7)
128//# ifdef _CACHE
129# define MULTI_CACHE 1
130//# else
131//# define _CACHE v7
132//# endif
133#endif
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#if !defined(_CACHE) && !defined(MULTI_CACHE)
136#error Unknown cache maintainence model
137#endif
138
139/*
Catalin Marinasc0177802010-09-13 15:57:36 +0100140 * This flag is used to indicate that the page pointed to by a pte is clean
141 * and does not require cleaning before returning it to the user.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
Catalin Marinasc0177802010-09-13 15:57:36 +0100143#define PG_dcache_clean PG_arch_1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/*
146 * MM Cache Management
147 * ===================
148 *
149 * The arch/arm/mm/cache-*.S and arch/arm/mm/proc-*.S files
150 * implement these methods.
151 *
152 * Start addresses are inclusive and end addresses are exclusive;
153 * start addresses should be rounded down, end addresses up.
154 *
155 * See Documentation/cachetlb.txt for more information.
156 * Please note that the implementation of these, and the required
157 * effects are cache-type (VIVT/VIPT/PIPT) specific.
158 *
Tony Lindgren81d11952010-09-21 17:16:40 +0100159 * flush_icache_all()
160 *
161 * Unconditionally clean and invalidate the entire icache.
162 * Currently only needed for cache-v6.S and cache-v7.S, see
163 * __flush_icache_all for the generic implementation.
164 *
Tony Lindgren20451242010-01-19 23:42:08 +0100165 * flush_kern_all()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
167 * Unconditionally clean and invalidate the entire cache.
168 *
Tony Lindgren20451242010-01-19 23:42:08 +0100169 * flush_user_all()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 *
171 * Clean and invalidate all user space cache entries
172 * before a change of page tables.
173 *
Tony Lindgren20451242010-01-19 23:42:08 +0100174 * flush_user_range(start, end, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
176 * Clean and invalidate a range of cache entries in the
177 * specified address space before a change of page tables.
178 * - start - user start address (inclusive, page aligned)
179 * - end - user end address (exclusive, page aligned)
180 * - flags - vma->vm_flags field
181 *
182 * coherent_kern_range(start, end)
183 *
184 * Ensure coherency between the Icache and the Dcache in the
185 * region described by start, end. If you have non-snooping
186 * Harvard caches, you need to implement this function.
187 * - start - virtual start address
188 * - end - virtual end address
189 *
Tony Lindgren20451242010-01-19 23:42:08 +0100190 * coherent_user_range(start, end)
191 *
192 * Ensure coherency between the Icache and the Dcache in the
193 * region described by start, end. If you have non-snooping
194 * Harvard caches, you need to implement this function.
195 * - start - virtual start address
196 * - end - virtual end address
197 *
198 * flush_kern_dcache_area(kaddr, size)
199 *
200 * Ensure that the data held in page is written back.
201 * - kaddr - page address
202 * - size - region size
203 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * DMA Cache Coherency
205 * ===================
206 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * dma_flush_range(start, end)
208 *
209 * Clean and invalidate the specified virtual address range.
210 * - start - virtual start address
211 * - end - virtual end address
212 */
213
214struct cpu_cache_fns {
Tony Lindgren81d11952010-09-21 17:16:40 +0100215 void (*flush_icache_all)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 void (*flush_kern_all)(void);
217 void (*flush_user_all)(void);
218 void (*flush_user_range)(unsigned long, unsigned long, unsigned int);
219
220 void (*coherent_kern_range)(unsigned long, unsigned long);
221 void (*coherent_user_range)(unsigned long, unsigned long);
Russell King2c9b9c82009-11-26 12:56:21 +0000222 void (*flush_kern_dcache_area)(void *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Russell Kinga9c91472009-11-26 16:19:58 +0000224 void (*dma_map_area)(const void *, size_t, int);
225 void (*dma_unmap_area)(const void *, size_t, int);
226
Russell King7ae5a762007-02-06 17:39:31 +0000227 void (*dma_flush_range)(const void *, const void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
230/*
231 * Select the calling method
232 */
233#ifdef MULTI_CACHE
234
235extern struct cpu_cache_fns cpu_cache;
236
Tony Lindgren81d11952010-09-21 17:16:40 +0100237#define __cpuc_flush_icache_all cpu_cache.flush_icache_all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#define __cpuc_flush_kern_all cpu_cache.flush_kern_all
239#define __cpuc_flush_user_all cpu_cache.flush_user_all
240#define __cpuc_flush_user_range cpu_cache.flush_user_range
241#define __cpuc_coherent_kern_range cpu_cache.coherent_kern_range
242#define __cpuc_coherent_user_range cpu_cache.coherent_user_range
Russell King2c9b9c82009-11-26 12:56:21 +0000243#define __cpuc_flush_dcache_area cpu_cache.flush_kern_dcache_area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245/*
246 * These are private to the dma-mapping API. Do not use directly.
247 * Their sole purpose is to ensure that data held in the cache
248 * is visible to DMA, or data written by DMA to system memory is
249 * visible to the CPU.
250 */
Russell Kinga9c91472009-11-26 16:19:58 +0000251#define dmac_map_area cpu_cache.dma_map_area
252#define dmac_unmap_area cpu_cache.dma_unmap_area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#define dmac_flush_range cpu_cache.dma_flush_range
254
255#else
256
Tony Lindgren81d11952010-09-21 17:16:40 +0100257#define __cpuc_flush_icache_all __glue(_CACHE,_flush_icache_all)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define __cpuc_flush_kern_all __glue(_CACHE,_flush_kern_cache_all)
259#define __cpuc_flush_user_all __glue(_CACHE,_flush_user_cache_all)
260#define __cpuc_flush_user_range __glue(_CACHE,_flush_user_cache_range)
261#define __cpuc_coherent_kern_range __glue(_CACHE,_coherent_kern_range)
262#define __cpuc_coherent_user_range __glue(_CACHE,_coherent_user_range)
Russell King2c9b9c82009-11-26 12:56:21 +0000263#define __cpuc_flush_dcache_area __glue(_CACHE,_flush_kern_dcache_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Tony Lindgren81d11952010-09-21 17:16:40 +0100265extern void __cpuc_flush_icache_all(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266extern void __cpuc_flush_kern_all(void);
267extern void __cpuc_flush_user_all(void);
268extern void __cpuc_flush_user_range(unsigned long, unsigned long, unsigned int);
269extern void __cpuc_coherent_kern_range(unsigned long, unsigned long);
270extern void __cpuc_coherent_user_range(unsigned long, unsigned long);
Russell King2c9b9c82009-11-26 12:56:21 +0000271extern void __cpuc_flush_dcache_area(void *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273/*
274 * These are private to the dma-mapping API. Do not use directly.
275 * Their sole purpose is to ensure that data held in the cache
276 * is visible to DMA, or data written by DMA to system memory is
277 * visible to the CPU.
278 */
Russell Kinga9c91472009-11-26 16:19:58 +0000279#define dmac_map_area __glue(_CACHE,_dma_map_area)
280#define dmac_unmap_area __glue(_CACHE,_dma_unmap_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#define dmac_flush_range __glue(_CACHE,_dma_flush_range)
282
Russell Kinga9c91472009-11-26 16:19:58 +0000283extern void dmac_map_area(const void *, size_t, int);
284extern void dmac_unmap_area(const void *, size_t, int);
Russell King7ae5a762007-02-06 17:39:31 +0000285extern void dmac_flush_range(const void *, const void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287#endif
288
289/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 * Copy user data from/to a page which is mapped into a different
291 * processes address space. Really, we want to allow our "user
292 * space" model to handle this.
293 */
Russell King2ef7f3d2009-11-05 13:29:36 +0000294extern void copy_to_user_page(struct vm_area_struct *, struct page *,
295 unsigned long, void *, const void *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
297 do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 memcpy(dst, src, len); \
299 } while (0)
300
301/*
302 * Convert calls to our calling convention.
303 */
Tony Lindgren81d11952010-09-21 17:16:40 +0100304
305/* Invalidate I-cache */
306#define __flush_icache_all_generic() \
307 asm("mcr p15, 0, %0, c7, c5, 0" \
308 : : "r" (0));
309
310/* Invalidate I-cache inner shareable */
311#define __flush_icache_all_v7_smp() \
312 asm("mcr p15, 0, %0, c7, c1, 0" \
313 : : "r" (0));
314
315/*
316 * Optimized __flush_icache_all for the common cases. Note that UP ARMv7
317 * will fall through to use __flush_icache_all_generic.
318 */
Russell Kinge399b1a2011-01-17 15:08:32 +0000319#if (defined(CONFIG_CPU_V7) && \
320 (defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K))) || \
Tony Lindgren81d11952010-09-21 17:16:40 +0100321 defined(CONFIG_SMP_ON_UP)
322#define __flush_icache_preferred __cpuc_flush_icache_all
323#elif __LINUX_ARM_ARCH__ >= 7 && defined(CONFIG_SMP)
324#define __flush_icache_preferred __flush_icache_all_v7_smp
325#elif __LINUX_ARM_ARCH__ == 6 && defined(CONFIG_ARM_ERRATA_411920)
326#define __flush_icache_preferred __cpuc_flush_icache_all
327#else
328#define __flush_icache_preferred __flush_icache_all_generic
329#endif
330
331static inline void __flush_icache_all(void)
332{
333 __flush_icache_preferred();
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336#define flush_cache_all() __cpuc_flush_kern_all()
Russell King2f0b1922009-10-25 10:40:02 +0000337
338static inline void vivt_flush_cache_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600340 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 __cpuc_flush_user_all();
342}
343
344static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000345vivt_flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600347 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 __cpuc_flush_user_range(start & PAGE_MASK, PAGE_ALIGN(end),
349 vma->vm_flags);
350}
351
352static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000353vivt_flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600355 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 unsigned long addr = user_addr & PAGE_MASK;
357 __cpuc_flush_user_range(addr, addr + PAGE_SIZE, vma->vm_flags);
358 }
359}
George G. Davisa188ad22006-09-02 18:43:20 +0100360
Russell King2f0b1922009-10-25 10:40:02 +0000361#ifndef CONFIG_CPU_CACHE_VIPT
362#define flush_cache_mm(mm) \
363 vivt_flush_cache_mm(mm)
364#define flush_cache_range(vma,start,end) \
365 vivt_flush_cache_range(vma,start,end)
366#define flush_cache_page(vma,addr,pfn) \
367 vivt_flush_cache_page(vma,addr,pfn)
Russell Kingd7b6b352005-09-08 15:32:23 +0100368#else
369extern void flush_cache_mm(struct mm_struct *mm);
370extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
371extern void flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn);
372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Ralf Baechleec8c0442006-12-12 17:14:57 +0000374#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * flush_cache_user_range is used when we want to ensure that the
378 * Harvard caches are synchronised for the user space address range.
379 * This is used for the ARM private sys_cacheflush system call.
380 */
381#define flush_cache_user_range(vma,start,end) \
382 __cpuc_coherent_user_range((start) & PAGE_MASK, PAGE_ALIGN(end))
383
384/*
385 * Perform necessary cache operations to ensure that data previously
386 * stored within this range of addresses can be executed by the CPU.
387 */
388#define flush_icache_range(s,e) __cpuc_coherent_kern_range(s,e)
389
390/*
391 * Perform necessary cache operations to ensure that the TLB will
392 * see data written in the specified area.
393 */
394#define clean_dcache_area(start,size) cpu_dcache_clean_area(start, size)
395
396/*
397 * flush_dcache_page is used when the kernel has written to the page
398 * cache page at virtual address page->virtual.
399 *
400 * If this page isn't mapped (ie, page_mapping == NULL), or it might
401 * have userspace mappings, then we _must_ always clean + invalidate
402 * the dcache entries associated with the kernel mapping.
403 *
404 * Otherwise we can defer the operation, and clean the cache when we are
405 * about to change to user space. This is the same method as used on SPARC64.
406 * See update_mmu_cache for the user space part.
407 */
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100408#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409extern void flush_dcache_page(struct page *);
410
James Bottomley252a9af2010-01-25 11:42:22 -0600411static inline void flush_kernel_vmap_range(void *addr, int size)
412{
413 if ((cache_is_vivt() || cache_is_vipt_aliasing()))
414 __cpuc_flush_dcache_area(addr, (size_t)size);
415}
416static inline void invalidate_kernel_vmap_range(void *addr, int size)
417{
418 if ((cache_is_vivt() || cache_is_vipt_aliasing()))
419 __cpuc_flush_dcache_area(addr, (size_t)size);
420}
Catalin Marinas826cbda2008-06-13 10:28:36 +0100421
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{
Nicolas Pitre73be1592009-06-12 03:09:29 +0100435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#define flush_dcache_mmap_lock(mapping) \
Nick Piggin19fd6232008-07-25 19:45:32 -0700438 spin_lock_irq(&(mapping)->tree_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439#define flush_dcache_mmap_unlock(mapping) \
Nick Piggin19fd6232008-07-25 19:45:32 -0700440 spin_unlock_irq(&(mapping)->tree_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442#define flush_icache_user_range(vma,page,addr,len) \
443 flush_dcache_page(page)
444
445/*
446 * We don't appear to need to do anything here. In fact, if we did, we'd
447 * duplicate cache flushing elsewhere performed by flush_dcache_page().
448 */
449#define flush_icache_page(vma,page) do { } while (0)
450
Catalin Marinas376e1422008-11-06 13:23:08 +0000451/*
452 * flush_cache_vmap() is used when creating mappings (eg, via vmap,
453 * vmalloc, ioremap etc) in kernel space for pages. On non-VIPT
454 * caches, since the direct-mappings of these pages may contain cached
455 * data, we need to do a full cache flush to ensure that writebacks
456 * don't corrupt data placed into these pages via the new mappings.
457 */
458static inline void flush_cache_vmap(unsigned long start, unsigned long end)
459{
460 if (!cache_is_vipt_nonaliasing())
461 flush_cache_all();
462 else
463 /*
464 * set_pte_at() called from vmap_pte_range() does not
465 * have a DSB after cleaning the cache line.
466 */
467 dsb();
468}
469
470static inline void flush_cache_vunmap(unsigned long start, unsigned long end)
471{
472 if (!cache_is_vipt_nonaliasing())
473 flush_cache_all();
474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#endif