2 * linux/include/asm-arm/tlbflush.h
4 * Copyright (C) 1999-2003 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.
10 #ifndef _ASMARM_TLBFLUSH_H
11 #define _ASMARM_TLBFLUSH_H
13 #include <linux/config.h>
16 #define TLB_V3_PAGE (1 << 0)
17 #define TLB_V4_U_PAGE (1 << 1)
18 #define TLB_V4_D_PAGE (1 << 2)
19 #define TLB_V4_I_PAGE (1 << 3)
20 #define TLB_V6_U_PAGE (1 << 4)
21 #define TLB_V6_D_PAGE (1 << 5)
22 #define TLB_V6_I_PAGE (1 << 6)
24 #define TLB_V3_FULL (1 << 8)
25 #define TLB_V4_U_FULL (1 << 9)
26 #define TLB_V4_D_FULL (1 << 10)
27 #define TLB_V4_I_FULL (1 << 11)
28 #define TLB_V6_U_FULL (1 << 12)
29 #define TLB_V6_D_FULL (1 << 13)
30 #define TLB_V6_I_FULL (1 << 14)
32 #define TLB_V6_U_ASID (1 << 16)
33 #define TLB_V6_D_ASID (1 << 17)
34 #define TLB_V6_I_ASID (1 << 18)
36 #define TLB_DCLEAN (1 << 30)
37 #define TLB_WB (1 << 31)
43 * We have the following to choose from:
45 * v4 - ARMv4 without write buffer
46 * v4wb - ARMv4 with write buffer without I TLB flush entry instruction
47 * v4wbi - ARMv4 with write buffer with I TLB flush entry instruction
48 * v6wbi - ARMv6 with write buffer with I TLB flush entry instruction
53 #define v3_tlb_flags (TLB_V3_FULL | TLB_V3_PAGE)
55 #ifdef CONFIG_CPU_TLB_V3
56 # define v3_possible_flags v3_tlb_flags
57 # define v3_always_flags v3_tlb_flags
64 # define v3_possible_flags 0
65 # define v3_always_flags (-1UL)
68 #define v4_tlb_flags (TLB_V4_U_FULL | TLB_V4_U_PAGE)
70 #ifdef CONFIG_CPU_TLB_V4WT
71 # define v4_possible_flags v4_tlb_flags
72 # define v4_always_flags v4_tlb_flags
79 # define v4_possible_flags 0
80 # define v4_always_flags (-1UL)
83 #define v4wbi_tlb_flags (TLB_WB | TLB_DCLEAN | \
84 TLB_V4_I_FULL | TLB_V4_D_FULL | \
85 TLB_V4_I_PAGE | TLB_V4_D_PAGE)
87 #ifdef CONFIG_CPU_TLB_V4WBI
88 # define v4wbi_possible_flags v4wbi_tlb_flags
89 # define v4wbi_always_flags v4wbi_tlb_flags
96 # define v4wbi_possible_flags 0
97 # define v4wbi_always_flags (-1UL)
100 #define v4wb_tlb_flags (TLB_WB | TLB_DCLEAN | \
101 TLB_V4_I_FULL | TLB_V4_D_FULL | \
104 #ifdef CONFIG_CPU_TLB_V4WB
105 # define v4wb_possible_flags v4wb_tlb_flags
106 # define v4wb_always_flags v4wb_tlb_flags
113 # define v4wb_possible_flags 0
114 # define v4wb_always_flags (-1UL)
117 #define v6wbi_tlb_flags (TLB_WB | TLB_DCLEAN | \
118 TLB_V6_I_FULL | TLB_V6_D_FULL | \
119 TLB_V6_I_PAGE | TLB_V6_D_PAGE | \
120 TLB_V6_I_ASID | TLB_V6_D_ASID)
122 #ifdef CONFIG_CPU_TLB_V6
123 # define v6wbi_possible_flags v6wbi_tlb_flags
124 # define v6wbi_always_flags v6wbi_tlb_flags
131 # define v6wbi_possible_flags 0
132 # define v6wbi_always_flags (-1UL)
136 #error Unknown TLB model
142 void (*flush_user_range
)(unsigned long, unsigned long, struct vm_area_struct
*);
143 void (*flush_kern_range
)(unsigned long, unsigned long);
144 unsigned long tlb_flags
;
148 * Select the calling method
152 #define __cpu_flush_user_tlb_range cpu_tlb.flush_user_range
153 #define __cpu_flush_kern_tlb_range cpu_tlb.flush_kern_range
157 #define __cpu_flush_user_tlb_range __glue(_TLB,_flush_user_tlb_range)
158 #define __cpu_flush_kern_tlb_range __glue(_TLB,_flush_kern_tlb_range)
160 extern void __cpu_flush_user_tlb_range(unsigned long, unsigned long, struct vm_area_struct
*);
161 extern void __cpu_flush_kern_tlb_range(unsigned long, unsigned long);
165 extern struct cpu_tlb_fns cpu_tlb
;
167 #define __cpu_tlb_flags cpu_tlb.tlb_flags
173 * The arch/arm/mm/tlb-*.S files implement these methods.
175 * The TLB specific code is expected to perform whatever tests it
176 * needs to determine if it should invalidate the TLB for each
177 * call. Start addresses are inclusive and end addresses are
178 * exclusive; it is safe to round these addresses down.
182 * Invalidate the entire TLB.
186 * Invalidate all TLB entries in a particular address
188 * - mm - mm_struct describing address space
190 * flush_tlb_range(mm,start,end)
192 * Invalidate a range of TLB entries in the specified
194 * - mm - mm_struct describing address space
195 * - start - start address (may not be aligned)
196 * - end - end address (exclusive, may not be aligned)
198 * flush_tlb_page(vaddr,vma)
200 * Invalidate the specified page in the specified address range.
201 * - vaddr - virtual address (may not be aligned)
202 * - vma - vma_struct describing address range
204 * flush_kern_tlb_page(kaddr)
206 * Invalidate the TLB entry for the specified page. The address
207 * will be in the kernels virtual memory space. Current uses
208 * only require the D-TLB to be invalidated.
209 * - kaddr - Kernel virtual memory address
213 * We optimise the code below by:
214 * - building a set of TLB flags that might be set in __cpu_tlb_flags
215 * - building a set of TLB flags that will always be set in __cpu_tlb_flags
216 * - if we're going to need __cpu_tlb_flags, access it once and only once
218 * This allows us to build optimal assembly for the single-CPU type case,
219 * and as close to optimal given the compiler constrants for multi-CPU
220 * case. We could do better for the multi-CPU case if the compiler
221 * implemented the "%?" method, but this has been discontinued due to too
222 * many people getting it wrong.
224 #define possible_tlb_flags (v3_possible_flags | \
225 v4_possible_flags | \
226 v4wbi_possible_flags | \
227 v4wb_possible_flags | \
228 v6wbi_possible_flags)
230 #define always_tlb_flags (v3_always_flags & \
232 v4wbi_always_flags & \
233 v4wb_always_flags & \
236 #define tlb_flag(f) ((always_tlb_flags & (f)) || (__tlb_flag & possible_tlb_flags & (f)))
238 static inline void local_flush_tlb_all(void)
241 const unsigned int __tlb_flag
= __cpu_tlb_flags
;
243 if (tlb_flag(TLB_WB
))
244 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero
));
246 if (tlb_flag(TLB_V3_FULL
))
247 asm("mcr%? p15, 0, %0, c6, c0, 0" : : "r" (zero
));
248 if (tlb_flag(TLB_V4_U_FULL
| TLB_V6_U_FULL
))
249 asm("mcr%? p15, 0, %0, c8, c7, 0" : : "r" (zero
));
250 if (tlb_flag(TLB_V4_D_FULL
| TLB_V6_D_FULL
))
251 asm("mcr%? p15, 0, %0, c8, c6, 0" : : "r" (zero
));
252 if (tlb_flag(TLB_V4_I_FULL
| TLB_V6_I_FULL
))
253 asm("mcr%? p15, 0, %0, c8, c5, 0" : : "r" (zero
));
256 static inline void local_flush_tlb_mm(struct mm_struct
*mm
)
259 const int asid
= ASID(mm
);
260 const unsigned int __tlb_flag
= __cpu_tlb_flags
;
262 if (tlb_flag(TLB_WB
))
263 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero
));
265 if (cpu_isset(smp_processor_id(), mm
->cpu_vm_mask
)) {
266 if (tlb_flag(TLB_V3_FULL
))
267 asm("mcr%? p15, 0, %0, c6, c0, 0" : : "r" (zero
));
268 if (tlb_flag(TLB_V4_U_FULL
))
269 asm("mcr%? p15, 0, %0, c8, c7, 0" : : "r" (zero
));
270 if (tlb_flag(TLB_V4_D_FULL
))
271 asm("mcr%? p15, 0, %0, c8, c6, 0" : : "r" (zero
));
272 if (tlb_flag(TLB_V4_I_FULL
))
273 asm("mcr%? p15, 0, %0, c8, c5, 0" : : "r" (zero
));
276 if (tlb_flag(TLB_V6_U_ASID
))
277 asm("mcr%? p15, 0, %0, c8, c7, 2" : : "r" (asid
));
278 if (tlb_flag(TLB_V6_D_ASID
))
279 asm("mcr%? p15, 0, %0, c8, c6, 2" : : "r" (asid
));
280 if (tlb_flag(TLB_V6_I_ASID
))
281 asm("mcr%? p15, 0, %0, c8, c5, 2" : : "r" (asid
));
285 local_flush_tlb_page(struct vm_area_struct
*vma
, unsigned long uaddr
)
288 const unsigned int __tlb_flag
= __cpu_tlb_flags
;
290 uaddr
= (uaddr
& PAGE_MASK
) | ASID(vma
->vm_mm
);
292 if (tlb_flag(TLB_WB
))
293 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero
));
295 if (cpu_isset(smp_processor_id(), vma
->vm_mm
->cpu_vm_mask
)) {
296 if (tlb_flag(TLB_V3_PAGE
))
297 asm("mcr%? p15, 0, %0, c6, c0, 0" : : "r" (uaddr
));
298 if (tlb_flag(TLB_V4_U_PAGE
))
299 asm("mcr%? p15, 0, %0, c8, c7, 1" : : "r" (uaddr
));
300 if (tlb_flag(TLB_V4_D_PAGE
))
301 asm("mcr%? p15, 0, %0, c8, c6, 1" : : "r" (uaddr
));
302 if (tlb_flag(TLB_V4_I_PAGE
))
303 asm("mcr%? p15, 0, %0, c8, c5, 1" : : "r" (uaddr
));
304 if (!tlb_flag(TLB_V4_I_PAGE
) && tlb_flag(TLB_V4_I_FULL
))
305 asm("mcr%? p15, 0, %0, c8, c5, 0" : : "r" (zero
));
308 if (tlb_flag(TLB_V6_U_PAGE
))
309 asm("mcr%? p15, 0, %0, c8, c7, 1" : : "r" (uaddr
));
310 if (tlb_flag(TLB_V6_D_PAGE
))
311 asm("mcr%? p15, 0, %0, c8, c6, 1" : : "r" (uaddr
));
312 if (tlb_flag(TLB_V6_I_PAGE
))
313 asm("mcr%? p15, 0, %0, c8, c5, 1" : : "r" (uaddr
));
316 static inline void local_flush_tlb_kernel_page(unsigned long kaddr
)
319 const unsigned int __tlb_flag
= __cpu_tlb_flags
;
323 if (tlb_flag(TLB_WB
))
324 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero
));
326 if (tlb_flag(TLB_V3_PAGE
))
327 asm("mcr%? p15, 0, %0, c6, c0, 0" : : "r" (kaddr
));
328 if (tlb_flag(TLB_V4_U_PAGE
))
329 asm("mcr%? p15, 0, %0, c8, c7, 1" : : "r" (kaddr
));
330 if (tlb_flag(TLB_V4_D_PAGE
))
331 asm("mcr%? p15, 0, %0, c8, c6, 1" : : "r" (kaddr
));
332 if (tlb_flag(TLB_V4_I_PAGE
))
333 asm("mcr%? p15, 0, %0, c8, c5, 1" : : "r" (kaddr
));
334 if (!tlb_flag(TLB_V4_I_PAGE
) && tlb_flag(TLB_V4_I_FULL
))
335 asm("mcr%? p15, 0, %0, c8, c5, 0" : : "r" (zero
));
337 if (tlb_flag(TLB_V6_U_PAGE
))
338 asm("mcr%? p15, 0, %0, c8, c7, 1" : : "r" (kaddr
));
339 if (tlb_flag(TLB_V6_D_PAGE
))
340 asm("mcr%? p15, 0, %0, c8, c6, 1" : : "r" (kaddr
));
341 if (tlb_flag(TLB_V6_I_PAGE
))
342 asm("mcr%? p15, 0, %0, c8, c5, 1" : : "r" (kaddr
));
344 /* The ARM ARM states that the completion of a TLB maintenance
345 * operation is only guaranteed by a DSB instruction
347 if (tlb_flag(TLB_V6_U_PAGE
| TLB_V6_D_PAGE
| TLB_V6_I_PAGE
))
348 asm("mcr%? p15, 0, %0, c7, c10, 4" : : "r" (zero
));
354 * Flush a PMD entry (word aligned, or double-word aligned) to
355 * RAM if the TLB for the CPU we are running on requires this.
356 * This is typically used when we are creating PMD entries.
360 * Clean (but don't drain the write buffer) if the CPU requires
361 * these operations. This is typically used when we are removing
364 static inline void flush_pmd_entry(pmd_t
*pmd
)
366 const unsigned int zero
= 0;
367 const unsigned int __tlb_flag
= __cpu_tlb_flags
;
369 if (tlb_flag(TLB_DCLEAN
))
370 asm("mcr%? p15, 0, %0, c7, c10, 1 @ flush_pmd"
372 if (tlb_flag(TLB_WB
))
373 asm("mcr%? p15, 0, %0, c7, c10, 4 @ flush_pmd"
377 static inline void clean_pmd_entry(pmd_t
*pmd
)
379 const unsigned int __tlb_flag
= __cpu_tlb_flags
;
381 if (tlb_flag(TLB_DCLEAN
))
382 asm("mcr%? p15, 0, %0, c7, c10, 1 @ flush_pmd"
387 #undef always_tlb_flags
388 #undef possible_tlb_flags
391 * Convert calls to our calling convention.
393 #define local_flush_tlb_range(vma,start,end) __cpu_flush_user_tlb_range(start,end,vma)
394 #define local_flush_tlb_kernel_range(s,e) __cpu_flush_kern_tlb_range(s,e)
397 #define flush_tlb_all local_flush_tlb_all
398 #define flush_tlb_mm local_flush_tlb_mm
399 #define flush_tlb_page local_flush_tlb_page
400 #define flush_tlb_kernel_page local_flush_tlb_kernel_page
401 #define flush_tlb_range local_flush_tlb_range
402 #define flush_tlb_kernel_range local_flush_tlb_kernel_range
404 extern void flush_tlb_all(void);
405 extern void flush_tlb_mm(struct mm_struct
*mm
);
406 extern void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long uaddr
);
407 extern void flush_tlb_kernel_page(unsigned long kaddr
);
408 extern void flush_tlb_range(struct vm_area_struct
*vma
, unsigned long start
, unsigned long end
);
409 extern void flush_tlb_kernel_range(unsigned long start
, unsigned long end
);
413 * if PG_dcache_dirty is set for the page, we need to ensure that any
414 * cache entries for the kernels virtual memory range are written
417 extern void update_mmu_cache(struct vm_area_struct
*vma
, unsigned long addr
, pte_t pte
);
420 * ARM processors do not cache TLB tables in RAM.
422 #define flush_tlb_pgtables(mm,start,end) do { } while (0)