Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _PARISC_TLBFLUSH_H |
| 2 | #define _PARISC_TLBFLUSH_H |
| 3 | |
| 4 | /* TLB flushing routines.... */ |
| 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/mm.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 7 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <asm/mmu_context.h> |
| 9 | |
Grant Grundler | 04d472d | 2005-10-21 22:40:24 -0400 | [diff] [blame] | 10 | |
| 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 Deller | e82a3b7 | 2009-06-16 20:51:48 +0000 | [diff] [blame] | 15 | * it on all systems not just the N class. |
Matthew Wilcox | 29a622d | 2005-11-17 16:44:14 -0500 | [diff] [blame] | 16 | */ |
Grant Grundler | 04d472d | 2005-10-21 22:40:24 -0400 | [diff] [blame] | 17 | extern spinlock_t pa_tlb_lock; |
| 18 | |
Helge Deller | e82a3b7 | 2009-06-16 20:51:48 +0000 | [diff] [blame] | 19 | #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 Grundler | 04d472d | 2005-10-21 22:40:24 -0400 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | extern void flush_tlb_all(void); |
Matthew Wilcox | 1b2425e | 2006-01-10 20:47:49 -0500 | [diff] [blame] | 23 | extern void flush_tlb_all_local(void *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * flush_tlb_mm() |
| 27 | * |
| 28 | * XXX This code is NOT valid for HP-UX compatibility processes, |
| 29 | * (although it will probably work 99% of the time). HP-UX |
| 30 | * processes are free to play with the space id's and save them |
| 31 | * over long periods of time, etc. so we have to preserve the |
| 32 | * space and just flush the entire tlb. We need to check the |
| 33 | * personality in order to do that, but the personality is not |
| 34 | * currently being set correctly. |
| 35 | * |
| 36 | * Of course, Linux processes could do the same thing, but |
| 37 | * we don't support that (and the compilers, dynamic linker, |
| 38 | * etc. do not do that). |
| 39 | */ |
| 40 | |
| 41 | static inline void flush_tlb_mm(struct mm_struct *mm) |
| 42 | { |
Kyle McMartin | 04532c4 | 2007-02-18 19:35:45 +0000 | [diff] [blame] | 43 | BUG_ON(mm == &init_mm); /* Should never happen */ |
| 44 | |
Kyle McMartin | 5289f46 | 2008-12-23 08:44:30 -0500 | [diff] [blame] | 45 | #if 1 || defined(CONFIG_SMP) |
Kyle McMartin | 04532c4 | 2007-02-18 19:35:45 +0000 | [diff] [blame] | 46 | flush_tlb_all(); |
| 47 | #else |
Kyle McMartin | 5289f46 | 2008-12-23 08:44:30 -0500 | [diff] [blame] | 48 | /* FIXME: currently broken, causing space id and protection ids |
| 49 | * to go out of sync, resulting in faults on userspace accesses. |
| 50 | */ |
Kyle McMartin | 04532c4 | 2007-02-18 19:35:45 +0000 | [diff] [blame] | 51 | if (mm) { |
| 52 | if (mm->context != 0) |
| 53 | free_sid(mm->context); |
| 54 | mm->context = alloc_sid(); |
| 55 | if (mm == current->active_mm) |
| 56 | load_context(mm->context); |
| 57 | } |
| 58 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | static inline void flush_tlb_page(struct vm_area_struct *vma, |
| 62 | unsigned long addr) |
| 63 | { |
Helge Deller | e82a3b7 | 2009-06-16 20:51:48 +0000 | [diff] [blame] | 64 | unsigned long flags; |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | /* For one page, it's not worth testing the split_tlb variable */ |
| 67 | |
| 68 | mb(); |
| 69 | mtsp(vma->vm_mm->context,1); |
Helge Deller | e82a3b7 | 2009-06-16 20:51:48 +0000 | [diff] [blame] | 70 | purge_tlb_start(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | pdtlb(addr); |
| 72 | pitlb(addr); |
Helge Deller | e82a3b7 | 2009-06-16 20:51:48 +0000 | [diff] [blame] | 73 | purge_tlb_end(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Randolph Chung | d6ce862 | 2006-12-12 05:51:54 -0800 | [diff] [blame] | 76 | void __flush_tlb_range(unsigned long sid, |
| 77 | unsigned long start, unsigned long end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Randolph Chung | d6ce862 | 2006-12-12 05:51:54 -0800 | [diff] [blame] | 79 | #define flush_tlb_range(vma,start,end) __flush_tlb_range((vma)->vm_mm->context,start,end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Randolph Chung | d6ce862 | 2006-12-12 05:51:54 -0800 | [diff] [blame] | 81 | #define flush_tlb_kernel_range(start, end) __flush_tlb_range(0,start,end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | #endif |