1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __M68K_MMU_CONTEXT_H
3 #define __M68K_MMU_CONTEXT_H
5 #include <asm-generic/mm_hooks.h>
6 #include <linux/mm_types.h>
8 static inline void enter_lazy_tlb(struct mm_struct
*mm
, struct task_struct
*tsk
)
14 #if defined(CONFIG_COLDFIRE)
16 #include <asm/atomic.h>
17 #include <asm/bitops.h>
18 #include <asm/mcfmmu.h>
21 #define NO_CONTEXT 256
22 #define LAST_CONTEXT 255
23 #define FIRST_CONTEXT 1
25 extern unsigned long context_map
[];
26 extern mm_context_t next_mmu_context
;
28 extern atomic_t nr_free_contexts
;
29 extern struct mm_struct
*context_mm
[LAST_CONTEXT
+1];
30 extern void steal_context(void);
32 static inline void get_mmu_context(struct mm_struct
*mm
)
36 if (mm
->context
!= NO_CONTEXT
)
38 while (atomic_dec_and_test_lt(&nr_free_contexts
)) {
39 atomic_inc(&nr_free_contexts
);
42 ctx
= next_mmu_context
;
43 while (test_and_set_bit(ctx
, context_map
)) {
44 ctx
= find_next_zero_bit(context_map
, LAST_CONTEXT
+1, ctx
);
45 if (ctx
> LAST_CONTEXT
)
48 next_mmu_context
= (ctx
+ 1) & LAST_CONTEXT
;
54 * Set up the context for a new address space.
56 #define init_new_context(tsk, mm) (((mm)->context = NO_CONTEXT), 0)
59 * We're finished using the context for an address space.
61 static inline void destroy_context(struct mm_struct
*mm
)
63 if (mm
->context
!= NO_CONTEXT
) {
64 clear_bit(mm
->context
, context_map
);
65 mm
->context
= NO_CONTEXT
;
66 atomic_inc(&nr_free_contexts
);
70 static inline void set_context(mm_context_t context
, pgd_t
*pgd
)
72 __asm__
__volatile__ ("movec %0,%%asid" : : "d" (context
));
75 static inline void switch_mm(struct mm_struct
*prev
, struct mm_struct
*next
,
76 struct task_struct
*tsk
)
78 get_mmu_context(tsk
->mm
);
79 set_context(tsk
->mm
->context
, next
->pgd
);
83 * After we have set current->mm to a new value, this activates
84 * the context for the new mm so we see the new mappings.
86 static inline void activate_mm(struct mm_struct
*active_mm
,
90 set_context(mm
->context
, mm
->pgd
);
93 #define deactivate_mm(tsk, mm) do { } while (0)
95 #define prepare_arch_switch(next) load_ksp_mmu(next)
97 static inline void load_ksp_mmu(struct task_struct
*task
)
100 struct mm_struct
*mm
;
107 local_irq_save(flags
);
108 mmuar
= task
->thread
.ksp
;
110 /* Search for a valid TLB entry, if one is found, don't remap */
111 mmu_write(MMUAR
, mmuar
);
112 mmu_write(MMUOR
, MMUOR_STLB
| MMUOR_ADR
);
113 if (mmu_read(MMUSR
) & MMUSR_HIT
)
116 if (mmuar
>= PAGE_OFFSET
) {
119 pr_info("load_ksp_mmu: non-kernel mm found: 0x%p\n", task
->mm
);
126 pgd
= pgd_offset(mm
, mmuar
);
130 pmd
= pmd_offset(pgd
, mmuar
);
134 pte
= (mmuar
>= PAGE_OFFSET
) ? pte_offset_kernel(pmd
, mmuar
)
135 : pte_offset_map(pmd
, mmuar
);
136 if (pte_none(*pte
) || !pte_present(*pte
))
139 set_pte(pte
, pte_mkyoung(*pte
));
140 asid
= mm
->context
& 0xff;
141 if (!pte_dirty(*pte
) && mmuar
<= PAGE_OFFSET
)
142 set_pte(pte
, pte_wrprotect(*pte
));
144 mmu_write(MMUTR
, (mmuar
& PAGE_MASK
) | (asid
<< MMUTR_IDN
) |
145 (((int)(pte
->pte
) & (int)CF_PAGE_MMUTR_MASK
)
146 >> CF_PAGE_MMUTR_SHIFT
) | MMUTR_V
);
148 mmu_write(MMUDR
, (pte_val(*pte
) & PAGE_MASK
) |
149 ((pte
->pte
) & CF_PAGE_MMUDR_MASK
) | MMUDR_SZ_8KB
| MMUDR_X
);
151 mmu_write(MMUOR
, MMUOR_ACC
| MMUOR_UAA
);
156 pr_info("ksp load failed: mm=0x%p ksp=0x08%lx\n", mm
, mmuar
);
158 local_irq_restore(flags
);
161 #elif defined(CONFIG_SUN3)
162 #include <asm/sun3mmu.h>
163 #include <linux/sched.h>
165 extern unsigned long get_free_context(struct mm_struct
*mm
);
166 extern void clear_context(unsigned long context
);
168 /* set the context for a new task to unmapped */
169 static inline int init_new_context(struct task_struct
*tsk
,
170 struct mm_struct
*mm
)
172 mm
->context
= SUN3_INVALID_CONTEXT
;
176 /* find the context given to this process, and if it hasn't already
177 got one, go get one for it. */
178 static inline void get_mmu_context(struct mm_struct
*mm
)
180 if (mm
->context
== SUN3_INVALID_CONTEXT
)
181 mm
->context
= get_free_context(mm
);
184 /* flush context if allocated... */
185 static inline void destroy_context(struct mm_struct
*mm
)
187 if (mm
->context
!= SUN3_INVALID_CONTEXT
)
188 clear_context(mm
->context
);
191 static inline void activate_context(struct mm_struct
*mm
)
194 sun3_put_context(mm
->context
);
197 static inline void switch_mm(struct mm_struct
*prev
, struct mm_struct
*next
,
198 struct task_struct
*tsk
)
200 activate_context(tsk
->mm
);
203 #define deactivate_mm(tsk, mm) do { } while (0)
205 static inline void activate_mm(struct mm_struct
*prev_mm
,
206 struct mm_struct
*next_mm
)
208 activate_context(next_mm
);
213 #include <asm/setup.h>
214 #include <asm/page.h>
215 #include <asm/pgalloc.h>
217 static inline int init_new_context(struct task_struct
*tsk
,
218 struct mm_struct
*mm
)
220 mm
->context
= virt_to_phys(mm
->pgd
);
224 #define destroy_context(mm) do { } while(0)
226 static inline void switch_mm_0230(struct mm_struct
*mm
)
228 unsigned long crp
[2] = {
229 0x80000000 | _PAGE_TABLE
, mm
->context
233 asm volatile (".chip 68030");
235 /* flush MC68030/MC68020 caches (they are virtually addressed) */
240 : "=d" (tmp
) : "di" (FLUSH_I_AND_D
));
242 /* Switch the root pointer. For a 030-only kernel,
243 * avoid flushing the whole ATC, we only need to
244 * flush the user entries. The 68851 does this by
245 * itself. Avoid a runtime check here.
248 #ifdef CPU_M68030_ONLY
256 asm volatile (".chip 68k");
259 static inline void switch_mm_0460(struct mm_struct
*mm
)
261 asm volatile (".chip 68040");
263 /* flush address translation cache (user entries) */
264 asm volatile ("pflushan");
266 /* switch the root pointer */
267 asm volatile ("movec %0,%%urp" : : "r" (mm
->context
));
272 /* clear user entries in the branch cache */
277 : "=d" (tmp
): "di" (0x00200000));
280 asm volatile (".chip 68k");
283 static inline void switch_mm(struct mm_struct
*prev
, struct mm_struct
*next
, struct task_struct
*tsk
)
286 if (CPU_IS_020_OR_030
)
287 switch_mm_0230(next
);
289 switch_mm_0460(next
);
293 #define deactivate_mm(tsk,mm) do { } while (0)
295 static inline void activate_mm(struct mm_struct
*prev_mm
,
296 struct mm_struct
*next_mm
)
298 next_mm
->context
= virt_to_phys(next_mm
->pgd
);
300 if (CPU_IS_020_OR_030
)
301 switch_mm_0230(next_mm
);
303 switch_mm_0460(next_mm
);
308 #else /* !CONFIG_MMU */
310 static inline int init_new_context(struct task_struct
*tsk
, struct mm_struct
*mm
)
316 static inline void switch_mm(struct mm_struct
*prev
, struct mm_struct
*next
, struct task_struct
*tsk
)
320 #define destroy_context(mm) do { } while (0)
321 #define deactivate_mm(tsk,mm) do { } while (0)
323 static inline void activate_mm(struct mm_struct
*prev_mm
, struct mm_struct
*next_mm
)
327 #endif /* CONFIG_MMU */
328 #endif /* __M68K_MMU_CONTEXT_H */