Merge branch 'akpm' (patches from Andrew)
[linux-2.6-block.git] / arch / xtensa / include / asm / cacheflush.h
CommitLineData
9a8fd558 1/*
9a8fd558
CZ
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
f615136c 6 * (C) 2001 - 2013 Tensilica Inc.
9a8fd558
CZ
7 */
8
9#ifndef _XTENSA_CACHEFLUSH_H
10#define _XTENSA_CACHEFLUSH_H
11
9a8fd558
CZ
12#include <linux/mm.h>
13#include <asm/processor.h>
14#include <asm/page.h>
15
16/*
6656920b 17 * Lo-level routines for cache flushing.
9a8fd558
CZ
18 *
19 * invalidate data or instruction cache:
20 *
21 * __invalidate_icache_all()
22 * __invalidate_icache_page(adr)
23 * __invalidate_dcache_page(adr)
24 * __invalidate_icache_range(from,size)
25 * __invalidate_dcache_range(from,size)
26 *
27 * flush data cache:
28 *
29 * __flush_dcache_page(adr)
30 *
31 * flush and invalidate data cache:
32 *
33 * __flush_invalidate_dcache_all()
34 * __flush_invalidate_dcache_page(adr)
35 * __flush_invalidate_dcache_range(from,size)
6656920b
CZ
36 *
37 * specials for cache aliasing:
38 *
39 * __flush_invalidate_dcache_page_alias(vaddr,paddr)
a91902db 40 * __invalidate_dcache_page_alias(vaddr,paddr)
6656920b 41 * __invalidate_icache_page_alias(vaddr,paddr)
9a8fd558
CZ
42 */
43
6656920b 44extern void __invalidate_dcache_all(void);
9a8fd558 45extern void __invalidate_icache_all(void);
9a8fd558
CZ
46extern void __invalidate_dcache_page(unsigned long);
47extern void __invalidate_icache_page(unsigned long);
48extern void __invalidate_icache_range(unsigned long, unsigned long);
49extern void __invalidate_dcache_range(unsigned long, unsigned long);
50
51#if XCHAL_DCACHE_IS_WRITEBACK
6656920b 52extern void __flush_invalidate_dcache_all(void);
9a8fd558 53extern void __flush_dcache_page(unsigned long);
6656920b 54extern void __flush_dcache_range(unsigned long, unsigned long);
9a8fd558
CZ
55extern void __flush_invalidate_dcache_page(unsigned long);
56extern void __flush_invalidate_dcache_range(unsigned long, unsigned long);
57#else
c7ca9fe1
MF
58static inline void __flush_dcache_page(unsigned long va)
59{
60}
61static inline void __flush_dcache_range(unsigned long va, unsigned long sz)
62{
63}
64# define __flush_invalidate_dcache_all() __invalidate_dcache_all()
65# define __flush_invalidate_dcache_page(p) __invalidate_dcache_page(p)
6656920b
CZ
66# define __flush_invalidate_dcache_range(p,s) __invalidate_dcache_range(p,s)
67#endif
68
e5083a63 69#if defined(CONFIG_MMU) && (DCACHE_WAY_SIZE > PAGE_SIZE)
6656920b 70extern void __flush_invalidate_dcache_page_alias(unsigned long, unsigned long);
a91902db 71extern void __invalidate_dcache_page_alias(unsigned long, unsigned long);
e5083a63
JW
72#else
73static inline void __flush_invalidate_dcache_page_alias(unsigned long virt,
74 unsigned long phys) { }
4d5ea702
MF
75static inline void __invalidate_dcache_page_alias(unsigned long virt,
76 unsigned long phys) { }
6656920b 77#endif
e5083a63 78#if defined(CONFIG_MMU) && (ICACHE_WAY_SIZE > PAGE_SIZE)
6656920b 79extern void __invalidate_icache_page_alias(unsigned long, unsigned long);
9f8fcf38 80#else
e5083a63
JW
81static inline void __invalidate_icache_page_alias(unsigned long virt,
82 unsigned long phys) { }
9a8fd558
CZ
83#endif
84
85/*
86 * We have physically tagged caches - nothing to do here -
87 * unless we have cache aliasing.
88 *
89 * Pages can get remapped. Because this might change the 'color' of that page,
90 * we have to flush the cache before the PTE is changed.
91 * (see also Documentation/cachetlb.txt)
92 */
93
b6cee17b
MF
94#if defined(CONFIG_MMU) && \
95 ((DCACHE_WAY_SIZE > PAGE_SIZE) || defined(CONFIG_SMP))
f615136c
MF
96
97#ifdef CONFIG_SMP
98void flush_cache_all(void);
99void flush_cache_range(struct vm_area_struct*, ulong, ulong);
100void flush_icache_range(unsigned long start, unsigned long end);
101void flush_cache_page(struct vm_area_struct*,
102 unsigned long, unsigned long);
103#else
104#define flush_cache_all local_flush_cache_all
105#define flush_cache_range local_flush_cache_range
106#define flush_icache_range local_flush_icache_range
107#define flush_cache_page local_flush_cache_page
108#endif
9a8fd558 109
f615136c 110#define local_flush_cache_all() \
6656920b
CZ
111 do { \
112 __flush_invalidate_dcache_all(); \
113 __invalidate_icache_all(); \
114 } while (0)
9a8fd558 115
6656920b
CZ
116#define flush_cache_mm(mm) flush_cache_all()
117#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
9a8fd558 118
6656920b
CZ
119#define flush_cache_vmap(start,end) flush_cache_all()
120#define flush_cache_vunmap(start,end) flush_cache_all()
9a8fd558 121
2d4dc890 122#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
6656920b 123extern void flush_dcache_page(struct page*);
f615136c
MF
124
125void local_flush_cache_range(struct vm_area_struct *vma,
126 unsigned long start, unsigned long end);
127void local_flush_cache_page(struct vm_area_struct *vma,
128 unsigned long address, unsigned long pfn);
9a8fd558
CZ
129
130#else
131
132#define flush_cache_all() do { } while (0)
133#define flush_cache_mm(mm) do { } while (0)
ec8c0446 134#define flush_cache_dup_mm(mm) do { } while (0)
9a8fd558
CZ
135
136#define flush_cache_vmap(start,end) do { } while (0)
137#define flush_cache_vunmap(start,end) do { } while (0)
138
91e08063 139#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
9a8fd558
CZ
140#define flush_dcache_page(page) do { } while (0)
141
f615136c
MF
142#define flush_icache_range local_flush_icache_range
143#define flush_cache_page(vma, addr, pfn) do { } while (0)
144#define flush_cache_range(vma, start, end) do { } while (0)
9a8fd558
CZ
145
146#endif
147
6656920b 148/* Ensure consistency between data and instruction cache. */
f615136c 149#define local_flush_icache_range(start, end) \
6656920b
CZ
150 do { \
151 __flush_dcache_range(start, (end) - (start)); \
152 __invalidate_icache_range(start,(end) - (start)); \
153 } while (0)
9a8fd558
CZ
154
155/* This is not required, see Documentation/cachetlb.txt */
6656920b 156#define flush_icache_page(vma,page) do { } while (0)
9a8fd558
CZ
157
158#define flush_dcache_mmap_lock(mapping) do { } while (0)
159#define flush_dcache_mmap_unlock(mapping) do { } while (0)
160
b6cee17b 161#if defined(CONFIG_MMU) && (DCACHE_WAY_SIZE > PAGE_SIZE)
9a8fd558 162
6656920b
CZ
163extern void copy_to_user_page(struct vm_area_struct*, struct page*,
164 unsigned long, void*, const void*, unsigned long);
165extern void copy_from_user_page(struct vm_area_struct*, struct page*,
166 unsigned long, void*, const void*, unsigned long);
167
168#else
169
170#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
171 do { \
172 memcpy(dst, src, len); \
173 __flush_dcache_range((unsigned long) dst, len); \
174 __invalidate_icache_range((unsigned long) dst, len); \
175 } while (0)
9a8fd558
CZ
176
177#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
178 memcpy(dst, src, len)
179
6656920b 180#endif
9a8fd558
CZ
181
182#endif /* _XTENSA_CACHEFLUSH_H */