tlbflush.h 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#ifndef _S390_TLBFLUSH_H
#define _S390_TLBFLUSH_H

#include <linux/mm.h>
#include <asm/processor.h>
G
Gerald Schaefer 已提交
6
#include <asm/pgalloc.h>
L
Linus Torvalds 已提交
7 8

/*
M
Martin Schwidefsky 已提交
9
 * Flush all tlb entries on the local cpu.
L
Linus Torvalds 已提交
10
 */
M
Martin Schwidefsky 已提交
11
static inline void __tlb_flush_local(void)
L
Linus Torvalds 已提交
12
{
M
Martin Schwidefsky 已提交
13
	asm volatile("ptlb" : : : "memory");
L
Linus Torvalds 已提交
14 15
}

M
Martin Schwidefsky 已提交
16 17 18 19
/*
 * Flush all tlb entries on all cpus.
 */
static inline void __tlb_flush_global(void)
L
Linus Torvalds 已提交
20
{
M
Martin Schwidefsky 已提交
21
	extern void smp_ptlb_all(void);
22 23 24 25 26
	register unsigned long reg2 asm("2");
	register unsigned long reg3 asm("3");
	register unsigned long reg4 asm("4");
	long dummy;

L
Linus Torvalds 已提交
27 28 29 30 31 32
#ifndef __s390x__
	if (!MACHINE_HAS_CSP) {
		smp_ptlb_all();
		return;
	}
#endif /* __s390x__ */
33 34 35 36 37 38 39

	dummy = 0;
	reg2 = reg3 = 0;
	reg4 = ((unsigned long) &dummy) + 1;
	asm volatile(
		"	csp	%0,%2"
		: : "d" (reg2), "d" (reg3), "d" (reg4), "m" (dummy) : "cc" );
L
Linus Torvalds 已提交
40 41 42
}

/*
M
Martin Schwidefsky 已提交
43
 * Flush all tlb entries of a page table on all cpus.
L
Linus Torvalds 已提交
44
 */
M
Martin Schwidefsky 已提交
45 46 47 48 49 50
static inline void __tlb_flush_idte(pgd_t *pgd)
{
	asm volatile(
		"	.insn	rrf,0xb98e0000,0,%0,%1,0"
		: : "a" (2048), "a" (__pa(pgd) & PAGE_MASK) : "cc" );
}
L
Linus Torvalds 已提交
51

M
Martin Schwidefsky 已提交
52
static inline void __tlb_flush_mm(struct mm_struct * mm)
L
Linus Torvalds 已提交
53 54 55 56 57
{
	cpumask_t local_cpumask;

	if (unlikely(cpus_empty(mm->cpu_vm_mask)))
		return;
M
Martin Schwidefsky 已提交
58 59 60 61 62
	/*
	 * If the machine has IDTE we prefer to do a per mm flush
	 * on all cpus instead of doing a local flush if the mm
	 * only ran on the local cpu.
	 */
L
Linus Torvalds 已提交
63
	if (MACHINE_HAS_IDTE) {
G
Gerald Schaefer 已提交
64 65
		pgd_t *shadow_pgd = get_shadow_pgd(mm->pgd);

M
Martin Schwidefsky 已提交
66 67 68
		if (shadow_pgd)
			__tlb_flush_idte(shadow_pgd);
		__tlb_flush_idte(mm->pgd);
L
Linus Torvalds 已提交
69 70 71
		return;
	}
	preempt_disable();
M
Martin Schwidefsky 已提交
72 73 74
	/*
	 * If the process only ran on the local cpu, do a local flush.
	 */
L
Linus Torvalds 已提交
75 76
	local_cpumask = cpumask_of_cpu(smp_processor_id());
	if (cpus_equal(mm->cpu_vm_mask, local_cpumask))
M
Martin Schwidefsky 已提交
77
		__tlb_flush_local();
L
Linus Torvalds 已提交
78
	else
M
Martin Schwidefsky 已提交
79
		__tlb_flush_global();
L
Linus Torvalds 已提交
80 81 82
	preempt_enable();
}

M
Martin Schwidefsky 已提交
83
static inline void __tlb_flush_mm_cond(struct mm_struct * mm)
L
Linus Torvalds 已提交
84
{
M
Martin Schwidefsky 已提交
85 86
	if (atomic_read(&mm->mm_users) <= 1 && mm == current->active_mm)
		__tlb_flush_mm(mm);
L
Linus Torvalds 已提交
87 88
}

M
Martin Schwidefsky 已提交
89 90 91 92 93 94 95 96 97
/*
 * TLB flushing:
 *  flush_tlb() - flushes the current mm struct TLBs
 *  flush_tlb_all() - flushes all processes TLBs
 *  flush_tlb_mm(mm) - flushes the specified mm context TLB's
 *  flush_tlb_page(vma, vmaddr) - flushes one page
 *  flush_tlb_range(vma, start, end) - flushes a range of pages
 *  flush_tlb_kernel_range(start, end) - flushes a range of kernel pages
 */
L
Linus Torvalds 已提交
98

M
Martin Schwidefsky 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112
/*
 * flush_tlb_mm goes together with ptep_set_wrprotect for the
 * copy_page_range operation and flush_tlb_range is related to
 * ptep_get_and_clear for change_protection. ptep_set_wrprotect and
 * ptep_get_and_clear do not flush the TLBs directly if the mm has
 * only one user. At the end of the update the flush_tlb_mm and
 * flush_tlb_range functions need to do the flush.
 */
#define flush_tlb()				do { } while (0)
#define flush_tlb_all()				do { } while (0)
#define flush_tlb_mm(mm)			__tlb_flush_mm_cond(mm)
#define flush_tlb_page(vma, addr)		do { } while (0)
#define flush_tlb_range(vma, start, end)	__tlb_flush_mm_cond(mm)
#define flush_tlb_kernel_range(start, end)	__tlb_flush_mm(&init_mm)
L
Linus Torvalds 已提交
113 114

#endif /* _S390_TLBFLUSH_H */