1#ifndef _PARISC_TLBFLUSH_H
2#define _PARISC_TLBFLUSH_H
3
4
5
6#include <linux/mm.h>
7#include <linux/sched.h>
8#include <asm/mmu_context.h>
9
10
11
12
13
14
15
16
17
18
19extern spinlock_t pa_tlb_lock;
20
21#define purge_tlb_start(x) spin_lock(&pa_tlb_lock)
22#define purge_tlb_end(x) spin_unlock(&pa_tlb_lock)
23
24extern void flush_tlb_all(void);
25extern void flush_tlb_all_local(void *);
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43static inline void flush_tlb_mm(struct mm_struct *mm)
44{
45 BUG_ON(mm == &init_mm);
46
47#if 1 || defined(CONFIG_SMP)
48 flush_tlb_all();
49#else
50
51
52
53 if (mm) {
54 if (mm->context != 0)
55 free_sid(mm->context);
56 mm->context = alloc_sid();
57 if (mm == current->active_mm)
58 load_context(mm->context);
59 }
60#endif
61}
62
63static inline void flush_tlb_page(struct vm_area_struct *vma,
64 unsigned long addr)
65{
66
67
68 mb();
69 mtsp(vma->vm_mm->context,1);
70 purge_tlb_start();
71 pdtlb(addr);
72 pitlb(addr);
73 purge_tlb_end();
74}
75
76void __flush_tlb_range(unsigned long sid,
77 unsigned long start, unsigned long end);
78
79#define flush_tlb_range(vma,start,end) __flush_tlb_range((vma)->vm_mm->context,start,end)
80
81#define flush_tlb_kernel_range(start, end) __flush_tlb_range(0,start,end)
82
83#endif
84