Loading...
1/*
2 * arch/arm/include/asm/tlbflush.h
3 *
4 * Copyright (C) 1999-2003 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_TLBFLUSH_H
11#define _ASMARM_TLBFLUSH_H
12
13#ifdef CONFIG_MMU
14
15#include <asm/glue.h>
16
17#define TLB_V3_PAGE (1 << 0)
18#define TLB_V4_U_PAGE (1 << 1)
19#define TLB_V4_D_PAGE (1 << 2)
20#define TLB_V4_I_PAGE (1 << 3)
21#define TLB_V6_U_PAGE (1 << 4)
22#define TLB_V6_D_PAGE (1 << 5)
23#define TLB_V6_I_PAGE (1 << 6)
24
25#define TLB_V3_FULL (1 << 8)
26#define TLB_V4_U_FULL (1 << 9)
27#define TLB_V4_D_FULL (1 << 10)
28#define TLB_V4_I_FULL (1 << 11)
29#define TLB_V6_U_FULL (1 << 12)
30#define TLB_V6_D_FULL (1 << 13)
31#define TLB_V6_I_FULL (1 << 14)
32
33#define TLB_V6_U_ASID (1 << 16)
34#define TLB_V6_D_ASID (1 << 17)
35#define TLB_V6_I_ASID (1 << 18)
36
37/* Unified Inner Shareable TLB operations (ARMv7 MP extensions) */
38#define TLB_V7_UIS_PAGE (1 << 19)
39#define TLB_V7_UIS_FULL (1 << 20)
40#define TLB_V7_UIS_ASID (1 << 21)
41
42#define TLB_BARRIER (1 << 28)
43#define TLB_L2CLEAN_FR (1 << 29) /* Feroceon */
44#define TLB_DCLEAN (1 << 30)
45#define TLB_WB (1 << 31)
46
47/*
48 * MMU TLB Model
49 * =============
50 *
51 * We have the following to choose from:
52 * v3 - ARMv3
53 * v4 - ARMv4 without write buffer
54 * v4wb - ARMv4 with write buffer without I TLB flush entry instruction
55 * v4wbi - ARMv4 with write buffer with I TLB flush entry instruction
56 * fr - Feroceon (v4wbi with non-outer-cacheable page table walks)
57 * fa - Faraday (v4 with write buffer with UTLB)
58 * v6wbi - ARMv6 with write buffer with I TLB flush entry instruction
59 * v7wbi - identical to v6wbi
60 */
61#undef _TLB
62#undef MULTI_TLB
63
64#ifdef CONFIG_SMP_ON_UP
65#define MULTI_TLB 1
66#endif
67
68#define v4_tlb_flags (TLB_V4_U_FULL | TLB_V4_U_PAGE)
69
70#ifdef CONFIG_CPU_TLB_V4WT
71# define v4_possible_flags v4_tlb_flags
72# define v4_always_flags v4_tlb_flags
73# ifdef _TLB
74# define MULTI_TLB 1
75# else
76# define _TLB v4
77# endif
78#else
79# define v4_possible_flags 0
80# define v4_always_flags (-1UL)
81#endif
82
83#define fa_tlb_flags (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
84 TLB_V4_U_FULL | TLB_V4_U_PAGE)
85
86#ifdef CONFIG_CPU_TLB_FA
87# define fa_possible_flags fa_tlb_flags
88# define fa_always_flags fa_tlb_flags
89# ifdef _TLB
90# define MULTI_TLB 1
91# else
92# define _TLB fa
93# endif
94#else
95# define fa_possible_flags 0
96# define fa_always_flags (-1UL)
97#endif
98
99#define v4wbi_tlb_flags (TLB_WB | TLB_DCLEAN | \
100 TLB_V4_I_FULL | TLB_V4_D_FULL | \
101 TLB_V4_I_PAGE | TLB_V4_D_PAGE)
102
103#ifdef CONFIG_CPU_TLB_V4WBI
104# define v4wbi_possible_flags v4wbi_tlb_flags
105# define v4wbi_always_flags v4wbi_tlb_flags
106# ifdef _TLB
107# define MULTI_TLB 1
108# else
109# define _TLB v4wbi
110# endif
111#else
112# define v4wbi_possible_flags 0
113# define v4wbi_always_flags (-1UL)
114#endif
115
116#define fr_tlb_flags (TLB_WB | TLB_DCLEAN | TLB_L2CLEAN_FR | \
117 TLB_V4_I_FULL | TLB_V4_D_FULL | \
118 TLB_V4_I_PAGE | TLB_V4_D_PAGE)
119
120#ifdef CONFIG_CPU_TLB_FEROCEON
121# define fr_possible_flags fr_tlb_flags
122# define fr_always_flags fr_tlb_flags
123# ifdef _TLB
124# define MULTI_TLB 1
125# else
126# define _TLB v4wbi
127# endif
128#else
129# define fr_possible_flags 0
130# define fr_always_flags (-1UL)
131#endif
132
133#define v4wb_tlb_flags (TLB_WB | TLB_DCLEAN | \
134 TLB_V4_I_FULL | TLB_V4_D_FULL | \
135 TLB_V4_D_PAGE)
136
137#ifdef CONFIG_CPU_TLB_V4WB
138# define v4wb_possible_flags v4wb_tlb_flags
139# define v4wb_always_flags v4wb_tlb_flags
140# ifdef _TLB
141# define MULTI_TLB 1
142# else
143# define _TLB v4wb
144# endif
145#else
146# define v4wb_possible_flags 0
147# define v4wb_always_flags (-1UL)
148#endif
149
150#define v6wbi_tlb_flags (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
151 TLB_V6_I_FULL | TLB_V6_D_FULL | \
152 TLB_V6_I_PAGE | TLB_V6_D_PAGE | \
153 TLB_V6_I_ASID | TLB_V6_D_ASID)
154
155#ifdef CONFIG_CPU_TLB_V6
156# define v6wbi_possible_flags v6wbi_tlb_flags
157# define v6wbi_always_flags v6wbi_tlb_flags
158# ifdef _TLB
159# define MULTI_TLB 1
160# else
161# define _TLB v6wbi
162# endif
163#else
164# define v6wbi_possible_flags 0
165# define v6wbi_always_flags (-1UL)
166#endif
167
168#define v7wbi_tlb_flags_smp (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
169 TLB_V7_UIS_FULL | TLB_V7_UIS_PAGE | TLB_V7_UIS_ASID)
170#define v7wbi_tlb_flags_up (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
171 TLB_V6_U_FULL | TLB_V6_U_PAGE | TLB_V6_U_ASID)
172
173#ifdef CONFIG_CPU_TLB_V7
174
175# ifdef CONFIG_SMP_ON_UP
176# define v7wbi_possible_flags (v7wbi_tlb_flags_smp | v7wbi_tlb_flags_up)
177# define v7wbi_always_flags (v7wbi_tlb_flags_smp & v7wbi_tlb_flags_up)
178# elif defined(CONFIG_SMP)
179# define v7wbi_possible_flags v7wbi_tlb_flags_smp
180# define v7wbi_always_flags v7wbi_tlb_flags_smp
181# else
182# define v7wbi_possible_flags v7wbi_tlb_flags_up
183# define v7wbi_always_flags v7wbi_tlb_flags_up
184# endif
185# ifdef _TLB
186# define MULTI_TLB 1
187# else
188# define _TLB v7wbi
189# endif
190#else
191# define v7wbi_possible_flags 0
192# define v7wbi_always_flags (-1UL)
193#endif
194
195#ifndef _TLB
196#error Unknown TLB model
197#endif
198
199#ifndef __ASSEMBLY__
200
201#include <linux/sched.h>
202
203struct cpu_tlb_fns {
204 void (*flush_user_range)(unsigned long, unsigned long, struct vm_area_struct *);
205 void (*flush_kern_range)(unsigned long, unsigned long);
206 unsigned long tlb_flags;
207};
208
209/*
210 * Select the calling method
211 */
212#ifdef MULTI_TLB
213
214#define __cpu_flush_user_tlb_range cpu_tlb.flush_user_range
215#define __cpu_flush_kern_tlb_range cpu_tlb.flush_kern_range
216
217#else
218
219#define __cpu_flush_user_tlb_range __glue(_TLB,_flush_user_tlb_range)
220#define __cpu_flush_kern_tlb_range __glue(_TLB,_flush_kern_tlb_range)
221
222extern void __cpu_flush_user_tlb_range(unsigned long, unsigned long, struct vm_area_struct *);
223extern void __cpu_flush_kern_tlb_range(unsigned long, unsigned long);
224
225#endif
226
227extern struct cpu_tlb_fns cpu_tlb;
228
229#define __cpu_tlb_flags cpu_tlb.tlb_flags
230
231/*
232 * TLB Management
233 * ==============
234 *
235 * The arch/arm/mm/tlb-*.S files implement these methods.
236 *
237 * The TLB specific code is expected to perform whatever tests it
238 * needs to determine if it should invalidate the TLB for each
239 * call. Start addresses are inclusive and end addresses are
240 * exclusive; it is safe to round these addresses down.
241 *
242 * flush_tlb_all()
243 *
244 * Invalidate the entire TLB.
245 *
246 * flush_tlb_mm(mm)
247 *
248 * Invalidate all TLB entries in a particular address
249 * space.
250 * - mm - mm_struct describing address space
251 *
252 * flush_tlb_range(mm,start,end)
253 *
254 * Invalidate a range of TLB entries in the specified
255 * address space.
256 * - mm - mm_struct describing address space
257 * - start - start address (may not be aligned)
258 * - end - end address (exclusive, may not be aligned)
259 *
260 * flush_tlb_page(vaddr,vma)
261 *
262 * Invalidate the specified page in the specified address range.
263 * - vaddr - virtual address (may not be aligned)
264 * - vma - vma_struct describing address range
265 *
266 * flush_kern_tlb_page(kaddr)
267 *
268 * Invalidate the TLB entry for the specified page. The address
269 * will be in the kernels virtual memory space. Current uses
270 * only require the D-TLB to be invalidated.
271 * - kaddr - Kernel virtual memory address
272 */
273
274/*
275 * We optimise the code below by:
276 * - building a set of TLB flags that might be set in __cpu_tlb_flags
277 * - building a set of TLB flags that will always be set in __cpu_tlb_flags
278 * - if we're going to need __cpu_tlb_flags, access it once and only once
279 *
280 * This allows us to build optimal assembly for the single-CPU type case,
281 * and as close to optimal given the compiler constrants for multi-CPU
282 * case. We could do better for the multi-CPU case if the compiler
283 * implemented the "%?" method, but this has been discontinued due to too
284 * many people getting it wrong.
285 */
286#define possible_tlb_flags (v4_possible_flags | \
287 v4wbi_possible_flags | \
288 fr_possible_flags | \
289 v4wb_possible_flags | \
290 fa_possible_flags | \
291 v6wbi_possible_flags | \
292 v7wbi_possible_flags)
293
294#define always_tlb_flags (v4_always_flags & \
295 v4wbi_always_flags & \
296 fr_always_flags & \
297 v4wb_always_flags & \
298 fa_always_flags & \
299 v6wbi_always_flags & \
300 v7wbi_always_flags)
301
302#define tlb_flag(f) ((always_tlb_flags & (f)) || (__tlb_flag & possible_tlb_flags & (f)))
303
304#define __tlb_op(f, insnarg, arg) \
305 do { \
306 if (always_tlb_flags & (f)) \
307 asm("mcr " insnarg \
308 : : "r" (arg) : "cc"); \
309 else if (possible_tlb_flags & (f)) \
310 asm("tst %1, %2\n\t" \
311 "mcrne " insnarg \
312 : : "r" (arg), "r" (__tlb_flag), "Ir" (f) \
313 : "cc"); \
314 } while (0)
315
316#define tlb_op(f, regs, arg) __tlb_op(f, "p15, 0, %0, " regs, arg)
317#define tlb_l2_op(f, regs, arg) __tlb_op(f, "p15, 1, %0, " regs, arg)
318
319static inline void local_flush_tlb_all(void)
320{
321 const int zero = 0;
322 const unsigned int __tlb_flag = __cpu_tlb_flags;
323
324 if (tlb_flag(TLB_WB))
325 dsb();
326
327 tlb_op(TLB_V3_FULL, "c6, c0, 0", zero);
328 tlb_op(TLB_V4_U_FULL | TLB_V6_U_FULL, "c8, c7, 0", zero);
329 tlb_op(TLB_V4_D_FULL | TLB_V6_D_FULL, "c8, c6, 0", zero);
330 tlb_op(TLB_V4_I_FULL | TLB_V6_I_FULL, "c8, c5, 0", zero);
331 tlb_op(TLB_V7_UIS_FULL, "c8, c3, 0", zero);
332
333 if (tlb_flag(TLB_BARRIER)) {
334 dsb();
335 isb();
336 }
337}
338
339static inline void local_flush_tlb_mm(struct mm_struct *mm)
340{
341 const int zero = 0;
342 const int asid = ASID(mm);
343 const unsigned int __tlb_flag = __cpu_tlb_flags;
344
345 if (tlb_flag(TLB_WB))
346 dsb();
347
348 if (possible_tlb_flags & (TLB_V3_FULL|TLB_V4_U_FULL|TLB_V4_D_FULL|TLB_V4_I_FULL)) {
349 if (cpumask_test_cpu(get_cpu(), mm_cpumask(mm))) {
350 tlb_op(TLB_V3_FULL, "c6, c0, 0", zero);
351 tlb_op(TLB_V4_U_FULL, "c8, c7, 0", zero);
352 tlb_op(TLB_V4_D_FULL, "c8, c6, 0", zero);
353 tlb_op(TLB_V4_I_FULL, "c8, c5, 0", zero);
354 }
355 put_cpu();
356 }
357
358 tlb_op(TLB_V6_U_ASID, "c8, c7, 2", asid);
359 tlb_op(TLB_V6_D_ASID, "c8, c6, 2", asid);
360 tlb_op(TLB_V6_I_ASID, "c8, c5, 2", asid);
361#ifdef CONFIG_ARM_ERRATA_720789
362 tlb_op(TLB_V7_UIS_ASID, "c8, c3, 0", zero);
363#else
364 tlb_op(TLB_V7_UIS_ASID, "c8, c3, 2", asid);
365#endif
366
367 if (tlb_flag(TLB_BARRIER))
368 dsb();
369}
370
371static inline void
372local_flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
373{
374 const int zero = 0;
375 const unsigned int __tlb_flag = __cpu_tlb_flags;
376
377 uaddr = (uaddr & PAGE_MASK) | ASID(vma->vm_mm);
378
379 if (tlb_flag(TLB_WB))
380 dsb();
381
382 if (possible_tlb_flags & (TLB_V3_PAGE|TLB_V4_U_PAGE|TLB_V4_D_PAGE|TLB_V4_I_PAGE|TLB_V4_I_FULL) &&
383 cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
384 tlb_op(TLB_V3_PAGE, "c6, c0, 0", uaddr);
385 tlb_op(TLB_V4_U_PAGE, "c8, c7, 1", uaddr);
386 tlb_op(TLB_V4_D_PAGE, "c8, c6, 1", uaddr);
387 tlb_op(TLB_V4_I_PAGE, "c8, c5, 1", uaddr);
388 if (!tlb_flag(TLB_V4_I_PAGE) && tlb_flag(TLB_V4_I_FULL))
389 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
390 }
391
392 tlb_op(TLB_V6_U_PAGE, "c8, c7, 1", uaddr);
393 tlb_op(TLB_V6_D_PAGE, "c8, c6, 1", uaddr);
394 tlb_op(TLB_V6_I_PAGE, "c8, c5, 1", uaddr);
395#ifdef CONFIG_ARM_ERRATA_720789
396 tlb_op(TLB_V7_UIS_PAGE, "c8, c3, 3", uaddr & PAGE_MASK);
397#else
398 tlb_op(TLB_V7_UIS_PAGE, "c8, c3, 1", uaddr);
399#endif
400
401 if (tlb_flag(TLB_BARRIER))
402 dsb();
403}
404
405static inline void local_flush_tlb_kernel_page(unsigned long kaddr)
406{
407 const int zero = 0;
408 const unsigned int __tlb_flag = __cpu_tlb_flags;
409
410 kaddr &= PAGE_MASK;
411
412 if (tlb_flag(TLB_WB))
413 dsb();
414
415 tlb_op(TLB_V3_PAGE, "c6, c0, 0", kaddr);
416 tlb_op(TLB_V4_U_PAGE, "c8, c7, 1", kaddr);
417 tlb_op(TLB_V4_D_PAGE, "c8, c6, 1", kaddr);
418 tlb_op(TLB_V4_I_PAGE, "c8, c5, 1", kaddr);
419 if (!tlb_flag(TLB_V4_I_PAGE) && tlb_flag(TLB_V4_I_FULL))
420 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
421
422 tlb_op(TLB_V6_U_PAGE, "c8, c7, 1", kaddr);
423 tlb_op(TLB_V6_D_PAGE, "c8, c6, 1", kaddr);
424 tlb_op(TLB_V6_I_PAGE, "c8, c5, 1", kaddr);
425 tlb_op(TLB_V7_UIS_PAGE, "c8, c3, 1", kaddr);
426
427 if (tlb_flag(TLB_BARRIER)) {
428 dsb();
429 isb();
430 }
431}
432
433/*
434 * flush_pmd_entry
435 *
436 * Flush a PMD entry (word aligned, or double-word aligned) to
437 * RAM if the TLB for the CPU we are running on requires this.
438 * This is typically used when we are creating PMD entries.
439 *
440 * clean_pmd_entry
441 *
442 * Clean (but don't drain the write buffer) if the CPU requires
443 * these operations. This is typically used when we are removing
444 * PMD entries.
445 */
446static inline void flush_pmd_entry(void *pmd)
447{
448 const unsigned int __tlb_flag = __cpu_tlb_flags;
449
450 tlb_op(TLB_DCLEAN, "c7, c10, 1 @ flush_pmd", pmd);
451 tlb_l2_op(TLB_L2CLEAN_FR, "c15, c9, 1 @ L2 flush_pmd", pmd);
452
453 if (tlb_flag(TLB_WB))
454 dsb();
455}
456
457static inline void clean_pmd_entry(void *pmd)
458{
459 const unsigned int __tlb_flag = __cpu_tlb_flags;
460
461 tlb_op(TLB_DCLEAN, "c7, c10, 1 @ flush_pmd", pmd);
462 tlb_l2_op(TLB_L2CLEAN_FR, "c15, c9, 1 @ L2 flush_pmd", pmd);
463}
464
465#undef tlb_op
466#undef tlb_flag
467#undef always_tlb_flags
468#undef possible_tlb_flags
469
470/*
471 * Convert calls to our calling convention.
472 */
473#define local_flush_tlb_range(vma,start,end) __cpu_flush_user_tlb_range(start,end,vma)
474#define local_flush_tlb_kernel_range(s,e) __cpu_flush_kern_tlb_range(s,e)
475
476#ifndef CONFIG_SMP
477#define flush_tlb_all local_flush_tlb_all
478#define flush_tlb_mm local_flush_tlb_mm
479#define flush_tlb_page local_flush_tlb_page
480#define flush_tlb_kernel_page local_flush_tlb_kernel_page
481#define flush_tlb_range local_flush_tlb_range
482#define flush_tlb_kernel_range local_flush_tlb_kernel_range
483#else
484extern void flush_tlb_all(void);
485extern void flush_tlb_mm(struct mm_struct *mm);
486extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr);
487extern void flush_tlb_kernel_page(unsigned long kaddr);
488extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
489extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
490#endif
491
492/*
493 * If PG_dcache_clean is not set for the page, we need to ensure that any
494 * cache entries for the kernels virtual memory range are written
495 * back to the page. On ARMv6 and later, the cache coherency is handled via
496 * the set_pte_at() function.
497 */
498#if __LINUX_ARM_ARCH__ < 6
499extern void update_mmu_cache(struct vm_area_struct *vma, unsigned long addr,
500 pte_t *ptep);
501#else
502static inline void update_mmu_cache(struct vm_area_struct *vma,
503 unsigned long addr, pte_t *ptep)
504{
505}
506#endif
507
508#endif
509
510#endif /* CONFIG_MMU */
511
512#endif
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * arch/arm/include/asm/tlbflush.h
4 *
5 * Copyright (C) 1999-2003 Russell King
6 */
7#ifndef _ASMARM_TLBFLUSH_H
8#define _ASMARM_TLBFLUSH_H
9
10#ifndef __ASSEMBLY__
11# include <linux/mm_types.h>
12#endif
13
14#ifdef CONFIG_MMU
15
16#include <asm/glue.h>
17
18#define TLB_V4_U_PAGE (1 << 1)
19#define TLB_V4_D_PAGE (1 << 2)
20#define TLB_V4_I_PAGE (1 << 3)
21#define TLB_V6_U_PAGE (1 << 4)
22#define TLB_V6_D_PAGE (1 << 5)
23#define TLB_V6_I_PAGE (1 << 6)
24
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)
31
32#define TLB_V6_U_ASID (1 << 16)
33#define TLB_V6_D_ASID (1 << 17)
34#define TLB_V6_I_ASID (1 << 18)
35
36#define TLB_V6_BP (1 << 19)
37
38/* Unified Inner Shareable TLB operations (ARMv7 MP extensions) */
39#define TLB_V7_UIS_PAGE (1 << 20)
40#define TLB_V7_UIS_FULL (1 << 21)
41#define TLB_V7_UIS_ASID (1 << 22)
42#define TLB_V7_UIS_BP (1 << 23)
43
44#define TLB_BARRIER (1 << 28)
45#define TLB_L2CLEAN_FR (1 << 29) /* Feroceon */
46#define TLB_DCLEAN (1 << 30)
47#define TLB_WB (1 << 31)
48
49/*
50 * MMU TLB Model
51 * =============
52 *
53 * We have the following to choose from:
54 * v4 - ARMv4 without write buffer
55 * v4wb - ARMv4 with write buffer without I TLB flush entry instruction
56 * v4wbi - ARMv4 with write buffer with I TLB flush entry instruction
57 * fr - Feroceon (v4wbi with non-outer-cacheable page table walks)
58 * fa - Faraday (v4 with write buffer with UTLB)
59 * v6wbi - ARMv6 with write buffer with I TLB flush entry instruction
60 * v7wbi - identical to v6wbi
61 */
62#undef _TLB
63#undef MULTI_TLB
64
65#ifdef CONFIG_SMP_ON_UP
66#define MULTI_TLB 1
67#endif
68
69#define v4_tlb_flags (TLB_V4_U_FULL | TLB_V4_U_PAGE)
70
71#ifdef CONFIG_CPU_TLB_V4WT
72# define v4_possible_flags v4_tlb_flags
73# define v4_always_flags v4_tlb_flags
74# ifdef _TLB
75# define MULTI_TLB 1
76# else
77# define _TLB v4
78# endif
79#else
80# define v4_possible_flags 0
81# define v4_always_flags (-1UL)
82#endif
83
84#define fa_tlb_flags (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
85 TLB_V4_U_FULL | TLB_V4_U_PAGE)
86
87#ifdef CONFIG_CPU_TLB_FA
88# define fa_possible_flags fa_tlb_flags
89# define fa_always_flags fa_tlb_flags
90# ifdef _TLB
91# define MULTI_TLB 1
92# else
93# define _TLB fa
94# endif
95#else
96# define fa_possible_flags 0
97# define fa_always_flags (-1UL)
98#endif
99
100#define v4wbi_tlb_flags (TLB_WB | TLB_DCLEAN | \
101 TLB_V4_I_FULL | TLB_V4_D_FULL | \
102 TLB_V4_I_PAGE | TLB_V4_D_PAGE)
103
104#ifdef CONFIG_CPU_TLB_V4WBI
105# define v4wbi_possible_flags v4wbi_tlb_flags
106# define v4wbi_always_flags v4wbi_tlb_flags
107# ifdef _TLB
108# define MULTI_TLB 1
109# else
110# define _TLB v4wbi
111# endif
112#else
113# define v4wbi_possible_flags 0
114# define v4wbi_always_flags (-1UL)
115#endif
116
117#define fr_tlb_flags (TLB_WB | TLB_DCLEAN | TLB_L2CLEAN_FR | \
118 TLB_V4_I_FULL | TLB_V4_D_FULL | \
119 TLB_V4_I_PAGE | TLB_V4_D_PAGE)
120
121#ifdef CONFIG_CPU_TLB_FEROCEON
122# define fr_possible_flags fr_tlb_flags
123# define fr_always_flags fr_tlb_flags
124# ifdef _TLB
125# define MULTI_TLB 1
126# else
127# define _TLB v4wbi
128# endif
129#else
130# define fr_possible_flags 0
131# define fr_always_flags (-1UL)
132#endif
133
134#define v4wb_tlb_flags (TLB_WB | TLB_DCLEAN | \
135 TLB_V4_I_FULL | TLB_V4_D_FULL | \
136 TLB_V4_D_PAGE)
137
138#ifdef CONFIG_CPU_TLB_V4WB
139# define v4wb_possible_flags v4wb_tlb_flags
140# define v4wb_always_flags v4wb_tlb_flags
141# ifdef _TLB
142# define MULTI_TLB 1
143# else
144# define _TLB v4wb
145# endif
146#else
147# define v4wb_possible_flags 0
148# define v4wb_always_flags (-1UL)
149#endif
150
151#define v6wbi_tlb_flags (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
152 TLB_V6_I_FULL | TLB_V6_D_FULL | \
153 TLB_V6_I_PAGE | TLB_V6_D_PAGE | \
154 TLB_V6_I_ASID | TLB_V6_D_ASID | \
155 TLB_V6_BP)
156
157#ifdef CONFIG_CPU_TLB_V6
158# define v6wbi_possible_flags v6wbi_tlb_flags
159# define v6wbi_always_flags v6wbi_tlb_flags
160# ifdef _TLB
161# define MULTI_TLB 1
162# else
163# define _TLB v6wbi
164# endif
165#else
166# define v6wbi_possible_flags 0
167# define v6wbi_always_flags (-1UL)
168#endif
169
170#define v7wbi_tlb_flags_smp (TLB_WB | TLB_BARRIER | \
171 TLB_V7_UIS_FULL | TLB_V7_UIS_PAGE | \
172 TLB_V7_UIS_ASID | TLB_V7_UIS_BP)
173#define v7wbi_tlb_flags_up (TLB_WB | TLB_DCLEAN | TLB_BARRIER | \
174 TLB_V6_U_FULL | TLB_V6_U_PAGE | \
175 TLB_V6_U_ASID | TLB_V6_BP)
176
177#ifdef CONFIG_CPU_TLB_V7
178
179# ifdef CONFIG_SMP_ON_UP
180# define v7wbi_possible_flags (v7wbi_tlb_flags_smp | v7wbi_tlb_flags_up)
181# define v7wbi_always_flags (v7wbi_tlb_flags_smp & v7wbi_tlb_flags_up)
182# elif defined(CONFIG_SMP)
183# define v7wbi_possible_flags v7wbi_tlb_flags_smp
184# define v7wbi_always_flags v7wbi_tlb_flags_smp
185# else
186# define v7wbi_possible_flags v7wbi_tlb_flags_up
187# define v7wbi_always_flags v7wbi_tlb_flags_up
188# endif
189# ifdef _TLB
190# define MULTI_TLB 1
191# else
192# define _TLB v7wbi
193# endif
194#else
195# define v7wbi_possible_flags 0
196# define v7wbi_always_flags (-1UL)
197#endif
198
199#ifndef _TLB
200#error Unknown TLB model
201#endif
202
203#ifndef __ASSEMBLY__
204
205#include <linux/sched.h>
206
207struct cpu_tlb_fns {
208 void (*flush_user_range)(unsigned long, unsigned long, struct vm_area_struct *);
209 void (*flush_kern_range)(unsigned long, unsigned long);
210 unsigned long tlb_flags;
211};
212
213/*
214 * Select the calling method
215 */
216#ifdef MULTI_TLB
217
218#define __cpu_flush_user_tlb_range cpu_tlb.flush_user_range
219#define __cpu_flush_kern_tlb_range cpu_tlb.flush_kern_range
220
221#else
222
223#define __cpu_flush_user_tlb_range __glue(_TLB,_flush_user_tlb_range)
224#define __cpu_flush_kern_tlb_range __glue(_TLB,_flush_kern_tlb_range)
225
226extern void __cpu_flush_user_tlb_range(unsigned long, unsigned long, struct vm_area_struct *);
227extern void __cpu_flush_kern_tlb_range(unsigned long, unsigned long);
228
229#endif
230
231extern struct cpu_tlb_fns cpu_tlb;
232
233#define __cpu_tlb_flags cpu_tlb.tlb_flags
234
235/*
236 * TLB Management
237 * ==============
238 *
239 * The arch/arm/mm/tlb-*.S files implement these methods.
240 *
241 * The TLB specific code is expected to perform whatever tests it
242 * needs to determine if it should invalidate the TLB for each
243 * call. Start addresses are inclusive and end addresses are
244 * exclusive; it is safe to round these addresses down.
245 *
246 * flush_tlb_all()
247 *
248 * Invalidate the entire TLB.
249 *
250 * flush_tlb_mm(mm)
251 *
252 * Invalidate all TLB entries in a particular address
253 * space.
254 * - mm - mm_struct describing address space
255 *
256 * flush_tlb_range(mm,start,end)
257 *
258 * Invalidate a range of TLB entries in the specified
259 * address space.
260 * - mm - mm_struct describing address space
261 * - start - start address (may not be aligned)
262 * - end - end address (exclusive, may not be aligned)
263 *
264 * flush_tlb_page(vaddr,vma)
265 *
266 * Invalidate the specified page in the specified address range.
267 * - vaddr - virtual address (may not be aligned)
268 * - vma - vma_struct describing address range
269 *
270 * flush_kern_tlb_page(kaddr)
271 *
272 * Invalidate the TLB entry for the specified page. The address
273 * will be in the kernels virtual memory space. Current uses
274 * only require the D-TLB to be invalidated.
275 * - kaddr - Kernel virtual memory address
276 */
277
278/*
279 * We optimise the code below by:
280 * - building a set of TLB flags that might be set in __cpu_tlb_flags
281 * - building a set of TLB flags that will always be set in __cpu_tlb_flags
282 * - if we're going to need __cpu_tlb_flags, access it once and only once
283 *
284 * This allows us to build optimal assembly for the single-CPU type case,
285 * and as close to optimal given the compiler constrants for multi-CPU
286 * case. We could do better for the multi-CPU case if the compiler
287 * implemented the "%?" method, but this has been discontinued due to too
288 * many people getting it wrong.
289 */
290#define possible_tlb_flags (v4_possible_flags | \
291 v4wbi_possible_flags | \
292 fr_possible_flags | \
293 v4wb_possible_flags | \
294 fa_possible_flags | \
295 v6wbi_possible_flags | \
296 v7wbi_possible_flags)
297
298#define always_tlb_flags (v4_always_flags & \
299 v4wbi_always_flags & \
300 fr_always_flags & \
301 v4wb_always_flags & \
302 fa_always_flags & \
303 v6wbi_always_flags & \
304 v7wbi_always_flags)
305
306#define tlb_flag(f) ((always_tlb_flags & (f)) || (__tlb_flag & possible_tlb_flags & (f)))
307
308#define __tlb_op(f, insnarg, arg) \
309 do { \
310 if (always_tlb_flags & (f)) \
311 asm("mcr " insnarg \
312 : : "r" (arg) : "cc"); \
313 else if (possible_tlb_flags & (f)) \
314 asm("tst %1, %2\n\t" \
315 "mcrne " insnarg \
316 : : "r" (arg), "r" (__tlb_flag), "Ir" (f) \
317 : "cc"); \
318 } while (0)
319
320#define tlb_op(f, regs, arg) __tlb_op(f, "p15, 0, %0, " regs, arg)
321#define tlb_l2_op(f, regs, arg) __tlb_op(f, "p15, 1, %0, " regs, arg)
322
323static inline void __local_flush_tlb_all(void)
324{
325 const int zero = 0;
326 const unsigned int __tlb_flag = __cpu_tlb_flags;
327
328 tlb_op(TLB_V4_U_FULL | TLB_V6_U_FULL, "c8, c7, 0", zero);
329 tlb_op(TLB_V4_D_FULL | TLB_V6_D_FULL, "c8, c6, 0", zero);
330 tlb_op(TLB_V4_I_FULL | TLB_V6_I_FULL, "c8, c5, 0", zero);
331}
332
333static inline void local_flush_tlb_all(void)
334{
335 const int zero = 0;
336 const unsigned int __tlb_flag = __cpu_tlb_flags;
337
338 if (tlb_flag(TLB_WB))
339 dsb(nshst);
340
341 __local_flush_tlb_all();
342 tlb_op(TLB_V7_UIS_FULL, "c8, c7, 0", zero);
343
344 if (tlb_flag(TLB_BARRIER)) {
345 dsb(nsh);
346 isb();
347 }
348}
349
350static inline void __flush_tlb_all(void)
351{
352 const int zero = 0;
353 const unsigned int __tlb_flag = __cpu_tlb_flags;
354
355 if (tlb_flag(TLB_WB))
356 dsb(ishst);
357
358 __local_flush_tlb_all();
359 tlb_op(TLB_V7_UIS_FULL, "c8, c3, 0", zero);
360
361 if (tlb_flag(TLB_BARRIER)) {
362 dsb(ish);
363 isb();
364 }
365}
366
367static inline void __local_flush_tlb_mm(struct mm_struct *mm)
368{
369 const int zero = 0;
370 const int asid = ASID(mm);
371 const unsigned int __tlb_flag = __cpu_tlb_flags;
372
373 if (possible_tlb_flags & (TLB_V4_U_FULL|TLB_V4_D_FULL|TLB_V4_I_FULL)) {
374 if (cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm))) {
375 tlb_op(TLB_V4_U_FULL, "c8, c7, 0", zero);
376 tlb_op(TLB_V4_D_FULL, "c8, c6, 0", zero);
377 tlb_op(TLB_V4_I_FULL, "c8, c5, 0", zero);
378 }
379 }
380
381 tlb_op(TLB_V6_U_ASID, "c8, c7, 2", asid);
382 tlb_op(TLB_V6_D_ASID, "c8, c6, 2", asid);
383 tlb_op(TLB_V6_I_ASID, "c8, c5, 2", asid);
384}
385
386static inline void local_flush_tlb_mm(struct mm_struct *mm)
387{
388 const int asid = ASID(mm);
389 const unsigned int __tlb_flag = __cpu_tlb_flags;
390
391 if (tlb_flag(TLB_WB))
392 dsb(nshst);
393
394 __local_flush_tlb_mm(mm);
395 tlb_op(TLB_V7_UIS_ASID, "c8, c7, 2", asid);
396
397 if (tlb_flag(TLB_BARRIER))
398 dsb(nsh);
399}
400
401static inline void __flush_tlb_mm(struct mm_struct *mm)
402{
403 const unsigned int __tlb_flag = __cpu_tlb_flags;
404
405 if (tlb_flag(TLB_WB))
406 dsb(ishst);
407
408 __local_flush_tlb_mm(mm);
409#ifdef CONFIG_ARM_ERRATA_720789
410 tlb_op(TLB_V7_UIS_ASID, "c8, c3, 0", 0);
411#else
412 tlb_op(TLB_V7_UIS_ASID, "c8, c3, 2", ASID(mm));
413#endif
414
415 if (tlb_flag(TLB_BARRIER))
416 dsb(ish);
417}
418
419static inline void
420__local_flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
421{
422 const int zero = 0;
423 const unsigned int __tlb_flag = __cpu_tlb_flags;
424
425 uaddr = (uaddr & PAGE_MASK) | ASID(vma->vm_mm);
426
427 if (possible_tlb_flags & (TLB_V4_U_PAGE|TLB_V4_D_PAGE|TLB_V4_I_PAGE|TLB_V4_I_FULL) &&
428 cpumask_test_cpu(smp_processor_id(), mm_cpumask(vma->vm_mm))) {
429 tlb_op(TLB_V4_U_PAGE, "c8, c7, 1", uaddr);
430 tlb_op(TLB_V4_D_PAGE, "c8, c6, 1", uaddr);
431 tlb_op(TLB_V4_I_PAGE, "c8, c5, 1", uaddr);
432 if (!tlb_flag(TLB_V4_I_PAGE) && tlb_flag(TLB_V4_I_FULL))
433 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
434 }
435
436 tlb_op(TLB_V6_U_PAGE, "c8, c7, 1", uaddr);
437 tlb_op(TLB_V6_D_PAGE, "c8, c6, 1", uaddr);
438 tlb_op(TLB_V6_I_PAGE, "c8, c5, 1", uaddr);
439}
440
441static inline void
442local_flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
443{
444 const unsigned int __tlb_flag = __cpu_tlb_flags;
445
446 uaddr = (uaddr & PAGE_MASK) | ASID(vma->vm_mm);
447
448 if (tlb_flag(TLB_WB))
449 dsb(nshst);
450
451 __local_flush_tlb_page(vma, uaddr);
452 tlb_op(TLB_V7_UIS_PAGE, "c8, c7, 1", uaddr);
453
454 if (tlb_flag(TLB_BARRIER))
455 dsb(nsh);
456}
457
458static inline void
459__flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
460{
461 const unsigned int __tlb_flag = __cpu_tlb_flags;
462
463 uaddr = (uaddr & PAGE_MASK) | ASID(vma->vm_mm);
464
465 if (tlb_flag(TLB_WB))
466 dsb(ishst);
467
468 __local_flush_tlb_page(vma, uaddr);
469#ifdef CONFIG_ARM_ERRATA_720789
470 tlb_op(TLB_V7_UIS_PAGE, "c8, c3, 3", uaddr & PAGE_MASK);
471#else
472 tlb_op(TLB_V7_UIS_PAGE, "c8, c3, 1", uaddr);
473#endif
474
475 if (tlb_flag(TLB_BARRIER))
476 dsb(ish);
477}
478
479static inline void __local_flush_tlb_kernel_page(unsigned long kaddr)
480{
481 const int zero = 0;
482 const unsigned int __tlb_flag = __cpu_tlb_flags;
483
484 tlb_op(TLB_V4_U_PAGE, "c8, c7, 1", kaddr);
485 tlb_op(TLB_V4_D_PAGE, "c8, c6, 1", kaddr);
486 tlb_op(TLB_V4_I_PAGE, "c8, c5, 1", kaddr);
487 if (!tlb_flag(TLB_V4_I_PAGE) && tlb_flag(TLB_V4_I_FULL))
488 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
489
490 tlb_op(TLB_V6_U_PAGE, "c8, c7, 1", kaddr);
491 tlb_op(TLB_V6_D_PAGE, "c8, c6, 1", kaddr);
492 tlb_op(TLB_V6_I_PAGE, "c8, c5, 1", kaddr);
493}
494
495static inline void local_flush_tlb_kernel_page(unsigned long kaddr)
496{
497 const unsigned int __tlb_flag = __cpu_tlb_flags;
498
499 kaddr &= PAGE_MASK;
500
501 if (tlb_flag(TLB_WB))
502 dsb(nshst);
503
504 __local_flush_tlb_kernel_page(kaddr);
505 tlb_op(TLB_V7_UIS_PAGE, "c8, c7, 1", kaddr);
506
507 if (tlb_flag(TLB_BARRIER)) {
508 dsb(nsh);
509 isb();
510 }
511}
512
513static inline void __flush_tlb_kernel_page(unsigned long kaddr)
514{
515 const unsigned int __tlb_flag = __cpu_tlb_flags;
516
517 kaddr &= PAGE_MASK;
518
519 if (tlb_flag(TLB_WB))
520 dsb(ishst);
521
522 __local_flush_tlb_kernel_page(kaddr);
523 tlb_op(TLB_V7_UIS_PAGE, "c8, c3, 1", kaddr);
524
525 if (tlb_flag(TLB_BARRIER)) {
526 dsb(ish);
527 isb();
528 }
529}
530
531/*
532 * Branch predictor maintenance is paired with full TLB invalidation, so
533 * there is no need for any barriers here.
534 */
535static inline void __local_flush_bp_all(void)
536{
537 const int zero = 0;
538 const unsigned int __tlb_flag = __cpu_tlb_flags;
539
540 if (tlb_flag(TLB_V6_BP))
541 asm("mcr p15, 0, %0, c7, c5, 6" : : "r" (zero));
542}
543
544static inline void local_flush_bp_all(void)
545{
546 const int zero = 0;
547 const unsigned int __tlb_flag = __cpu_tlb_flags;
548
549 __local_flush_bp_all();
550 if (tlb_flag(TLB_V7_UIS_BP))
551 asm("mcr p15, 0, %0, c7, c5, 6" : : "r" (zero));
552}
553
554static inline void __flush_bp_all(void)
555{
556 const int zero = 0;
557 const unsigned int __tlb_flag = __cpu_tlb_flags;
558
559 __local_flush_bp_all();
560 if (tlb_flag(TLB_V7_UIS_BP))
561 asm("mcr p15, 0, %0, c7, c1, 6" : : "r" (zero));
562}
563
564/*
565 * flush_pmd_entry
566 *
567 * Flush a PMD entry (word aligned, or double-word aligned) to
568 * RAM if the TLB for the CPU we are running on requires this.
569 * This is typically used when we are creating PMD entries.
570 *
571 * clean_pmd_entry
572 *
573 * Clean (but don't drain the write buffer) if the CPU requires
574 * these operations. This is typically used when we are removing
575 * PMD entries.
576 */
577static inline void flush_pmd_entry(void *pmd)
578{
579 const unsigned int __tlb_flag = __cpu_tlb_flags;
580
581 tlb_op(TLB_DCLEAN, "c7, c10, 1 @ flush_pmd", pmd);
582 tlb_l2_op(TLB_L2CLEAN_FR, "c15, c9, 1 @ L2 flush_pmd", pmd);
583
584 if (tlb_flag(TLB_WB))
585 dsb(ishst);
586}
587
588static inline void clean_pmd_entry(void *pmd)
589{
590 const unsigned int __tlb_flag = __cpu_tlb_flags;
591
592 tlb_op(TLB_DCLEAN, "c7, c10, 1 @ flush_pmd", pmd);
593 tlb_l2_op(TLB_L2CLEAN_FR, "c15, c9, 1 @ L2 flush_pmd", pmd);
594}
595
596#undef tlb_op
597#undef tlb_flag
598#undef always_tlb_flags
599#undef possible_tlb_flags
600
601/*
602 * Convert calls to our calling convention.
603 */
604#define local_flush_tlb_range(vma,start,end) __cpu_flush_user_tlb_range(start,end,vma)
605#define local_flush_tlb_kernel_range(s,e) __cpu_flush_kern_tlb_range(s,e)
606
607#ifndef CONFIG_SMP
608#define flush_tlb_all local_flush_tlb_all
609#define flush_tlb_mm local_flush_tlb_mm
610#define flush_tlb_page local_flush_tlb_page
611#define flush_tlb_kernel_page local_flush_tlb_kernel_page
612#define flush_tlb_range local_flush_tlb_range
613#define flush_tlb_kernel_range local_flush_tlb_kernel_range
614#define flush_bp_all local_flush_bp_all
615#else
616extern void flush_tlb_all(void);
617extern void flush_tlb_mm(struct mm_struct *mm);
618extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr);
619extern void flush_tlb_kernel_page(unsigned long kaddr);
620extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
621extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
622extern void flush_bp_all(void);
623#endif
624
625/*
626 * If PG_dcache_clean is not set for the page, we need to ensure that any
627 * cache entries for the kernels virtual memory range are written
628 * back to the page. On ARMv6 and later, the cache coherency is handled via
629 * the set_pte_at() function.
630 */
631#if __LINUX_ARM_ARCH__ < 6
632extern void update_mmu_cache(struct vm_area_struct *vma, unsigned long addr,
633 pte_t *ptep);
634#else
635static inline void update_mmu_cache(struct vm_area_struct *vma,
636 unsigned long addr, pte_t *ptep)
637{
638}
639#endif
640
641#define update_mmu_cache_pmd(vma, address, pmd) do { } while (0)
642
643#endif
644
645#elif defined(CONFIG_SMP) /* !CONFIG_MMU */
646
647#ifndef __ASSEMBLY__
648static inline void local_flush_tlb_all(void) { }
649static inline void local_flush_tlb_mm(struct mm_struct *mm) { }
650static inline void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr) { }
651static inline void local_flush_tlb_kernel_page(unsigned long kaddr) { }
652static inline void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) { }
653static inline void local_flush_tlb_kernel_range(unsigned long start, unsigned long end) { }
654static inline void local_flush_bp_all(void) { }
655
656extern void flush_tlb_all(void);
657extern void flush_tlb_mm(struct mm_struct *mm);
658extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr);
659extern void flush_tlb_kernel_page(unsigned long kaddr);
660extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
661extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
662extern void flush_bp_all(void);
663#endif /* __ASSEMBLY__ */
664
665#endif
666
667#ifndef __ASSEMBLY__
668#ifdef CONFIG_ARM_ERRATA_798181
669extern void erratum_a15_798181_init(void);
670#else
671static inline void erratum_a15_798181_init(void) {}
672#endif
673extern bool (*erratum_a15_798181_handler)(void);
674
675static inline bool erratum_a15_798181(void)
676{
677 if (unlikely(IS_ENABLED(CONFIG_ARM_ERRATA_798181) &&
678 erratum_a15_798181_handler))
679 return erratum_a15_798181_handler();
680 return false;
681}
682#endif
683
684#endif