Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 1 | #ifndef _ASM_POWERPC_TLBFLUSH_H |
| 2 | #define _ASM_POWERPC_TLBFLUSH_H |
Benjamin Herrenschmidt | e701d26 | 2007-10-30 09:46:06 +1100 | [diff] [blame] | 3 | |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 4 | /* |
| 5 | * TLB flushing: |
| 6 | * |
| 7 | * - flush_tlb_mm(mm) flushes the specified mm context TLB's |
| 8 | * - flush_tlb_page(vma, vmaddr) flushes one page |
Kumar Gala | df3b861 | 2008-11-19 05:53:24 +0000 | [diff] [blame] | 9 | * - local_flush_tlb_page(vmaddr) flushes one page on the local processor |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 10 | * - flush_tlb_page_nohash(vma, vmaddr) flushes one page if SW loaded TLB |
| 11 | * - flush_tlb_range(vma, start, end) flushes a range of pages |
| 12 | * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License |
| 16 | * as published by the Free Software Foundation; either version |
| 17 | * 2 of the License, or (at your option) any later version. |
| 18 | */ |
| 19 | #ifdef __KERNEL__ |
| 20 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 21 | #if defined(CONFIG_4xx) || defined(CONFIG_8xx) || defined(CONFIG_FSL_BOOKE) |
| 22 | /* |
| 23 | * TLB flushing for software loaded TLB chips |
| 24 | * |
| 25 | * TODO: (CONFIG_FSL_BOOKE) determine if flush_tlb_range & |
| 26 | * flush_tlb_kernel_range are best implemented as tlbia vs |
| 27 | * specific tlbie's |
| 28 | */ |
| 29 | |
Benjamin Herrenschmidt | e701d26 | 2007-10-30 09:46:06 +1100 | [diff] [blame] | 30 | #include <linux/mm.h> |
| 31 | |
Benjamin Herrenschmidt | 2ca8cf7 | 2008-12-18 19:13:29 +0000 | [diff] [blame^] | 32 | #define MMU_NO_CONTEXT ((unsigned int)-1) |
| 33 | |
Benjamin Herrenschmidt | e701d26 | 2007-10-30 09:46:06 +1100 | [diff] [blame] | 34 | extern void _tlbie(unsigned long address, unsigned int pid); |
Kumar Gala | 0ba3418 | 2008-07-15 16:12:25 -0500 | [diff] [blame] | 35 | extern void _tlbil_all(void); |
| 36 | extern void _tlbil_pid(unsigned int pid); |
| 37 | extern void _tlbil_va(unsigned long address, unsigned int pid); |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 38 | |
| 39 | #if defined(CONFIG_40x) || defined(CONFIG_8xx) |
| 40 | #define _tlbia() asm volatile ("tlbia; sync" : : : "memory") |
| 41 | #else /* CONFIG_44x || CONFIG_FSL_BOOKE */ |
| 42 | extern void _tlbia(void); |
| 43 | #endif |
| 44 | |
Benjamin Herrenschmidt | 1a37a3f | 2008-12-14 19:44:24 +0000 | [diff] [blame] | 45 | static inline void local_flush_tlb_mm(struct mm_struct *mm) |
| 46 | { |
| 47 | _tlbil_pid(mm->context.id); |
| 48 | } |
| 49 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 50 | static inline void flush_tlb_mm(struct mm_struct *mm) |
| 51 | { |
Kumar Gala | 0ba3418 | 2008-07-15 16:12:25 -0500 | [diff] [blame] | 52 | _tlbil_pid(mm->context.id); |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 53 | } |
| 54 | |
Kumar Gala | df3b861 | 2008-11-19 05:53:24 +0000 | [diff] [blame] | 55 | static inline void local_flush_tlb_page(unsigned long vmaddr) |
| 56 | { |
| 57 | _tlbil_va(vmaddr, 0); |
| 58 | } |
| 59 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 60 | static inline void flush_tlb_page(struct vm_area_struct *vma, |
| 61 | unsigned long vmaddr) |
| 62 | { |
Kumar Gala | 0ba3418 | 2008-07-15 16:12:25 -0500 | [diff] [blame] | 63 | _tlbil_va(vmaddr, vma ? vma->vm_mm->context.id : 0); |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static inline void flush_tlb_page_nohash(struct vm_area_struct *vma, |
| 67 | unsigned long vmaddr) |
| 68 | { |
Kumar Gala | 0ba3418 | 2008-07-15 16:12:25 -0500 | [diff] [blame] | 69 | flush_tlb_page(vma, vmaddr); |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static inline void flush_tlb_range(struct vm_area_struct *vma, |
| 73 | unsigned long start, unsigned long end) |
| 74 | { |
Kumar Gala | 0ba3418 | 2008-07-15 16:12:25 -0500 | [diff] [blame] | 75 | _tlbil_pid(vma->vm_mm->context.id); |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static inline void flush_tlb_kernel_range(unsigned long start, |
| 79 | unsigned long end) |
| 80 | { |
Kumar Gala | 0ba3418 | 2008-07-15 16:12:25 -0500 | [diff] [blame] | 81 | _tlbil_pid(0); |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | #elif defined(CONFIG_PPC32) |
| 85 | /* |
| 86 | * TLB flushing for "classic" hash-MMMU 32-bit CPUs, 6xx, 7xx, 7xxx |
| 87 | */ |
| 88 | extern void _tlbie(unsigned long address); |
| 89 | extern void _tlbia(void); |
| 90 | |
| 91 | extern void flush_tlb_mm(struct mm_struct *mm); |
| 92 | extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr); |
| 93 | extern void flush_tlb_page_nohash(struct vm_area_struct *vma, unsigned long addr); |
| 94 | extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, |
| 95 | unsigned long end); |
| 96 | extern void flush_tlb_kernel_range(unsigned long start, unsigned long end); |
Kumar Gala | df3b861 | 2008-11-19 05:53:24 +0000 | [diff] [blame] | 97 | static inline void local_flush_tlb_page(unsigned long vmaddr) |
| 98 | { |
| 99 | flush_tlb_page(NULL, vmaddr); |
| 100 | } |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 101 | |
| 102 | #else |
| 103 | /* |
| 104 | * TLB flushing for 64-bit has-MMU CPUs |
| 105 | */ |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 106 | |
| 107 | #include <linux/percpu.h> |
| 108 | #include <asm/page.h> |
| 109 | |
| 110 | #define PPC64_TLB_BATCH_NR 192 |
| 111 | |
| 112 | struct ppc64_tlb_batch { |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 113 | int active; |
| 114 | unsigned long index; |
| 115 | struct mm_struct *mm; |
| 116 | real_pte_t pte[PPC64_TLB_BATCH_NR]; |
| 117 | unsigned long vaddr[PPC64_TLB_BATCH_NR]; |
| 118 | unsigned int psize; |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 119 | int ssize; |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 120 | }; |
| 121 | DECLARE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch); |
| 122 | |
| 123 | extern void __flush_tlb_pending(struct ppc64_tlb_batch *batch); |
| 124 | |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 125 | extern void hpte_need_flush(struct mm_struct *mm, unsigned long addr, |
| 126 | pte_t *ptep, unsigned long pte, int huge); |
| 127 | |
| 128 | #define __HAVE_ARCH_ENTER_LAZY_MMU_MODE |
| 129 | |
| 130 | static inline void arch_enter_lazy_mmu_mode(void) |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 131 | { |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 132 | struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch); |
| 133 | |
| 134 | batch->active = 1; |
| 135 | } |
| 136 | |
| 137 | static inline void arch_leave_lazy_mmu_mode(void) |
| 138 | { |
| 139 | struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch); |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 140 | |
| 141 | if (batch->index) |
| 142 | __flush_tlb_pending(batch); |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 143 | batch->active = 0; |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 144 | } |
| 145 | |
Benjamin Herrenschmidt | a741e67 | 2007-04-10 17:09:37 +1000 | [diff] [blame] | 146 | #define arch_flush_lazy_mmu_mode() do {} while (0) |
| 147 | |
| 148 | |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 149 | extern void flush_hash_page(unsigned long va, real_pte_t pte, int psize, |
Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 150 | int ssize, int local); |
Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 151 | extern void flush_hash_range(unsigned long number, int local); |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 152 | |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 153 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 154 | static inline void flush_tlb_mm(struct mm_struct *mm) |
| 155 | { |
| 156 | } |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 157 | |
Kumar Gala | df3b861 | 2008-11-19 05:53:24 +0000 | [diff] [blame] | 158 | static inline void local_flush_tlb_page(unsigned long vmaddr) |
| 159 | { |
| 160 | } |
| 161 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 162 | static inline void flush_tlb_page(struct vm_area_struct *vma, |
| 163 | unsigned long vmaddr) |
| 164 | { |
| 165 | } |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 166 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 167 | static inline void flush_tlb_page_nohash(struct vm_area_struct *vma, |
| 168 | unsigned long vmaddr) |
| 169 | { |
| 170 | } |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 171 | |
David Gibson | 6210230 | 2007-04-24 13:09:12 +1000 | [diff] [blame] | 172 | static inline void flush_tlb_range(struct vm_area_struct *vma, |
| 173 | unsigned long start, unsigned long end) |
| 174 | { |
| 175 | } |
| 176 | |
| 177 | static inline void flush_tlb_kernel_range(unsigned long start, |
| 178 | unsigned long end) |
| 179 | { |
| 180 | } |
| 181 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 182 | /* Private function for use by PCI IO mapping code */ |
| 183 | extern void __flush_hash_table_range(struct mm_struct *mm, unsigned long start, |
| 184 | unsigned long end); |
| 185 | |
| 186 | |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 187 | #endif |
| 188 | |
Stephen Rothwell | 1970282 | 2005-11-04 16:58:59 +1100 | [diff] [blame] | 189 | #endif /*__KERNEL__ */ |
| 190 | #endif /* _ASM_POWERPC_TLBFLUSH_H */ |