tlbflush.h 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
/*
 * Based on arch/arm/include/asm/tlbflush.h
 *
 * Copyright (C) 1999-2003 Russell King
 * Copyright (C) 2012 ARM Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __ASM_TLBFLUSH_H
#define __ASM_TLBFLUSH_H

#ifndef __ASSEMBLY__

#include <linux/sched.h>
#include <asm/cputype.h>

/*
 *	TLB Management
 *	==============
 *
 *	The TLB specific code is expected to perform whatever tests it needs
 *	to determine if it should invalidate the TLB for each call.  Start
 *	addresses are inclusive and end addresses are exclusive; it is safe to
 *	round these addresses down.
 *
 *	flush_tlb_all()
 *
 *		Invalidate the entire TLB.
 *
 *	flush_tlb_mm(mm)
 *
 *		Invalidate all TLB entries in a particular address space.
 *		- mm	- mm_struct describing address space
 *
 *	flush_tlb_range(mm,start,end)
 *
 *		Invalidate a range of TLB entries in the specified address
 *		space.
 *		- mm	- mm_struct describing address space
 *		- start - start address (may not be aligned)
 *		- end	- end address (exclusive, may not be aligned)
 *
 *	flush_tlb_page(vaddr,vma)
 *
 *		Invalidate the specified page in the specified address range.
 *		- vaddr - virtual address (may not be aligned)
 *		- vma	- vma_struct describing address range
 *
 *	flush_kern_tlb_page(kaddr)
 *
 *		Invalidate the TLB entry for the specified page.  The address
 *		will be in the kernels virtual memory space.  Current uses
 *		only require the D-TLB to be invalidated.
 *		- kaddr - Kernel virtual memory address
 */
66 67 68 69 70 71 72 73
static inline void local_flush_tlb_all(void)
{
	dsb(nshst);
	asm("tlbi	vmalle1");
	dsb(nsh);
	isb();
}

74 75
static inline void flush_tlb_all(void)
{
76
	dsb(ishst);
77
	asm("tlbi	vmalle1is");
78
	dsb(ish);
79 80 81 82 83
	isb();
}

static inline void flush_tlb_mm(struct mm_struct *mm)
{
84
	unsigned long asid = ASID(mm) << 48;
85

86
	dsb(ishst);
87
	asm("tlbi	aside1is, %0" : : "r" (asid));
88
	dsb(ish);
89 90 91 92 93
}

static inline void flush_tlb_page(struct vm_area_struct *vma,
				  unsigned long uaddr)
{
94
	unsigned long addr = uaddr >> 12 | (ASID(vma->vm_mm) << 48);
95

96
	dsb(ishst);
97
	asm("tlbi	vale1is, %0" : : "r" (addr));
98
	dsb(ish);
99 100
}

101 102 103 104 105 106
/*
 * This is meant to avoid soft lock-ups on large TLB flushing ranges and not
 * necessarily a performance improvement.
 */
#define MAX_TLB_RANGE	(1024UL << PAGE_SHIFT)

107 108 109
static inline void __flush_tlb_range(struct vm_area_struct *vma,
				     unsigned long start, unsigned long end,
				     bool last_level)
110
{
111
	unsigned long asid = ASID(vma->vm_mm) << 48;
112
	unsigned long addr;
113 114 115 116 117 118

	if ((end - start) > MAX_TLB_RANGE) {
		flush_tlb_mm(vma->vm_mm);
		return;
	}

119 120 121 122
	start = asid | (start >> 12);
	end = asid | (end >> 12);

	dsb(ishst);
123 124 125 126 127 128
	for (addr = start; addr < end; addr += 1 << (PAGE_SHIFT - 12)) {
		if (last_level)
			asm("tlbi vale1is, %0" : : "r"(addr));
		else
			asm("tlbi vae1is, %0" : : "r"(addr));
	}
129 130 131
	dsb(ish);
}

132 133 134 135 136 137
static inline void flush_tlb_range(struct vm_area_struct *vma,
				   unsigned long start, unsigned long end)
{
	__flush_tlb_range(vma, start, end, false);
}

138
static inline void flush_tlb_kernel_range(unsigned long start, unsigned long end)
139 140
{
	unsigned long addr;
141 142 143 144 145 146

	if ((end - start) > MAX_TLB_RANGE) {
		flush_tlb_all();
		return;
	}

147 148 149 150 151 152 153
	start >>= 12;
	end >>= 12;

	dsb(ishst);
	for (addr = start; addr < end; addr += 1 << (PAGE_SHIFT - 12))
		asm("tlbi vaae1is, %0" : : "r"(addr));
	dsb(ish);
154
	isb();
155
}
156

157 158 159 160 161 162 163
/*
 * Used to invalidate the TLB (walk caches) corresponding to intermediate page
 * table levels (pgd/pud/pmd).
 */
static inline void __flush_tlb_pgtable(struct mm_struct *mm,
				       unsigned long uaddr)
{
164
	unsigned long addr = uaddr >> 12 | (ASID(mm) << 48);
165 166 167 168

	asm("tlbi	vae1is, %0" : : "r" (addr));
	dsb(ish);
}
S
Steve Capper 已提交
169

170 171 172
#endif

#endif