Merge remote-tracking branch 'selinux/next'
[deliverable/linux.git] / arch / s390 / include / asm / tlbflush.h
CommitLineData
1da177e4
LT
1#ifndef _S390_TLBFLUSH_H
2#define _S390_TLBFLUSH_H
3
1da177e4 4#include <linux/mm.h>
53492b1d 5#include <linux/sched.h>
1da177e4 6#include <asm/processor.h>
c1821c2e 7#include <asm/pgalloc.h>
4ccccc52 8#include <asm/pgtable.h>
1da177e4
LT
9
10/*
1b948d6c 11 * Flush all TLB entries on the local CPU.
1da177e4 12 */
ba8a9229 13static inline void __tlb_flush_local(void)
1da177e4 14{
ba8a9229 15 asm volatile("ptlb" : : : "memory");
1da177e4 16}
1da177e4 17
ba8a9229 18/*
1b948d6c 19 * Flush TLB entries for a specific ASCE on all CPUs
ba8a9229 20 */
1b948d6c
MS
21static inline void __tlb_flush_idte(unsigned long asce)
22{
23 /* Global TLB flush for the mm */
24 asm volatile(
25 " .insn rrf,0xb98e0000,0,%0,%1,0"
26 : : "a" (2048), "a" (asce) : "cc");
27}
28
1b948d6c 29#ifdef CONFIG_SMP
a806170e
HC
30void smp_ptlb_all(void);
31
1b948d6c
MS
32/*
33 * Flush all TLB entries on all CPUs.
34 */
ba8a9229 35static inline void __tlb_flush_global(void)
1da177e4 36{
4ccccc52 37 unsigned int dummy = 0;
94c12cc7 38
4ccccc52 39 csp(&dummy, 0, 0);
1da177e4
LT
40}
41
1b948d6c
MS
42/*
43 * Flush TLB entries for a specific mm on all CPUs (in case gmap is used
44 * this implicates multiple ASCEs!).
45 */
374b8f45
MS
46static inline void __tlb_flush_full(struct mm_struct *mm)
47{
374b8f45 48 preempt_disable();
64f31d58 49 atomic_inc(&mm->context.flush_count);
1b948d6c
MS
50 if (cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id()))) {
51 /* Local TLB flush */
374b8f45 52 __tlb_flush_local();
1b948d6c
MS
53 } else {
54 /* Global TLB flush */
374b8f45 55 __tlb_flush_global();
1b948d6c 56 /* Reset TLB flush mask */
d5dcafee 57 cpumask_copy(mm_cpumask(mm), &mm->context.cpu_attach_mask);
1b948d6c 58 }
64f31d58 59 atomic_dec(&mm->context.flush_count);
374b8f45
MS
60 preempt_enable();
61}
1b948d6c 62
44b6cc81 63static inline void __tlb_flush_mm(struct mm_struct *mm)
1b948d6c 64{
44b6cc81
MS
65 unsigned long gmap_asce;
66
67 /*
68 * If the machine has IDTE we prefer to do a per mm flush
69 * on all cpus instead of doing a local flush if the mm
70 * only ran on the local cpu.
71 */
1b948d6c 72 preempt_disable();
64f31d58 73 atomic_inc(&mm->context.flush_count);
44b6cc81
MS
74 gmap_asce = READ_ONCE(mm->context.gmap_asce);
75 if (MACHINE_HAS_IDTE && gmap_asce != -1UL) {
76 if (gmap_asce)
77 __tlb_flush_idte(gmap_asce);
78 __tlb_flush_idte(mm->context.asce);
79 } else {
80 __tlb_flush_full(mm);
81 }
d5dcafee
MS
82 /* Reset TLB flush mask */
83 cpumask_copy(mm_cpumask(mm), &mm->context.cpu_attach_mask);
64f31d58 84 atomic_dec(&mm->context.flush_count);
1b948d6c
MS
85 preempt_enable();
86}
87
88static inline void __tlb_flush_kernel(void)
89{
90 if (MACHINE_HAS_IDTE)
723cacbd 91 __tlb_flush_idte(init_mm.context.asce);
1b948d6c
MS
92 else
93 __tlb_flush_global();
94}
374b8f45 95#else
e1c4d014 96#define __tlb_flush_global() __tlb_flush_local()
1b948d6c 97#define __tlb_flush_full(mm) __tlb_flush_local()
374b8f45 98
1da177e4 99/*
1b948d6c 100 * Flush TLB entries for a specific ASCE on all CPUs.
1da177e4 101 */
44b6cc81 102static inline void __tlb_flush_mm(struct mm_struct *mm)
ba8a9229 103{
d5dcafee 104 __tlb_flush_local();
ba8a9229 105}
1da177e4 106
1b948d6c
MS
107static inline void __tlb_flush_kernel(void)
108{
d5dcafee 109 __tlb_flush_local();
1b948d6c
MS
110}
111#endif
112
5c474a1e 113static inline void __tlb_flush_mm_lazy(struct mm_struct * mm)
1da177e4 114{
050eef36 115 if (mm->context.flush_mm) {
ba8a9229 116 __tlb_flush_mm(mm);
050eef36
MS
117 mm->context.flush_mm = 0;
118 }
1da177e4
LT
119}
120
ba8a9229
MS
121/*
122 * TLB flushing:
123 * flush_tlb() - flushes the current mm struct TLBs
124 * flush_tlb_all() - flushes all processes TLBs
125 * flush_tlb_mm(mm) - flushes the specified mm context TLB's
126 * flush_tlb_page(vma, vmaddr) - flushes one page
127 * flush_tlb_range(vma, start, end) - flushes a range of pages
128 * flush_tlb_kernel_range(start, end) - flushes a range of kernel pages
129 */
1da177e4 130
ba8a9229
MS
131/*
132 * flush_tlb_mm goes together with ptep_set_wrprotect for the
133 * copy_page_range operation and flush_tlb_range is related to
134 * ptep_get_and_clear for change_protection. ptep_set_wrprotect and
135 * ptep_get_and_clear do not flush the TLBs directly if the mm has
136 * only one user. At the end of the update the flush_tlb_mm and
137 * flush_tlb_range functions need to do the flush.
138 */
139#define flush_tlb() do { } while (0)
140#define flush_tlb_all() do { } while (0)
ba8a9229 141#define flush_tlb_page(vma, addr) do { } while (0)
8ffd74a0
MS
142
143static inline void flush_tlb_mm(struct mm_struct *mm)
144{
5c474a1e 145 __tlb_flush_mm_lazy(mm);
8ffd74a0
MS
146}
147
148static inline void flush_tlb_range(struct vm_area_struct *vma,
149 unsigned long start, unsigned long end)
150{
5c474a1e 151 __tlb_flush_mm_lazy(vma->vm_mm);
8ffd74a0
MS
152}
153
154static inline void flush_tlb_kernel_range(unsigned long start,
155 unsigned long end)
156{
1b948d6c 157 __tlb_flush_kernel();
8ffd74a0 158}
1da177e4 159
1da177e4 160#endif /* _S390_TLBFLUSH_H */
This page took 0.80481 seconds and 5 git commands to generate.