Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 1 | #ifndef __ASM_POWERPC_MMU_CONTEXT_H |
| 2 | #define __ASM_POWERPC_MMU_CONTEXT_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 3 | #ifdef __KERNEL__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 5 | #include <linux/kernel.h> |
| 6 | #include <linux/mm.h> |
| 7 | #include <linux/sched.h> |
| 8 | #include <linux/spinlock.h> |
Kumar Gala | 80a7cc6 | 2007-07-03 03:22:05 -0500 | [diff] [blame] | 9 | #include <asm/mmu.h> |
| 10 | #include <asm/cputable.h> |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 11 | #include <asm/cputhreads.h> |
Kumar Gala | 80a7cc6 | 2007-07-03 03:22:05 -0500 | [diff] [blame] | 12 | |
| 13 | /* |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 14 | * Most if the context management is out of line |
Kumar Gala | 80a7cc6 | 2007-07-03 03:22:05 -0500 | [diff] [blame] | 15 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm); |
| 17 | extern void destroy_context(struct mm_struct *mm); |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 18 | #ifdef CONFIG_SPAPR_TCE_IOMMU |
| 19 | struct mm_iommu_table_group_mem_t; |
| 20 | |
Balbir Singh | 2e5bbb5 | 2016-09-06 16:27:31 +1000 | [diff] [blame] | 21 | extern int isolate_lru_page(struct page *page); /* from internal.h */ |
Alexey Kardashevskiy | d7baee6 | 2016-11-30 17:52:00 +1100 | [diff] [blame] | 22 | extern bool mm_iommu_preregistered(struct mm_struct *mm); |
| 23 | extern long mm_iommu_get(struct mm_struct *mm, |
| 24 | unsigned long ua, unsigned long entries, |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 25 | struct mm_iommu_table_group_mem_t **pmem); |
Alexey Kardashevskiy | d7baee6 | 2016-11-30 17:52:00 +1100 | [diff] [blame] | 26 | extern long mm_iommu_put(struct mm_struct *mm, |
| 27 | struct mm_iommu_table_group_mem_t *mem); |
Alexey Kardashevskiy | 88f54a3 | 2016-11-30 17:51:59 +1100 | [diff] [blame] | 28 | extern void mm_iommu_init(struct mm_struct *mm); |
| 29 | extern void mm_iommu_cleanup(struct mm_struct *mm); |
Alexey Kardashevskiy | d7baee6 | 2016-11-30 17:52:00 +1100 | [diff] [blame] | 30 | extern struct mm_iommu_table_group_mem_t *mm_iommu_lookup(struct mm_struct *mm, |
| 31 | unsigned long ua, unsigned long size); |
Alexey Kardashevskiy | 6b5c19c | 2017-03-22 15:21:47 +1100 | [diff] [blame] | 32 | extern struct mm_iommu_table_group_mem_t *mm_iommu_lookup_rm( |
| 33 | struct mm_struct *mm, unsigned long ua, unsigned long size); |
Alexey Kardashevskiy | d7baee6 | 2016-11-30 17:52:00 +1100 | [diff] [blame] | 34 | extern struct mm_iommu_table_group_mem_t *mm_iommu_find(struct mm_struct *mm, |
| 35 | unsigned long ua, unsigned long entries); |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 36 | extern long mm_iommu_ua_to_hpa(struct mm_iommu_table_group_mem_t *mem, |
| 37 | unsigned long ua, unsigned long *hpa); |
Alexey Kardashevskiy | 6b5c19c | 2017-03-22 15:21:47 +1100 | [diff] [blame] | 38 | extern long mm_iommu_ua_to_hpa_rm(struct mm_iommu_table_group_mem_t *mem, |
| 39 | unsigned long ua, unsigned long *hpa); |
Alexey Kardashevskiy | 15b244a | 2015-06-05 16:35:24 +1000 | [diff] [blame] | 40 | extern long mm_iommu_mapped_inc(struct mm_iommu_table_group_mem_t *mem); |
| 41 | extern void mm_iommu_mapped_dec(struct mm_iommu_table_group_mem_t *mem); |
| 42 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern void switch_slb(struct task_struct *tsk, struct mm_struct *mm); |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 44 | extern void set_context(unsigned long id, pgd_t *pgd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Benjamin Herrenschmidt | 6f0ef0f | 2009-07-23 23:15:26 +0000 | [diff] [blame] | 46 | #ifdef CONFIG_PPC_BOOK3S_64 |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 47 | extern void radix__switch_mmu_context(struct mm_struct *prev, |
Benjamin Herrenschmidt | a25bd72 | 2017-07-24 14:26:06 +1000 | [diff] [blame] | 48 | struct mm_struct *next); |
Aneesh Kumar K.V | d2adba3 | 2016-04-29 23:26:01 +1000 | [diff] [blame] | 49 | static inline void switch_mmu_context(struct mm_struct *prev, |
| 50 | struct mm_struct *next, |
| 51 | struct task_struct *tsk) |
| 52 | { |
Aneesh Kumar K.V | 7e381c0 | 2016-04-29 23:26:02 +1000 | [diff] [blame] | 53 | if (radix_enabled()) |
| 54 | return radix__switch_mmu_context(prev, next); |
Aneesh Kumar K.V | d2adba3 | 2016-04-29 23:26:01 +1000 | [diff] [blame] | 55 | return switch_slb(tsk, next); |
| 56 | } |
| 57 | |
Michael Ellerman | a336f2f | 2017-03-29 22:00:46 +1100 | [diff] [blame] | 58 | extern int hash__alloc_context_id(void); |
Aneesh Kumar K.V | 82228e3 | 2017-03-22 09:07:00 +0530 | [diff] [blame] | 59 | extern void hash__reserve_context_id(int id); |
Alexander Graf | e85a471 | 2009-11-02 12:02:30 +0000 | [diff] [blame] | 60 | extern void __destroy_context(int context_id); |
Benjamin Herrenschmidt | 6f0ef0f | 2009-07-23 23:15:26 +0000 | [diff] [blame] | 61 | static inline void mmu_context_init(void) { } |
| 62 | #else |
Aneesh Kumar K.V | d2adba3 | 2016-04-29 23:26:01 +1000 | [diff] [blame] | 63 | extern void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next, |
| 64 | struct task_struct *tsk); |
Alexander Graf | c83ec26 | 2010-04-16 00:11:36 +0200 | [diff] [blame] | 65 | extern unsigned long __init_new_context(void); |
| 66 | extern void __destroy_context(unsigned long context_id); |
Benjamin Herrenschmidt | 6f0ef0f | 2009-07-23 23:15:26 +0000 | [diff] [blame] | 67 | extern void mmu_context_init(void); |
| 68 | #endif |
| 69 | |
Benjamin Herrenschmidt | a25bd72 | 2017-07-24 14:26:06 +1000 | [diff] [blame] | 70 | #if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE) && defined(CONFIG_PPC_RADIX_MMU) |
| 71 | extern void radix_kvm_prefetch_workaround(struct mm_struct *mm); |
| 72 | #else |
| 73 | static inline void radix_kvm_prefetch_workaround(struct mm_struct *mm) { } |
| 74 | #endif |
| 75 | |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 76 | extern void switch_cop(struct mm_struct *next); |
| 77 | extern int use_cop(unsigned long acop, struct mm_struct *mm); |
| 78 | extern void drop_cop(unsigned long acop, struct mm_struct *mm); |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* |
| 81 | * switch_mm is the entry point called from the architecture independent |
Viresh Kumar | 0a0fca9 | 2013-06-04 13:10:24 +0530 | [diff] [blame] | 82 | * code in kernel/sched/core.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | */ |
David Gibson | 9765ad1 | 2017-04-19 16:38:26 +1000 | [diff] [blame] | 84 | static inline void switch_mm_irqs_off(struct mm_struct *prev, |
| 85 | struct mm_struct *next, |
| 86 | struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Benjamin Herrenschmidt | a25bd72 | 2017-07-24 14:26:06 +1000 | [diff] [blame] | 88 | bool new_on_cpu = false; |
| 89 | |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 90 | /* Mark this context has been used on the new CPU */ |
Benjamin Herrenschmidt | a25bd72 | 2017-07-24 14:26:06 +1000 | [diff] [blame] | 91 | if (!cpumask_test_cpu(smp_processor_id(), mm_cpumask(next))) { |
Anton Blanchard | bb85fb5 | 2016-10-03 17:40:29 +1100 | [diff] [blame] | 92 | cpumask_set_cpu(smp_processor_id(), mm_cpumask(next)); |
Benjamin Herrenschmidt | a25bd72 | 2017-07-24 14:26:06 +1000 | [diff] [blame] | 93 | new_on_cpu = true; |
| 94 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 96 | /* 32-bit keeps track of the current PGDIR in the thread struct */ |
| 97 | #ifdef CONFIG_PPC32 |
| 98 | tsk->thread.pgdir = next->pgd; |
| 99 | #endif /* CONFIG_PPC32 */ |
| 100 | |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 101 | /* 64-bit Book3E keeps track of current PGD in the PACA */ |
| 102 | #ifdef CONFIG_PPC_BOOK3E_64 |
| 103 | get_paca()->pgd = next->pgd; |
| 104 | #endif |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 105 | /* Nothing else to do if we aren't actually switching */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | if (prev == next) |
| 107 | return; |
| 108 | |
Tseng-Hui (Frank) Lin | 851d2e2 | 2011-05-02 20:43:04 +0000 | [diff] [blame] | 109 | #ifdef CONFIG_PPC_ICSWX |
| 110 | /* Switch coprocessor context only if prev or next uses a coprocessor */ |
| 111 | if (prev->context.acop || next->context.acop) |
| 112 | switch_cop(next); |
| 113 | #endif /* CONFIG_PPC_ICSWX */ |
| 114 | |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 115 | /* We must stop all altivec streams before changing the HW |
| 116 | * context |
| 117 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | #ifdef CONFIG_ALTIVEC |
| 119 | if (cpu_has_feature(CPU_FTR_ALTIVEC)) |
| 120 | asm volatile ("dssall"); |
| 121 | #endif /* CONFIG_ALTIVEC */ |
Benjamin Herrenschmidt | a25bd72 | 2017-07-24 14:26:06 +1000 | [diff] [blame] | 122 | |
| 123 | if (new_on_cpu) |
| 124 | radix_kvm_prefetch_workaround(next); |
| 125 | |
Aneesh Kumar K.V | d2adba3 | 2016-04-29 23:26:01 +1000 | [diff] [blame] | 126 | /* |
| 127 | * The actual HW switching method differs between the various |
| 128 | * sub architectures. Out of line for now |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 129 | */ |
Aneesh Kumar K.V | d2adba3 | 2016-04-29 23:26:01 +1000 | [diff] [blame] | 130 | switch_mmu_context(prev, next, tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
David Gibson | 9765ad1 | 2017-04-19 16:38:26 +1000 | [diff] [blame] | 133 | static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, |
| 134 | struct task_struct *tsk) |
| 135 | { |
| 136 | unsigned long flags; |
| 137 | |
| 138 | local_irq_save(flags); |
| 139 | switch_mm_irqs_off(prev, next, tsk); |
| 140 | local_irq_restore(flags); |
| 141 | } |
| 142 | #define switch_mm_irqs_off switch_mm_irqs_off |
| 143 | |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | #define deactivate_mm(tsk,mm) do { } while (0) |
| 146 | |
| 147 | /* |
| 148 | * After we have set current->mm to a new value, this activates |
| 149 | * the context for the new mm so we see the new mappings. |
| 150 | */ |
| 151 | static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next) |
| 152 | { |
| 153 | unsigned long flags; |
| 154 | |
| 155 | local_irq_save(flags); |
| 156 | switch_mm(prev, next, current); |
| 157 | local_irq_restore(flags); |
| 158 | } |
| 159 | |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 160 | /* We don't currently use enter_lazy_tlb() for anything */ |
| 161 | static inline void enter_lazy_tlb(struct mm_struct *mm, |
| 162 | struct task_struct *tsk) |
| 163 | { |
Benjamin Herrenschmidt | 25d21ad | 2009-07-23 23:15:47 +0000 | [diff] [blame] | 164 | /* 64-bit Book3E keeps track of current PGD in the PACA */ |
| 165 | #ifdef CONFIG_PPC_BOOK3E_64 |
| 166 | get_paca()->pgd = NULL; |
| 167 | #endif |
Benjamin Herrenschmidt | 5e69661 | 2008-12-18 19:13:24 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Laurent Dufour | 83d3f0e | 2015-06-24 16:56:22 -0700 | [diff] [blame] | 170 | static inline void arch_dup_mmap(struct mm_struct *oldmm, |
| 171 | struct mm_struct *mm) |
| 172 | { |
| 173 | } |
| 174 | |
| 175 | static inline void arch_exit_mmap(struct mm_struct *mm) |
| 176 | { |
| 177 | } |
| 178 | |
| 179 | static inline void arch_unmap(struct mm_struct *mm, |
| 180 | struct vm_area_struct *vma, |
| 181 | unsigned long start, unsigned long end) |
| 182 | { |
| 183 | if (start <= mm->context.vdso_base && mm->context.vdso_base < end) |
| 184 | mm->context.vdso_base = 0; |
| 185 | } |
| 186 | |
| 187 | static inline void arch_bprm_mm_init(struct mm_struct *mm, |
| 188 | struct vm_area_struct *vma) |
| 189 | { |
| 190 | } |
| 191 | |
Dave Hansen | 1b2ee12 | 2016-02-12 13:02:21 -0800 | [diff] [blame] | 192 | static inline bool arch_vma_access_permitted(struct vm_area_struct *vma, |
Dave Hansen | d61172b | 2016-02-12 13:02:24 -0800 | [diff] [blame] | 193 | bool write, bool execute, bool foreign) |
Dave Hansen | 33a709b | 2016-02-12 13:02:19 -0800 | [diff] [blame] | 194 | { |
| 195 | /* by default, allow everything */ |
| 196 | return true; |
| 197 | } |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 198 | #endif /* __KERNEL__ */ |
Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 199 | #endif /* __ASM_POWERPC_MMU_CONTEXT_H */ |