[SPARC32]: Fix SMP build regression
[linux-2.6/linux-loongson.git] / include / asm-m32r / mmu_context.h
blob1f40d4a0acf1a4acd6d0a3764f5b9f09b9439a78
1 #ifndef _ASM_M32R_MMU_CONTEXT_H
2 #define _ASM_M32R_MMU_CONTEXT_H
3 #ifdef __KERNEL__
5 #include <asm/m32r.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)
12 #ifndef __ASSEMBLY__
14 #include <asm/atomic.h>
15 #include <asm/pgalloc.h>
16 #include <asm/mmu.h>
17 #include <asm/tlbflush.h>
20 * Cache of MMU context last used.
22 #ifndef CONFIG_SMP
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))
35 #ifdef CONFIG_MMU
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. */
48 if (!mc)
49 mmu_context_cache = mc = MMU_CONTEXT_FIRST_VERSION;
51 mm_context(mm) = mc;
55 * Get MMU context if needed.
57 static inline void get_mmu_context(struct mm_struct *mm)
59 if (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
71 * instance.
73 static inline int init_new_context(struct task_struct *tsk,
74 struct mm_struct *mm)
76 #ifndef CONFIG_SMP
77 mm->context = NO_CONTEXT;
78 #else /* CONFIG_SMP */
79 int num_cpus = num_online_cpus();
80 int i;
82 for (i = 0 ; i < num_cpus ; i++)
83 mm->context[i] = NO_CONTEXT;
84 #endif /* CONFIG_SMP */
86 return 0;
90 * Destroy context related info for an mm_struct that is about
91 * to be put to rest.
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)
102 unsigned long asid;
104 asid = *(volatile long *)MASID;
105 asid &= MMU_CONTEXT_ASID_MASK;
107 return asid;
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)
116 get_mmu_context(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)
123 #ifdef CONFIG_SMP
124 int cpu = smp_processor_id();
125 #endif /* CONFIG_SMP */
127 if (prev != next) {
128 #ifdef 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);
135 #ifdef CONFIG_SMP
136 else
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 */