blob: 5273da991e062c841ac40efdb0f3174a4df8cde3 [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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +04007#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/mmu_context.h>
9
Grant Grundler04d472d2005-10-21 22:40:24 -040010
11/* This is for the serialisation of PxTLB broadcasts. At least on the
12 * N class systems, only one PxTLB inter processor broadcast can be
13 * active at any one time on the Merced bus. This tlb purge
14 * synchronisation is fairly lightweight and harmless so we activate
Helge Dellere82a3b72009-06-16 20:51:48 +000015 * it on all systems not just the N class.
Matthew Wilcox29a622d2005-11-17 16:44:14 -050016 */
Grant Grundler04d472d2005-10-21 22:40:24 -040017extern spinlock_t pa_tlb_lock;
18
Helge Dellere82a3b72009-06-16 20:51:48 +000019#define purge_tlb_start(flags) spin_lock_irqsave(&pa_tlb_lock, flags)
20#define purge_tlb_end(flags) spin_unlock_irqrestore(&pa_tlb_lock, flags)
Grant Grundler04d472d2005-10-21 22:40:24 -040021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern void flush_tlb_all(void);
Matthew Wilcox1b2425e2006-01-10 20:47:49 -050023extern void flush_tlb_all_local(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Helge Deller0fc537d2013-05-07 21:42:47 +000025#define smp_flush_tlb_all() flush_tlb_all()
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/*
28 * flush_tlb_mm()
29 *
30 * XXX This code is NOT valid for HP-UX compatibility processes,
31 * (although it will probably work 99% of the time). HP-UX
32 * processes are free to play with the space id's and save them
33 * over long periods of time, etc. so we have to preserve the
34 * space and just flush the entire tlb. We need to check the
35 * personality in order to do that, but the personality is not
36 * currently being set correctly.
37 *
38 * Of course, Linux processes could do the same thing, but
39 * we don't support that (and the compilers, dynamic linker,
40 * etc. do not do that).
41 */
42
43static inline void flush_tlb_mm(struct mm_struct *mm)
44{
Kyle McMartin04532c42007-02-18 19:35:45 +000045 BUG_ON(mm == &init_mm); /* Should never happen */
46
Kyle McMartin5289f462008-12-23 08:44:30 -050047#if 1 || defined(CONFIG_SMP)
Kyle McMartin04532c42007-02-18 19:35:45 +000048 flush_tlb_all();
49#else
Kyle McMartin5289f462008-12-23 08:44:30 -050050 /* FIXME: currently broken, causing space id and protection ids
51 * to go out of sync, resulting in faults on userspace accesses.
52 */
Kyle McMartin04532c42007-02-18 19:35:45 +000053 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static inline void flush_tlb_page(struct vm_area_struct *vma,
64 unsigned long addr)
65{
Helge Dellere82a3b72009-06-16 20:51:48 +000066 unsigned long flags;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 /* For one page, it's not worth testing the split_tlb variable */
69
70 mb();
71 mtsp(vma->vm_mm->context,1);
Helge Dellere82a3b72009-06-16 20:51:48 +000072 purge_tlb_start(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 pdtlb(addr);
74 pitlb(addr);
Helge Dellere82a3b72009-06-16 20:51:48 +000075 purge_tlb_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Randolph Chungd6ce8622006-12-12 05:51:54 -080078void __flush_tlb_range(unsigned long sid,
79 unsigned long start, unsigned long end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Randolph Chungd6ce8622006-12-12 05:51:54 -080081#define flush_tlb_range(vma,start,end) __flush_tlb_range((vma)->vm_mm->context,start,end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Randolph Chungd6ce8622006-12-12 05:51:54 -080083#define flush_tlb_kernel_range(start, end) __flush_tlb_range(0,start,end)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85#endif