blob: 67b3814a71ddac1afe88df79580b0e00eb75b926 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _PARISC_TLBFLUSH_H
2#define _PARISC_TLBFLUSH_H
3
4/* TLB flushing routines.... */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/mm.h>
7#include <asm/mmu_context.h>
8
Grant Grundler04d472d2005-10-21 22:40:24 -04009
10/* This is for the serialisation of PxTLB broadcasts. At least on the
11 * N class systems, only one PxTLB inter processor broadcast can be
12 * active at any one time on the Merced bus. This tlb purge
13 * synchronisation is fairly lightweight and harmless so we activate
Matthew Wilcox29a622d2005-11-17 16:44:14 -050014 * it on all SMP systems not just the N class. We also need to have
15 * preemption disabled on uniprocessor machines, and spin_lock does that
16 * nicely.
17 */
Grant Grundler04d472d2005-10-21 22:40:24 -040018extern spinlock_t pa_tlb_lock;
19
20#define purge_tlb_start(x) spin_lock(&pa_tlb_lock)
21#define purge_tlb_end(x) spin_unlock(&pa_tlb_lock)
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023extern void flush_tlb_all(void);
Matthew Wilcox1b2425e2006-01-10 20:47:49 -050024extern void flush_tlb_all_local(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * flush_tlb_mm()
28 *
29 * XXX This code is NOT valid for HP-UX compatibility processes,
30 * (although it will probably work 99% of the time). HP-UX
31 * processes are free to play with the space id's and save them
32 * over long periods of time, etc. so we have to preserve the
33 * space and just flush the entire tlb. We need to check the
34 * personality in order to do that, but the personality is not
35 * currently being set correctly.
36 *
37 * Of course, Linux processes could do the same thing, but
38 * we don't support that (and the compilers, dynamic linker,
39 * etc. do not do that).
40 */
41
Randolph Chung592ac932006-12-11 16:07:51 -080042static inline void __flush_tlb_mm(void *mmv)
43{
44 struct mm_struct *mm = (struct mm_struct *)mmv;
45 if (mm == current->active_mm)
46 load_context(mm->context);
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static inline void flush_tlb_mm(struct mm_struct *mm)
50{
Randolph Chung592ac932006-12-11 16:07:51 -080051 if (mm->context != 0)
52 free_sid(mm->context);
53 mm->context = alloc_sid();
54 on_each_cpu(__flush_tlb_mm, mm, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
57extern __inline__ void flush_tlb_pgtables(struct mm_struct *mm, unsigned long start, unsigned long end)
58{
59}
60
61static inline void flush_tlb_page(struct vm_area_struct *vma,
62 unsigned long addr)
63{
64 /* For one page, it's not worth testing the split_tlb variable */
65
66 mb();
67 mtsp(vma->vm_mm->context,1);
68 purge_tlb_start();
69 pdtlb(addr);
70 pitlb(addr);
71 purge_tlb_end();
72}
73
74static inline void flush_tlb_range(struct vm_area_struct *vma,
75 unsigned long start, unsigned long end)
76{
77 unsigned long npages;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 npages = ((end - (start & PAGE_MASK)) + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
Grant Grundler896a3752005-10-21 22:40:07 -040080 if (npages >= 512) /* 2MB of space: arbitrary, should be tuned */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 flush_tlb_all();
82 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 mtsp(vma->vm_mm->context,1);
Grant Grundler896a3752005-10-21 22:40:07 -040084 purge_tlb_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (split_tlb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 while (npages--) {
87 pdtlb(start);
88 pitlb(start);
89 start += PAGE_SIZE;
90 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 while (npages--) {
93 pdtlb(start);
94 start += PAGE_SIZE;
95 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Grant Grundler896a3752005-10-21 22:40:07 -040097 purge_tlb_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
99}
100
101#define flush_tlb_kernel_range(start, end) flush_tlb_all()
102
103#endif