1 #ifndef _ASM_M32R_MMU_CONTEXT_H
2 #define _ASM_M32R_MMU_CONTEXT_H
7 #define MMU_CONTEXT_ASID_MASK (0x000000FF)
8 #define MMU_CONTEXT_VERSION_MASK (0xFFFFFF00)
9 #define MMU_CONTEXT_FIRST_VERSION (0x00000100)
10 #define NO_CONTEXT (0x00000000)
14 #include <asm/atomic.h>
15 #include <asm/pgalloc.h>
17 #include <asm/tlbflush.h>
20 * Cache of MMU context last used.
23 extern unsigned long mmu_context_cache_dat
;
24 #define mmu_context_cache mmu_context_cache_dat
25 #define mm_context(mm) mm->context
26 #else /* not CONFIG_SMP */
27 extern unsigned long mmu_context_cache_dat
[];
28 #define mmu_context_cache mmu_context_cache_dat[smp_processor_id()]
29 #define mm_context(mm) mm->context[smp_processor_id()]
30 #endif /* not CONFIG_SMP */
32 #define set_tlb_tag(entry, tag) (*entry = (tag & PAGE_MASK)|get_asid())
33 #define set_tlb_data(entry, data) (*entry = (data | _PAGE_PRESENT))
36 #define enter_lazy_tlb(mm, tsk) do { } while (0)
38 static inline void get_new_mmu_context(struct mm_struct
*mm
)
40 unsigned long mc
= ++mmu_context_cache
;
42 if (!(mc
& MMU_CONTEXT_ASID_MASK
)) {
43 /* We exhaust ASID of this version.
44 Flush all TLB and start new cycle. */
45 local_flush_tlb_all();
46 /* Fix version if needed.
47 Note that we avoid version #0 to distingush NO_CONTEXT. */
49 mmu_context_cache
= mc
= MMU_CONTEXT_FIRST_VERSION
;
55 * Get MMU context if needed.
57 static inline void get_mmu_context(struct mm_struct
*mm
)
60 unsigned long mc
= mmu_context_cache
;
62 /* Check if we have old version of context.
63 If it's old, we need to get new context with new version. */
64 if ((mm_context(mm
) ^ mc
) & MMU_CONTEXT_VERSION_MASK
)
65 get_new_mmu_context(mm
);
70 * Initialize the context related info for a new mm_struct
73 static inline int init_new_context(struct task_struct
*tsk
,
77 mm
->context
= NO_CONTEXT
;
78 #else /* CONFIG_SMP */
79 int num_cpus
= num_online_cpus();
82 for (i
= 0 ; i
< num_cpus
; i
++)
83 mm
->context
[i
] = NO_CONTEXT
;
84 #endif /* CONFIG_SMP */
90 * Destroy context related info for an mm_struct that is about
93 #define destroy_context(mm) do { } while (0)
95 static inline void set_asid(unsigned long asid
)
97 *(volatile unsigned long *)MASID
= (asid
& MMU_CONTEXT_ASID_MASK
);
100 static inline unsigned long get_asid(void)
104 asid
= *(volatile long *)MASID
;
105 asid
&= MMU_CONTEXT_ASID_MASK
;
111 * After we have set current->mm to a new value, this activates
112 * the context for the new mm so we see the new mappings.
114 static inline void activate_context(struct mm_struct
*mm
)
117 set_asid(mm_context(mm
) & MMU_CONTEXT_ASID_MASK
);
120 static inline void switch_mm(struct mm_struct
*prev
,
121 struct mm_struct
*next
, struct task_struct
*tsk
)
124 int cpu
= smp_processor_id();
125 #endif /* CONFIG_SMP */
129 cpu_set(cpu
, next
->cpu_vm_mask
);
130 #endif /* CONFIG_SMP */
131 /* Set MPTB = next->pgd */
132 *(volatile unsigned long *)MPTB
= (unsigned long)next
->pgd
;
133 activate_context(next
);
137 if (!cpu_test_and_set(cpu
, next
->cpu_vm_mask
))
138 activate_context(next
);
139 #endif /* CONFIG_SMP */
142 #define deactivate_mm(tsk, mm) do { } while (0)
144 #define activate_mm(prev, next) \
145 switch_mm((prev), (next), NULL)
147 #else /* not CONFIG_MMU */
148 #define get_mmu_context(mm) do { } while (0)
149 #define init_new_context(tsk,mm) (0)
150 #define destroy_context(mm) do { } while (0)
151 #define set_asid(asid) do { } while (0)
152 #define get_asid() (0)
153 #define activate_context(mm) do { } while (0)
154 #define switch_mm(prev,next,tsk) do { } while (0)
155 #define deactivate_mm(mm,tsk) do { } while (0)
156 #define activate_mm(prev,next) do { } while (0)
157 #define enter_lazy_tlb(mm,tsk) do { } while (0)
158 #endif /* not CONFIG_MMU */
160 #endif /* not __ASSEMBLY__ */
162 #endif /* __KERNEL__ */
163 #endif /* _ASM_M32R_MMU_CONTEXT_H */