[S390] Protect against sigaltstack wraparound.
[deliverable/linux.git] / include / asm-s390 / tlbflush.h
CommitLineData
1da177e4
LT
1#ifndef _S390_TLBFLUSH_H
2#define _S390_TLBFLUSH_H
3
1da177e4
LT
4#include <linux/mm.h>
5#include <asm/processor.h>
c1821c2e 6#include <asm/pgalloc.h>
1da177e4
LT
7
8/*
ba8a9229 9 * Flush all tlb entries on the local cpu.
1da177e4 10 */
ba8a9229 11static inline void __tlb_flush_local(void)
1da177e4 12{
ba8a9229 13 asm volatile("ptlb" : : : "memory");
1da177e4 14}
1da177e4 15
ba8a9229
MS
16/*
17 * Flush all tlb entries on all cpus.
18 */
19static inline void __tlb_flush_global(void)
1da177e4 20{
ba8a9229 21 extern void smp_ptlb_all(void);
94c12cc7
MS
22 register unsigned long reg2 asm("2");
23 register unsigned long reg3 asm("3");
24 register unsigned long reg4 asm("4");
25 long dummy;
26
1da177e4
LT
27#ifndef __s390x__
28 if (!MACHINE_HAS_CSP) {
29 smp_ptlb_all();
30 return;
31 }
32#endif /* __s390x__ */
94c12cc7
MS
33
34 dummy = 0;
35 reg2 = reg3 = 0;
36 reg4 = ((unsigned long) &dummy) + 1;
37 asm volatile(
38 " csp %0,%2"
39 : : "d" (reg2), "d" (reg3), "d" (reg4), "m" (dummy) : "cc" );
1da177e4
LT
40}
41
42/*
ba8a9229 43 * Flush all tlb entries of a page table on all cpus.
1da177e4 44 */
6f457e1a 45static inline void __tlb_flush_idte(unsigned long asce)
ba8a9229
MS
46{
47 asm volatile(
48 " .insn rrf,0xb98e0000,0,%0,%1,0"
6f457e1a 49 : : "a" (2048), "a" (asce) : "cc" );
ba8a9229 50}
1da177e4 51
ba8a9229 52static inline void __tlb_flush_mm(struct mm_struct * mm)
1da177e4
LT
53{
54 cpumask_t local_cpumask;
55
56 if (unlikely(cpus_empty(mm->cpu_vm_mask)))
57 return;
ba8a9229
MS
58 /*
59 * If the machine has IDTE we prefer to do a per mm flush
60 * on all cpus instead of doing a local flush if the mm
61 * only ran on the local cpu.
62 */
1da177e4 63 if (MACHINE_HAS_IDTE) {
146e4b3c
MS
64 if (mm->context.noexec)
65 __tlb_flush_idte((unsigned long)
66 get_shadow_table(mm->pgd) |
67 mm->context.asce_bits);
68 __tlb_flush_idte((unsigned long) mm->pgd |
69 mm->context.asce_bits);
1da177e4
LT
70 return;
71 }
72 preempt_disable();
ba8a9229
MS
73 /*
74 * If the process only ran on the local cpu, do a local flush.
75 */
1da177e4
LT
76 local_cpumask = cpumask_of_cpu(smp_processor_id());
77 if (cpus_equal(mm->cpu_vm_mask, local_cpumask))
ba8a9229 78 __tlb_flush_local();
1da177e4 79 else
ba8a9229 80 __tlb_flush_global();
1da177e4
LT
81 preempt_enable();
82}
83
ba8a9229 84static inline void __tlb_flush_mm_cond(struct mm_struct * mm)
1da177e4 85{
ba8a9229
MS
86 if (atomic_read(&mm->mm_users) <= 1 && mm == current->active_mm)
87 __tlb_flush_mm(mm);
1da177e4
LT
88}
89
ba8a9229
MS
90/*
91 * TLB flushing:
92 * flush_tlb() - flushes the current mm struct TLBs
93 * flush_tlb_all() - flushes all processes TLBs
94 * flush_tlb_mm(mm) - flushes the specified mm context TLB's
95 * flush_tlb_page(vma, vmaddr) - flushes one page
96 * flush_tlb_range(vma, start, end) - flushes a range of pages
97 * flush_tlb_kernel_range(start, end) - flushes a range of kernel pages
98 */
1da177e4 99
ba8a9229
MS
100/*
101 * flush_tlb_mm goes together with ptep_set_wrprotect for the
102 * copy_page_range operation and flush_tlb_range is related to
103 * ptep_get_and_clear for change_protection. ptep_set_wrprotect and
104 * ptep_get_and_clear do not flush the TLBs directly if the mm has
105 * only one user. At the end of the update the flush_tlb_mm and
106 * flush_tlb_range functions need to do the flush.
107 */
108#define flush_tlb() do { } while (0)
109#define flush_tlb_all() do { } while (0)
ba8a9229 110#define flush_tlb_page(vma, addr) do { } while (0)
8ffd74a0
MS
111
112static inline void flush_tlb_mm(struct mm_struct *mm)
113{
114 __tlb_flush_mm_cond(mm);
115}
116
117static inline void flush_tlb_range(struct vm_area_struct *vma,
118 unsigned long start, unsigned long end)
119{
120 __tlb_flush_mm_cond(vma->vm_mm);
121}
122
123static inline void flush_tlb_kernel_range(unsigned long start,
124 unsigned long end)
125{
126 __tlb_flush_mm(&init_mm);
127}
1da177e4 128
1da177e4 129#endif /* _S390_TLBFLUSH_H */
This page took 0.315753 seconds and 5 git commands to generate.