blob: 0e8f4916e1a52ab3f9da40b5fb75ea793e6886e5 [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
Russell King753790e2011-02-06 15:32:24 +000015#include <asm/glue-cache.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/*
Catalin Marinasc0177802010-09-13 15:57:36 +010023 * This flag is used to indicate that the page pointed to by a pte is clean
24 * and does not require cleaning before returning it to the user.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
Catalin Marinasc0177802010-09-13 15:57:36 +010026#define PG_dcache_clean PG_arch_1
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * MM Cache Management
30 * ===================
31 *
32 * The arch/arm/mm/cache-*.S and arch/arm/mm/proc-*.S files
33 * implement these methods.
34 *
35 * Start addresses are inclusive and end addresses are exclusive;
36 * start addresses should be rounded down, end addresses up.
37 *
38 * See Documentation/cachetlb.txt for more information.
39 * Please note that the implementation of these, and the required
40 * effects are cache-type (VIVT/VIPT/PIPT) specific.
41 *
Tony Lindgren81d11952010-09-21 17:16:40 +010042 * flush_icache_all()
43 *
44 * Unconditionally clean and invalidate the entire icache.
45 * Currently only needed for cache-v6.S and cache-v7.S, see
46 * __flush_icache_all for the generic implementation.
47 *
Tony Lindgren20451242010-01-19 23:42:08 +010048 * flush_kern_all()
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 *
50 * Unconditionally clean and invalidate the entire cache.
51 *
Lorenzo Pieralisib4a79062012-09-06 18:35:13 +053052 * flush_kern_louis()
53 *
54 * Flush data cache levels up to the level of unification
55 * inner shareable and invalidate the I-cache.
56 * Only needed from v7 onwards, falls back to flush_cache_all()
57 * for all other processor versions.
58 *
Tony Lindgren20451242010-01-19 23:42:08 +010059 * flush_user_all()
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * Clean and invalidate all user space cache entries
62 * before a change of page tables.
63 *
Tony Lindgren20451242010-01-19 23:42:08 +010064 * flush_user_range(start, end, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 * Clean and invalidate a range of cache entries in the
67 * specified address space before a change of page tables.
68 * - start - user start address (inclusive, page aligned)
69 * - end - user end address (exclusive, page aligned)
70 * - flags - vma->vm_flags field
71 *
72 * coherent_kern_range(start, end)
73 *
74 * Ensure coherency between the Icache and the Dcache in the
75 * region described by start, end. If you have non-snooping
76 * Harvard caches, you need to implement this function.
77 * - start - virtual start address
78 * - end - virtual end address
79 *
Tony Lindgren20451242010-01-19 23:42:08 +010080 * coherent_user_range(start, end)
81 *
82 * Ensure coherency between the Icache and the Dcache in the
83 * region described by start, end. If you have non-snooping
84 * Harvard caches, you need to implement this function.
85 * - start - virtual start address
86 * - end - virtual end address
87 *
88 * flush_kern_dcache_area(kaddr, size)
89 *
90 * Ensure that the data held in page is written back.
91 * - kaddr - page address
92 * - size - region size
93 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * DMA Cache Coherency
95 * ===================
96 *
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070097 * dma_inv_range(start, end)
98 *
99 * Invalidate (discard) the specified virtual address range.
100 * May not write back any entries. If 'start' or 'end'
101 * are not cache line aligned, those lines must be written
102 * back.
103 * - start - virtual start address
104 * - end - virtual end address
105 *
106 * dma_clean_range(start, end)
107 *
108 * Clean (write back) the specified virtual address range.
109 * - start - virtual start address
110 * - end - virtual end address
111 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * dma_flush_range(start, end)
113 *
114 * Clean and invalidate the specified virtual address range.
115 * - start - virtual start address
116 * - end - virtual end address
117 */
118
119struct cpu_cache_fns {
Tony Lindgren81d11952010-09-21 17:16:40 +0100120 void (*flush_icache_all)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 void (*flush_kern_all)(void);
Lorenzo Pieralisib4a79062012-09-06 18:35:13 +0530122 void (*flush_kern_louis)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 void (*flush_user_all)(void);
124 void (*flush_user_range)(unsigned long, unsigned long, unsigned int);
125
126 void (*coherent_kern_range)(unsigned long, unsigned long);
127 void (*coherent_user_range)(unsigned long, unsigned long);
Russell King2c9b9c82009-11-26 12:56:21 +0000128 void (*flush_kern_dcache_area)(void *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Russell Kinga9c91472009-11-26 16:19:58 +0000130 void (*dma_map_area)(const void *, size_t, int);
131 void (*dma_unmap_area)(const void *, size_t, int);
132
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700133 void (*dma_inv_range)(const void *, const void *);
134 void (*dma_clean_range)(const void *, const void *);
Russell King7ae5a762007-02-06 17:39:31 +0000135 void (*dma_flush_range)(const void *, const void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138/*
139 * Select the calling method
140 */
141#ifdef MULTI_CACHE
142
143extern struct cpu_cache_fns cpu_cache;
144
Tony Lindgren81d11952010-09-21 17:16:40 +0100145#define __cpuc_flush_icache_all cpu_cache.flush_icache_all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#define __cpuc_flush_kern_all cpu_cache.flush_kern_all
Lorenzo Pieralisib4a79062012-09-06 18:35:13 +0530147#define __cpuc_flush_kern_louis cpu_cache.flush_kern_louis
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#define __cpuc_flush_user_all cpu_cache.flush_user_all
149#define __cpuc_flush_user_range cpu_cache.flush_user_range
150#define __cpuc_coherent_kern_range cpu_cache.coherent_kern_range
151#define __cpuc_coherent_user_range cpu_cache.coherent_user_range
Russell King2c9b9c82009-11-26 12:56:21 +0000152#define __cpuc_flush_dcache_area cpu_cache.flush_kern_dcache_area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/*
155 * These are private to the dma-mapping API. Do not use directly.
156 * Their sole purpose is to ensure that data held in the cache
157 * is visible to DMA, or data written by DMA to system memory is
158 * visible to the CPU.
159 */
Russell Kinga9c91472009-11-26 16:19:58 +0000160#define dmac_map_area cpu_cache.dma_map_area
Russell King753790e2011-02-06 15:32:24 +0000161#define dmac_unmap_area cpu_cache.dma_unmap_area
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700162#define dmac_inv_range cpu_cache.dma_inv_range
163#define dmac_clean_range cpu_cache.dma_clean_range
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define dmac_flush_range cpu_cache.dma_flush_range
165
166#else
167
Tony Lindgren81d11952010-09-21 17:16:40 +0100168extern void __cpuc_flush_icache_all(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169extern void __cpuc_flush_kern_all(void);
Lorenzo Pieralisib4a79062012-09-06 18:35:13 +0530170extern void __cpuc_flush_kern_louis(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171extern void __cpuc_flush_user_all(void);
172extern void __cpuc_flush_user_range(unsigned long, unsigned long, unsigned int);
173extern void __cpuc_coherent_kern_range(unsigned long, unsigned long);
174extern void __cpuc_coherent_user_range(unsigned long, unsigned long);
Russell King2c9b9c82009-11-26 12:56:21 +0000175extern void __cpuc_flush_dcache_area(void *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/*
178 * These are private to the dma-mapping API. Do not use directly.
179 * Their sole purpose is to ensure that data held in the cache
180 * is visible to DMA, or data written by DMA to system memory is
181 * visible to the CPU.
182 */
Russell Kinga9c91472009-11-26 16:19:58 +0000183extern void dmac_map_area(const void *, size_t, int);
184extern void dmac_unmap_area(const void *, size_t, int);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700185extern void dmac_inv_range(const void *, const void *);
186extern void dmac_clean_range(const void *, const void *);
Russell King7ae5a762007-02-06 17:39:31 +0000187extern void dmac_flush_range(const void *, const void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189#endif
190
191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * Copy user data from/to a page which is mapped into a different
193 * processes address space. Really, we want to allow our "user
194 * space" model to handle this.
195 */
Russell King2ef7f3d2009-11-05 13:29:36 +0000196extern void copy_to_user_page(struct vm_area_struct *, struct page *,
197 unsigned long, void *, const void *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
199 do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 memcpy(dst, src, len); \
201 } while (0)
202
203/*
204 * Convert calls to our calling convention.
205 */
Tony Lindgren81d11952010-09-21 17:16:40 +0100206
207/* Invalidate I-cache */
208#define __flush_icache_all_generic() \
209 asm("mcr p15, 0, %0, c7, c5, 0" \
210 : : "r" (0));
211
212/* Invalidate I-cache inner shareable */
213#define __flush_icache_all_v7_smp() \
214 asm("mcr p15, 0, %0, c7, c1, 0" \
215 : : "r" (0));
216
217/*
218 * Optimized __flush_icache_all for the common cases. Note that UP ARMv7
219 * will fall through to use __flush_icache_all_generic.
220 */
Russell Kinge399b1a2011-01-17 15:08:32 +0000221#if (defined(CONFIG_CPU_V7) && \
222 (defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V6K))) || \
Tony Lindgren81d11952010-09-21 17:16:40 +0100223 defined(CONFIG_SMP_ON_UP)
224#define __flush_icache_preferred __cpuc_flush_icache_all
225#elif __LINUX_ARM_ARCH__ >= 7 && defined(CONFIG_SMP)
226#define __flush_icache_preferred __flush_icache_all_v7_smp
227#elif __LINUX_ARM_ARCH__ == 6 && defined(CONFIG_ARM_ERRATA_411920)
228#define __flush_icache_preferred __cpuc_flush_icache_all
229#else
230#define __flush_icache_preferred __flush_icache_all_generic
231#endif
232
233static inline void __flush_icache_all(void)
234{
235 __flush_icache_preferred();
236}
237
Lorenzo Pieralisib4a79062012-09-06 18:35:13 +0530238/*
239 * Flush caches up to Level of Unification Inner Shareable
240 */
241#define flush_cache_louis() __cpuc_flush_kern_louis()
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#define flush_cache_all() __cpuc_flush_kern_all()
Russell King2f0b1922009-10-25 10:40:02 +0000244
245static inline void vivt_flush_cache_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600247 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 __cpuc_flush_user_all();
249}
250
251static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000252vivt_flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600254 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 __cpuc_flush_user_range(start & PAGE_MASK, PAGE_ALIGN(end),
256 vma->vm_flags);
257}
258
259static inline void
Russell King2f0b1922009-10-25 10:40:02 +0000260vivt_flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Rusty Russell56f8ba82009-09-24 09:34:49 -0600262 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned long addr = user_addr & PAGE_MASK;
264 __cpuc_flush_user_range(addr, addr + PAGE_SIZE, vma->vm_flags);
265 }
266}
George G. Davisa188ad22006-09-02 18:43:20 +0100267
Russell King2f0b1922009-10-25 10:40:02 +0000268#ifndef CONFIG_CPU_CACHE_VIPT
269#define flush_cache_mm(mm) \
270 vivt_flush_cache_mm(mm)
271#define flush_cache_range(vma,start,end) \
272 vivt_flush_cache_range(vma,start,end)
273#define flush_cache_page(vma,addr,pfn) \
274 vivt_flush_cache_page(vma,addr,pfn)
Russell Kingd7b6b352005-09-08 15:32:23 +0100275#else
276extern void flush_cache_mm(struct mm_struct *mm);
277extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
278extern void flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn);
279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Ralf Baechleec8c0442006-12-12 17:14:57 +0000281#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/*
284 * flush_cache_user_range is used when we want to ensure that the
285 * Harvard caches are synchronised for the user space address range.
286 * This is used for the ARM private sys_cacheflush system call.
287 */
Dima Zavin96714b52010-04-27 20:57:04 -0700288#define flush_cache_user_range(start,end) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 __cpuc_coherent_user_range((start) & PAGE_MASK, PAGE_ALIGN(end))
290
291/*
292 * Perform necessary cache operations to ensure that data previously
293 * stored within this range of addresses can be executed by the CPU.
294 */
295#define flush_icache_range(s,e) __cpuc_coherent_kern_range(s,e)
296
297/*
298 * Perform necessary cache operations to ensure that the TLB will
299 * see data written in the specified area.
300 */
301#define clean_dcache_area(start,size) cpu_dcache_clean_area(start, size)
302
303/*
304 * flush_dcache_page is used when the kernel has written to the page
305 * cache page at virtual address page->virtual.
306 *
307 * If this page isn't mapped (ie, page_mapping == NULL), or it might
308 * have userspace mappings, then we _must_ always clean + invalidate
309 * the dcache entries associated with the kernel mapping.
310 *
311 * Otherwise we can defer the operation, and clean the cache when we are
312 * about to change to user space. This is the same method as used on SPARC64.
313 * See update_mmu_cache for the user space part.
314 */
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100315#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316extern void flush_dcache_page(struct page *);
317
James Bottomley252a9af2010-01-25 11:42:22 -0600318static inline void flush_kernel_vmap_range(void *addr, int size)
319{
320 if ((cache_is_vivt() || cache_is_vipt_aliasing()))
321 __cpuc_flush_dcache_area(addr, (size_t)size);
322}
323static inline void invalidate_kernel_vmap_range(void *addr, int size)
324{
325 if ((cache_is_vivt() || cache_is_vipt_aliasing()))
326 __cpuc_flush_dcache_area(addr, (size_t)size);
327}
Catalin Marinas826cbda2008-06-13 10:28:36 +0100328
Russell King6020dff2006-12-30 23:17:40 +0000329#define ARCH_HAS_FLUSH_ANON_PAGE
330static inline void flush_anon_page(struct vm_area_struct *vma,
331 struct page *page, unsigned long vmaddr)
332{
333 extern void __flush_anon_page(struct vm_area_struct *vma,
334 struct page *, unsigned long);
335 if (PageAnon(page))
336 __flush_anon_page(vma, page, vmaddr);
337}
338
Nicolas Pitre73be1592009-06-12 03:09:29 +0100339#define ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
340static inline void flush_kernel_dcache_page(struct page *page)
341{
Nicolas Pitre73be1592009-06-12 03:09:29 +0100342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#define flush_dcache_mmap_lock(mapping) \
Nick Piggin19fd6232008-07-25 19:45:32 -0700345 spin_lock_irq(&(mapping)->tree_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#define flush_dcache_mmap_unlock(mapping) \
Nick Piggin19fd6232008-07-25 19:45:32 -0700347 spin_unlock_irq(&(mapping)->tree_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349#define flush_icache_user_range(vma,page,addr,len) \
350 flush_dcache_page(page)
351
352/*
353 * We don't appear to need to do anything here. In fact, if we did, we'd
354 * duplicate cache flushing elsewhere performed by flush_dcache_page().
355 */
356#define flush_icache_page(vma,page) do { } while (0)
357
Catalin Marinas376e1422008-11-06 13:23:08 +0000358/*
359 * flush_cache_vmap() is used when creating mappings (eg, via vmap,
360 * vmalloc, ioremap etc) in kernel space for pages. On non-VIPT
361 * caches, since the direct-mappings of these pages may contain cached
362 * data, we need to do a full cache flush to ensure that writebacks
363 * don't corrupt data placed into these pages via the new mappings.
364 */
365static inline void flush_cache_vmap(unsigned long start, unsigned long end)
366{
367 if (!cache_is_vipt_nonaliasing())
368 flush_cache_all();
369 else
370 /*
371 * set_pte_at() called from vmap_pte_range() does not
372 * have a DSB after cleaning the cache line.
373 */
374 dsb();
375}
376
377static inline void flush_cache_vunmap(unsigned long start, unsigned long end)
378{
379 if (!cache_is_vipt_nonaliasing())
380 flush_cache_all();
381}
382
Laura Abbottfbaf31e2013-06-12 09:44:18 -0700383int set_memory_ro(unsigned long addr, int numpages);
384int set_memory_rw(unsigned long addr, int numpages);
385int set_memory_x(unsigned long addr, int numpages);
386int set_memory_nx(unsigned long addr, int numpages);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#endif