1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
4 * Copyright (C) 2008-2009 PetaLogix
5 * Copyright (C) 2006 Atmark Techno, Inc.
8 #ifndef _ASM_MICROBLAZE_MMU_CONTEXT_H
9 #define _ASM_MICROBLAZE_MMU_CONTEXT_H
11 #include <linux/atomic.h>
12 #include <linux/mm_types.h>
13 #include <linux/sched.h>
15 #include <asm/bitops.h>
17 #include <asm-generic/mm_hooks.h>
21 * This function defines the mapping from contexts to VSIDs (virtual
22 * segment IDs). We use a skew on both the context and the high 4 bits
23 * of the 32-bit virtual address (the "effective segment ID") in order
24 * to spread out the entries in the MMU hash table.
26 # define CTX_TO_VSID(ctx, va) (((ctx) * (897 * 16) + ((va) >> 28) * 0x111) \
30 MicroBlaze has 256 contexts, so we can just rotate through these
31 as a way of "switching" contexts. If the TID of the TLB is zero,
32 the PID/TID comparison is disabled, so we can use a TID of zero
33 to represent all kernel pages as shared among all contexts.
36 # define NO_CONTEXT 256
37 # define LAST_CONTEXT 255
38 # define FIRST_CONTEXT 1
41 * Set the current MMU context.
42 * This is done byloading up the segment registers for the user part of the
45 * Since the PGD is immediately available, it is much faster to simply
46 * pass this along as a second parameter, which is required for 8xx and
47 * can be used for debugging on all processors (if you happen to have
50 extern void set_context(mm_context_t context
, pgd_t
*pgd
);
53 * Bitmap of contexts in use.
54 * The size of this bitmap is LAST_CONTEXT + 1 bits.
56 extern unsigned long context_map
[];
59 * This caches the next context number that we expect to be free.
60 * Its use is an optimization only, we can't rely on this context
61 * number to be free, but it usually will be.
63 extern mm_context_t next_mmu_context
;
66 * Since we don't have sufficient contexts to give one to every task
67 * that could be in the system, we need to be able to steal contexts.
68 * These variables support that.
70 extern atomic_t nr_free_contexts
;
71 extern struct mm_struct
*context_mm
[LAST_CONTEXT
+1];
72 extern void steal_context(void);
75 * Get a new mmu context for the address space described by `mm'.
77 static inline void get_mmu_context(struct mm_struct
*mm
)
81 if (mm
->context
!= NO_CONTEXT
)
83 while (atomic_dec_if_positive(&nr_free_contexts
) < 0)
85 ctx
= next_mmu_context
;
86 while (test_and_set_bit(ctx
, context_map
)) {
87 ctx
= find_next_zero_bit(context_map
, LAST_CONTEXT
+1, ctx
);
88 if (ctx
> LAST_CONTEXT
)
91 next_mmu_context
= (ctx
+ 1) & LAST_CONTEXT
;
97 * Set up the context for a new address space.
99 # define init_new_context(tsk, mm) (((mm)->context = NO_CONTEXT), 0)
102 * We're finished using the context for an address space.
104 #define destroy_context destroy_context
105 static inline void destroy_context(struct mm_struct
*mm
)
107 if (mm
->context
!= NO_CONTEXT
) {
108 clear_bit(mm
->context
, context_map
);
109 mm
->context
= NO_CONTEXT
;
110 atomic_inc(&nr_free_contexts
);
114 static inline void switch_mm(struct mm_struct
*prev
, struct mm_struct
*next
,
115 struct task_struct
*tsk
)
117 tsk
->thread
.pgdir
= next
->pgd
;
118 get_mmu_context(next
);
119 set_context(next
->context
, next
->pgd
);
123 * After we have set current->mm to a new value, this activates
124 * the context for the new mm so we see the new mappings.
126 #define activate_mm activate_mm
127 static inline void activate_mm(struct mm_struct
*active_mm
,
128 struct mm_struct
*mm
)
130 current
->thread
.pgdir
= mm
->pgd
;
132 set_context(mm
->context
, mm
->pgd
);
135 extern void mmu_context_init(void);
137 #include <asm-generic/mmu_context.h>
139 # endif /* __KERNEL__ */
140 #endif /* _ASM_MICROBLAZE_MMU_CONTEXT_H */