KVM: PPC: Book3S HV: Migrate pinned pages out of CMA
[cascardo/linux.git] / arch / powerpc / include / asm / mmu_context.h
1 #ifndef __ASM_POWERPC_MMU_CONTEXT_H
2 #define __ASM_POWERPC_MMU_CONTEXT_H
3 #ifdef __KERNEL__
4
5 #include <linux/kernel.h>
6 #include <linux/mm.h>
7 #include <linux/sched.h>
8 #include <linux/spinlock.h>
9 #include <asm/mmu.h>    
10 #include <asm/cputable.h>
11 #include <asm/cputhreads.h>
12
13 /*
14  * Most if the context management is out of line
15  */
16 extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
17 extern void destroy_context(struct mm_struct *mm);
18 #ifdef CONFIG_SPAPR_TCE_IOMMU
19 struct mm_iommu_table_group_mem_t;
20
21 extern int isolate_lru_page(struct page *page); /* from internal.h */
22 extern bool mm_iommu_preregistered(void);
23 extern long mm_iommu_get(unsigned long ua, unsigned long entries,
24                 struct mm_iommu_table_group_mem_t **pmem);
25 extern long mm_iommu_put(struct mm_iommu_table_group_mem_t *mem);
26 extern void mm_iommu_init(mm_context_t *ctx);
27 extern void mm_iommu_cleanup(mm_context_t *ctx);
28 extern struct mm_iommu_table_group_mem_t *mm_iommu_lookup(unsigned long ua,
29                 unsigned long size);
30 extern struct mm_iommu_table_group_mem_t *mm_iommu_find(unsigned long ua,
31                 unsigned long entries);
32 extern long mm_iommu_ua_to_hpa(struct mm_iommu_table_group_mem_t *mem,
33                 unsigned long ua, unsigned long *hpa);
34 extern long mm_iommu_mapped_inc(struct mm_iommu_table_group_mem_t *mem);
35 extern void mm_iommu_mapped_dec(struct mm_iommu_table_group_mem_t *mem);
36 #endif
37 extern void switch_slb(struct task_struct *tsk, struct mm_struct *mm);
38 extern void set_context(unsigned long id, pgd_t *pgd);
39
40 #ifdef CONFIG_PPC_BOOK3S_64
41 extern void radix__switch_mmu_context(struct mm_struct *prev,
42                                      struct mm_struct *next);
43 static inline void switch_mmu_context(struct mm_struct *prev,
44                                       struct mm_struct *next,
45                                       struct task_struct *tsk)
46 {
47         if (radix_enabled())
48                 return radix__switch_mmu_context(prev, next);
49         return switch_slb(tsk, next);
50 }
51
52 extern int __init_new_context(void);
53 extern void __destroy_context(int context_id);
54 static inline void mmu_context_init(void) { }
55 #else
56 extern void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next,
57                                struct task_struct *tsk);
58 extern unsigned long __init_new_context(void);
59 extern void __destroy_context(unsigned long context_id);
60 extern void mmu_context_init(void);
61 #endif
62
63 extern void switch_cop(struct mm_struct *next);
64 extern int use_cop(unsigned long acop, struct mm_struct *mm);
65 extern void drop_cop(unsigned long acop, struct mm_struct *mm);
66
67 /*
68  * switch_mm is the entry point called from the architecture independent
69  * code in kernel/sched/core.c
70  */
71 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
72                              struct task_struct *tsk)
73 {
74         /* Mark this context has been used on the new CPU */
75         cpumask_set_cpu(smp_processor_id(), mm_cpumask(next));
76
77         /* 32-bit keeps track of the current PGDIR in the thread struct */
78 #ifdef CONFIG_PPC32
79         tsk->thread.pgdir = next->pgd;
80 #endif /* CONFIG_PPC32 */
81
82         /* 64-bit Book3E keeps track of current PGD in the PACA */
83 #ifdef CONFIG_PPC_BOOK3E_64
84         get_paca()->pgd = next->pgd;
85 #endif
86         /* Nothing else to do if we aren't actually switching */
87         if (prev == next)
88                 return;
89
90 #ifdef CONFIG_PPC_ICSWX
91         /* Switch coprocessor context only if prev or next uses a coprocessor */
92         if (prev->context.acop || next->context.acop)
93                 switch_cop(next);
94 #endif /* CONFIG_PPC_ICSWX */
95
96         /* We must stop all altivec streams before changing the HW
97          * context
98          */
99 #ifdef CONFIG_ALTIVEC
100         if (cpu_has_feature(CPU_FTR_ALTIVEC))
101                 asm volatile ("dssall");
102 #endif /* CONFIG_ALTIVEC */
103         /*
104          * The actual HW switching method differs between the various
105          * sub architectures. Out of line for now
106          */
107         switch_mmu_context(prev, next, tsk);
108 }
109
110 #define deactivate_mm(tsk,mm)   do { } while (0)
111
112 /*
113  * After we have set current->mm to a new value, this activates
114  * the context for the new mm so we see the new mappings.
115  */
116 static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
117 {
118         unsigned long flags;
119
120         local_irq_save(flags);
121         switch_mm(prev, next, current);
122         local_irq_restore(flags);
123 }
124
125 /* We don't currently use enter_lazy_tlb() for anything */
126 static inline void enter_lazy_tlb(struct mm_struct *mm,
127                                   struct task_struct *tsk)
128 {
129         /* 64-bit Book3E keeps track of current PGD in the PACA */
130 #ifdef CONFIG_PPC_BOOK3E_64
131         get_paca()->pgd = NULL;
132 #endif
133 }
134
135 static inline void arch_dup_mmap(struct mm_struct *oldmm,
136                                  struct mm_struct *mm)
137 {
138 }
139
140 static inline void arch_exit_mmap(struct mm_struct *mm)
141 {
142 }
143
144 static inline void arch_unmap(struct mm_struct *mm,
145                               struct vm_area_struct *vma,
146                               unsigned long start, unsigned long end)
147 {
148         if (start <= mm->context.vdso_base && mm->context.vdso_base < end)
149                 mm->context.vdso_base = 0;
150 }
151
152 static inline void arch_bprm_mm_init(struct mm_struct *mm,
153                                      struct vm_area_struct *vma)
154 {
155 }
156
157 static inline bool arch_vma_access_permitted(struct vm_area_struct *vma,
158                 bool write, bool execute, bool foreign)
159 {
160         /* by default, allow everything */
161         return true;
162 }
163
164 static inline bool arch_pte_access_permitted(pte_t pte, bool write)
165 {
166         /* by default, allow everything */
167         return true;
168 }
169 #endif /* __KERNEL__ */
170 #endif /* __ASM_POWERPC_MMU_CONTEXT_H */