blob: 5c451140660a91b3abc7130040685cea8e3db62d [file] [log] [blame]
Paul Mackerras047ea782005-11-19 20:17:32 +11001#ifndef __ASM_POWERPC_MMU_CONTEXT_H
2#define __ASM_POWERPC_MMU_CONTEXT_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +00005#include <linux/kernel.h>
6#include <linux/mm.h>
7#include <linux/sched.h>
8#include <linux/spinlock.h>
Kumar Gala80a7cc62007-07-03 03:22:05 -05009#include <asm/mmu.h>
10#include <asm/cputable.h>
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000011#include <asm/cputhreads.h>
Kumar Gala80a7cc62007-07-03 03:22:05 -050012
13/*
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000014 * Most if the context management is out of line
Kumar Gala80a7cc62007-07-03 03:22:05 -050015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070016extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
17extern void destroy_context(struct mm_struct *mm);
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +100018#ifdef CONFIG_SPAPR_TCE_IOMMU
19struct mm_iommu_table_group_mem_t;
20
Balbir Singh2e5bbb52016-09-06 16:27:31 +100021extern int isolate_lru_page(struct page *page); /* from internal.h */
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +100022extern bool mm_iommu_preregistered(void);
23extern long mm_iommu_get(unsigned long ua, unsigned long entries,
24 struct mm_iommu_table_group_mem_t **pmem);
25extern long mm_iommu_put(struct mm_iommu_table_group_mem_t *mem);
26extern void mm_iommu_init(mm_context_t *ctx);
27extern void mm_iommu_cleanup(mm_context_t *ctx);
28extern struct mm_iommu_table_group_mem_t *mm_iommu_lookup(unsigned long ua,
29 unsigned long size);
30extern struct mm_iommu_table_group_mem_t *mm_iommu_find(unsigned long ua,
31 unsigned long entries);
32extern long mm_iommu_ua_to_hpa(struct mm_iommu_table_group_mem_t *mem,
33 unsigned long ua, unsigned long *hpa);
34extern long mm_iommu_mapped_inc(struct mm_iommu_table_group_mem_t *mem);
35extern void mm_iommu_mapped_dec(struct mm_iommu_table_group_mem_t *mem);
36#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070037extern void switch_slb(struct task_struct *tsk, struct mm_struct *mm);
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000038extern void set_context(unsigned long id, pgd_t *pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Benjamin Herrenschmidt6f0ef0f2009-07-23 23:15:26 +000040#ifdef CONFIG_PPC_BOOK3S_64
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +100041extern void radix__switch_mmu_context(struct mm_struct *prev,
42 struct mm_struct *next);
Aneesh Kumar K.Vd2adba32016-04-29 23:26:01 +100043static inline void switch_mmu_context(struct mm_struct *prev,
44 struct mm_struct *next,
45 struct task_struct *tsk)
46{
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +100047 if (radix_enabled())
48 return radix__switch_mmu_context(prev, next);
Aneesh Kumar K.Vd2adba32016-04-29 23:26:01 +100049 return switch_slb(tsk, next);
50}
51
Alexander Grafe85a4712009-11-02 12:02:30 +000052extern int __init_new_context(void);
53extern void __destroy_context(int context_id);
Benjamin Herrenschmidt6f0ef0f2009-07-23 23:15:26 +000054static inline void mmu_context_init(void) { }
55#else
Aneesh Kumar K.Vd2adba32016-04-29 23:26:01 +100056extern void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next,
57 struct task_struct *tsk);
Alexander Grafc83ec262010-04-16 00:11:36 +020058extern unsigned long __init_new_context(void);
59extern void __destroy_context(unsigned long context_id);
Benjamin Herrenschmidt6f0ef0f2009-07-23 23:15:26 +000060extern void mmu_context_init(void);
61#endif
62
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000063extern void switch_cop(struct mm_struct *next);
64extern int use_cop(unsigned long acop, struct mm_struct *mm);
65extern void drop_cop(unsigned long acop, struct mm_struct *mm);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * switch_mm is the entry point called from the architecture independent
Viresh Kumar0a0fca92013-06-04 13:10:24 +053069 * code in kernel/sched/core.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
71static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
72 struct task_struct *tsk)
73{
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000074 /* Mark this context has been used on the new CPU */
Anton Blanchardbb85fb52016-10-03 17:40:29 +110075 if (!cpumask_test_cpu(smp_processor_id(), mm_cpumask(next)))
76 cpumask_set_cpu(smp_processor_id(), mm_cpumask(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000078 /* 32-bit keeps track of the current PGDIR in the thread struct */
79#ifdef CONFIG_PPC32
80 tsk->thread.pgdir = next->pgd;
81#endif /* CONFIG_PPC32 */
82
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000083 /* 64-bit Book3E keeps track of current PGD in the PACA */
84#ifdef CONFIG_PPC_BOOK3E_64
85 get_paca()->pgd = next->pgd;
86#endif
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000087 /* Nothing else to do if we aren't actually switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (prev == next)
89 return;
90
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000091#ifdef CONFIG_PPC_ICSWX
92 /* Switch coprocessor context only if prev or next uses a coprocessor */
93 if (prev->context.acop || next->context.acop)
94 switch_cop(next);
95#endif /* CONFIG_PPC_ICSWX */
96
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000097 /* We must stop all altivec streams before changing the HW
98 * context
99 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#ifdef CONFIG_ALTIVEC
101 if (cpu_has_feature(CPU_FTR_ALTIVEC))
102 asm volatile ("dssall");
103#endif /* CONFIG_ALTIVEC */
Aneesh Kumar K.Vd2adba32016-04-29 23:26:01 +1000104 /*
105 * The actual HW switching method differs between the various
106 * sub architectures. Out of line for now
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +0000107 */
Aneesh Kumar K.Vd2adba32016-04-29 23:26:01 +1000108 switch_mmu_context(prev, next, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111#define deactivate_mm(tsk,mm) do { } while (0)
112
113/*
114 * After we have set current->mm to a new value, this activates
115 * the context for the new mm so we see the new mappings.
116 */
117static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
118{
119 unsigned long flags;
120
121 local_irq_save(flags);
122 switch_mm(prev, next, current);
123 local_irq_restore(flags);
124}
125
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +0000126/* We don't currently use enter_lazy_tlb() for anything */
127static inline void enter_lazy_tlb(struct mm_struct *mm,
128 struct task_struct *tsk)
129{
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +0000130 /* 64-bit Book3E keeps track of current PGD in the PACA */
131#ifdef CONFIG_PPC_BOOK3E_64
132 get_paca()->pgd = NULL;
133#endif
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +0000134}
135
Laurent Dufour83d3f0e2015-06-24 16:56:22 -0700136static inline void arch_dup_mmap(struct mm_struct *oldmm,
137 struct mm_struct *mm)
138{
139}
140
141static inline void arch_exit_mmap(struct mm_struct *mm)
142{
143}
144
145static inline void arch_unmap(struct mm_struct *mm,
146 struct vm_area_struct *vma,
147 unsigned long start, unsigned long end)
148{
149 if (start <= mm->context.vdso_base && mm->context.vdso_base < end)
150 mm->context.vdso_base = 0;
151}
152
153static inline void arch_bprm_mm_init(struct mm_struct *mm,
154 struct vm_area_struct *vma)
155{
156}
157
Dave Hansen1b2ee122016-02-12 13:02:21 -0800158static inline bool arch_vma_access_permitted(struct vm_area_struct *vma,
Dave Hansend61172b2016-02-12 13:02:24 -0800159 bool write, bool execute, bool foreign)
Dave Hansen33a709b2016-02-12 13:02:19 -0800160{
161 /* by default, allow everything */
162 return true;
163}
164
165static inline bool arch_pte_access_permitted(pte_t pte, bool write)
166{
167 /* by default, allow everything */
168 return true;
169}
Arnd Bergmann88ced032005-12-16 22:43:46 +0100170#endif /* __KERNEL__ */
Paul Mackerras047ea782005-11-19 20:17:32 +1100171#endif /* __ASM_POWERPC_MMU_CONTEXT_H */