treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / alpha / include / asm / tlbflush.h
blobf8b492408f514993fb439a746e0eb3cf4787d46a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ALPHA_TLBFLUSH_H
3 #define _ALPHA_TLBFLUSH_H
5 #include <linux/mm.h>
6 #include <linux/sched.h>
7 #include <asm/compiler.h>
8 #include <asm/pgalloc.h>
10 #ifndef __EXTERN_INLINE
11 #define __EXTERN_INLINE extern inline
12 #define __MMU_EXTERN_INLINE
13 #endif
15 extern void __load_new_mm_context(struct mm_struct *);
18 /* Use a few helper functions to hide the ugly broken ASN
19 numbers on early Alphas (ev4 and ev45). */
21 __EXTERN_INLINE void
22 ev4_flush_tlb_current(struct mm_struct *mm)
24 __load_new_mm_context(mm);
25 tbiap();
28 __EXTERN_INLINE void
29 ev5_flush_tlb_current(struct mm_struct *mm)
31 __load_new_mm_context(mm);
34 /* Flush just one page in the current TLB set. We need to be very
35 careful about the icache here, there is no way to invalidate a
36 specific icache page. */
38 __EXTERN_INLINE void
39 ev4_flush_tlb_current_page(struct mm_struct * mm,
40 struct vm_area_struct *vma,
41 unsigned long addr)
43 int tbi_flag = 2;
44 if (vma->vm_flags & VM_EXEC) {
45 __load_new_mm_context(mm);
46 tbi_flag = 3;
48 tbi(tbi_flag, addr);
51 __EXTERN_INLINE void
52 ev5_flush_tlb_current_page(struct mm_struct * mm,
53 struct vm_area_struct *vma,
54 unsigned long addr)
56 if (vma->vm_flags & VM_EXEC)
57 __load_new_mm_context(mm);
58 else
59 tbi(2, addr);
63 #ifdef CONFIG_ALPHA_GENERIC
64 # define flush_tlb_current alpha_mv.mv_flush_tlb_current
65 # define flush_tlb_current_page alpha_mv.mv_flush_tlb_current_page
66 #else
67 # ifdef CONFIG_ALPHA_EV4
68 # define flush_tlb_current ev4_flush_tlb_current
69 # define flush_tlb_current_page ev4_flush_tlb_current_page
70 # else
71 # define flush_tlb_current ev5_flush_tlb_current
72 # define flush_tlb_current_page ev5_flush_tlb_current_page
73 # endif
74 #endif
76 #ifdef __MMU_EXTERN_INLINE
77 #undef __EXTERN_INLINE
78 #undef __MMU_EXTERN_INLINE
79 #endif
81 /* Flush current user mapping. */
82 static inline void
83 flush_tlb(void)
85 flush_tlb_current(current->active_mm);
88 /* Flush someone else's user mapping. */
89 static inline void
90 flush_tlb_other(struct mm_struct *mm)
92 unsigned long *mmc = &mm->context[smp_processor_id()];
93 /* Check it's not zero first to avoid cacheline ping pong
94 when possible. */
95 if (*mmc) *mmc = 0;
98 #ifndef CONFIG_SMP
99 /* Flush everything (kernel mapping may also have changed
100 due to vmalloc/vfree). */
101 static inline void flush_tlb_all(void)
103 tbia();
106 /* Flush a specified user mapping. */
107 static inline void
108 flush_tlb_mm(struct mm_struct *mm)
110 if (mm == current->active_mm)
111 flush_tlb_current(mm);
112 else
113 flush_tlb_other(mm);
116 /* Page-granular tlb flush. */
117 static inline void
118 flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
120 struct mm_struct *mm = vma->vm_mm;
122 if (mm == current->active_mm)
123 flush_tlb_current_page(mm, vma, addr);
124 else
125 flush_tlb_other(mm);
128 /* Flush a specified range of user mapping. On the Alpha we flush
129 the whole user tlb. */
130 static inline void
131 flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
132 unsigned long end)
134 flush_tlb_mm(vma->vm_mm);
137 #else /* CONFIG_SMP */
139 extern void flush_tlb_all(void);
140 extern void flush_tlb_mm(struct mm_struct *);
141 extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
142 extern void flush_tlb_range(struct vm_area_struct *, unsigned long,
143 unsigned long);
145 #endif /* CONFIG_SMP */
147 static inline void flush_tlb_kernel_range(unsigned long start,
148 unsigned long end)
150 flush_tlb_all();
153 #endif /* _ALPHA_TLBFLUSH_H */