2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
10 #define _ASM_ARC_TLB_H
12 #define tlb_flush(tlb) \
15 flush_tlb_mm((tlb)->mm); \
19 * This pair is called at time of munmap/exit to flush cache and TLB entries
20 * for mappings being torn down.
21 * 1) cache-flush part -implemented via tlb_start_vma( ) for VIPT aliasing D$
22 * 2) tlb-flush part - implemted via tlb_end_vma( ) flushes the TLB range
24 * Note, read http://lkml.org/lkml/2004/1/15/6
26 #ifndef CONFIG_ARC_CACHE_VIPT_ALIASING
27 #define tlb_start_vma(tlb, vma)
29 #define tlb_start_vma(tlb, vma) \
32 flush_cache_range(vma, vma->vm_start, vma->vm_end); \
36 #define tlb_end_vma(tlb, vma) \
39 flush_tlb_range(vma, vma->vm_start, vma->vm_end); \
42 #define __tlb_remove_tlb_entry(tlb, ptep, address)
44 #include <linux/pagemap.h>
45 #include <asm-generic/tlb.h>
47 #endif /* _ASM_ARC_TLB_H */