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