tlb.h 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Based on arch/arm/include/asm/tlb.h
 *
 * Copyright (C) 2002 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_TLB_H
#define __ASM_TLB_H

22 23 24 25 26 27 28 29 30 31 32 33 34 35
#include <linux/pagemap.h>
#include <linux/swap.h>

#ifdef CONFIG_HAVE_RCU_TABLE_FREE

#define tlb_remove_entry(tlb, entry)	tlb_remove_table(tlb, entry)
static inline void __tlb_remove_table(void *_table)
{
	free_page_and_swap_cache((struct page *)_table);
}
#else
#define tlb_remove_entry(tlb, entry)	tlb_remove_page(tlb, entry)
#endif /* CONFIG_HAVE_RCU_TABLE_FREE */

36 37
#include <asm-generic/tlb.h>

38 39
static inline void tlb_flush(struct mmu_gather *tlb)
{
40 41 42
	struct vm_area_struct vma;

	vma_init(&vma, tlb->mm);
43 44 45 46 47 48 49 50 51 52 53 54 55 56

	/*
	 * The ASID allocator will either invalidate the ASID or mark
	 * it as used.
	 */
	if (tlb->fullmm)
		return;

	/*
	 * The intermediate page table levels are already handled by
	 * the __(pte|pmd|pud)_free_tlb() functions, so last level
	 * TLBI is sufficient here.
	 */
	__flush_tlb_range(&vma, tlb->start, tlb->end, true);
57 58 59
}

static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t pte,
60
				  unsigned long addr)
61
{
62
	__flush_tlb_pgtable(tlb->mm, addr);
63
	pgtable_page_dtor(pte);
64
	tlb_remove_entry(tlb, pte);
65 66
}

67
#if CONFIG_PGTABLE_LEVELS > 2
68 69 70
static inline void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmdp,
				  unsigned long addr)
{
71
	__flush_tlb_pgtable(tlb->mm, addr);
72
	tlb_remove_entry(tlb, virt_to_page(pmdp));
73 74 75
}
#endif

76
#if CONFIG_PGTABLE_LEVELS > 3
77 78 79
static inline void __pud_free_tlb(struct mmu_gather *tlb, pud_t *pudp,
				  unsigned long addr)
{
80
	__flush_tlb_pgtable(tlb->mm, addr);
81
	tlb_remove_entry(tlb, virt_to_page(pudp));
82 83 84
}
#endif

85
#endif