Linux Audio

Check our new training course

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