blob: c52238005b5592539be59892b8ef61a4bf1a3380 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _CRIS_TLBFLUSH_H
2#define _CRIS_TLBFLUSH_H
3
4#include <linux/config.h>
5#include <linux/mm.h>
6#include <asm/processor.h>
7#include <asm/pgtable.h>
8#include <asm/pgalloc.h>
9
10/*
11 * TLB flushing (implemented in arch/cris/mm/tlb.c):
12 *
13 * - flush_tlb() flushes the current mm struct TLBs
14 * - flush_tlb_all() flushes all processes TLBs
15 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
16 * - flush_tlb_page(vma, vmaddr) flushes one page
17 * - flush_tlb_range(mm, start, end) flushes a range of pages
18 *
19 */
20
Mikael Starvik8d20a542005-07-27 11:44:42 -070021extern void __flush_tlb_all(void);
22extern void __flush_tlb_mm(struct mm_struct *mm);
23extern void __flush_tlb_page(struct vm_area_struct *vma,
24 unsigned long addr);
25
26#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070027extern void flush_tlb_all(void);
28extern void flush_tlb_mm(struct mm_struct *mm);
29extern void flush_tlb_page(struct vm_area_struct *vma,
30 unsigned long addr);
Mikael Starvik8d20a542005-07-27 11:44:42 -070031#else
32#define flush_tlb_all __flush_tlb_all
33#define flush_tlb_mm __flush_tlb_mm
34#define flush_tlb_page __flush_tlb_page
35#endif
36
37static inline void flush_tlb_range(struct vm_area_struct * vma, unsigned long start, unsigned long end)
38{
39 flush_tlb_mm(vma->vm_mm);
40}
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Adrian Bunkd9b54442005-11-07 00:58:44 -080042static inline void flush_tlb_pgtables(struct mm_struct *mm,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unsigned long start, unsigned long end)
44{
45 /* CRIS does not keep any page table caches in TLB */
46}
47
48
Adrian Bunkd9b54442005-11-07 00:58:44 -080049static inline void flush_tlb(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 flush_tlb_mm(current->mm);
52}
53
54#define flush_tlb_kernel_range(start, end) flush_tlb_all()
55
56#endif /* _CRIS_TLBFLUSH_H */