V4L/DVB (3653g): put v4l encoder/decoder configuration into a separate menu
[linux-2.6/suspend2-2.6.18.git] / include / asm-mips / mmu_context.h
blob61cf22588137a3505c3d469c0da618734fbea190
1 /*
2 * Switch a MMU context.
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 1996, 1997, 1998, 1999 by Ralf Baechle
9 * Copyright (C) 1999 Silicon Graphics, Inc.
11 #ifndef _ASM_MMU_CONTEXT_H
12 #define _ASM_MMU_CONTEXT_H
14 #include <linux/config.h>
15 #include <linux/errno.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <asm/cacheflush.h>
19 #include <asm/tlbflush.h>
22 * For the fast tlb miss handlers, we keep a per cpu array of pointers
23 * to the current pgd for each processor. Also, the proc. id is stuffed
24 * into the context register.
26 extern unsigned long pgd_current[];
28 #define TLBMISS_HANDLER_SETUP_PGD(pgd) \
29 pgd_current[smp_processor_id()] = (unsigned long)(pgd)
31 #ifdef CONFIG_32BIT
32 #define TLBMISS_HANDLER_SETUP() \
33 write_c0_context((unsigned long) smp_processor_id() << 25); \
34 TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir)
35 #endif
36 #ifdef CONFIG_64BIT
37 #define TLBMISS_HANDLER_SETUP() \
38 write_c0_context((unsigned long) smp_processor_id() << 26); \
39 TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir)
40 #endif
42 #if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX)
44 #define ASID_INC 0x40
45 #define ASID_MASK 0xfc0
47 #elif defined(CONFIG_CPU_R8000)
49 #define ASID_INC 0x10
50 #define ASID_MASK 0xff0
52 #elif defined(CONFIG_CPU_RM9000)
54 #define ASID_INC 0x1
55 #define ASID_MASK 0xfff
57 #else /* FIXME: not correct for R6000 */
59 #define ASID_INC 0x1
60 #define ASID_MASK 0xff
62 #endif
64 #define cpu_context(cpu, mm) ((mm)->context[cpu])
65 #define cpu_asid(cpu, mm) (cpu_context((cpu), (mm)) & ASID_MASK)
66 #define asid_cache(cpu) (cpu_data[cpu].asid_cache)
68 static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
73 * All unused by hardware upper bits will be considered
74 * as a software asid extension.
76 #define ASID_VERSION_MASK ((unsigned long)~(ASID_MASK|(ASID_MASK-1)))
77 #define ASID_FIRST_VERSION ((unsigned long)(~ASID_VERSION_MASK) + 1)
79 static inline void
80 get_new_mmu_context(struct mm_struct *mm, unsigned long cpu)
82 unsigned long asid = asid_cache(cpu);
84 if (! ((asid += ASID_INC) & ASID_MASK) ) {
85 if (cpu_has_vtag_icache)
86 flush_icache_all();
87 local_flush_tlb_all(); /* start new asid cycle */
88 if (!asid) /* fix version if needed */
89 asid = ASID_FIRST_VERSION;
91 cpu_context(cpu, mm) = asid_cache(cpu) = asid;
95 * Initialize the context related info for a new mm_struct
96 * instance.
98 static inline int
99 init_new_context(struct task_struct *tsk, struct mm_struct *mm)
101 int i;
103 for (i = 0; i < num_online_cpus(); i++)
104 cpu_context(i, mm) = 0;
106 return 0;
109 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
110 struct task_struct *tsk)
112 unsigned int cpu = smp_processor_id();
113 unsigned long flags;
115 local_irq_save(flags);
117 /* Check if our ASID is of an older version and thus invalid */
118 if ((cpu_context(cpu, next) ^ asid_cache(cpu)) & ASID_VERSION_MASK)
119 get_new_mmu_context(next, cpu);
121 write_c0_entryhi(cpu_context(cpu, next));
122 TLBMISS_HANDLER_SETUP_PGD(next->pgd);
125 * Mark current->active_mm as not "active" anymore.
126 * We don't want to mislead possible IPI tlb flush routines.
128 cpu_clear(cpu, prev->cpu_vm_mask);
129 cpu_set(cpu, next->cpu_vm_mask);
131 local_irq_restore(flags);
135 * Destroy context related info for an mm_struct that is about
136 * to be put to rest.
138 static inline void destroy_context(struct mm_struct *mm)
142 #define deactivate_mm(tsk,mm) do { } while (0)
145 * After we have set current->mm to a new value, this activates
146 * the context for the new mm so we see the new mappings.
148 static inline void
149 activate_mm(struct mm_struct *prev, struct mm_struct *next)
151 unsigned long flags;
152 unsigned int cpu = smp_processor_id();
154 local_irq_save(flags);
156 /* Unconditionally get a new ASID. */
157 get_new_mmu_context(next, cpu);
159 write_c0_entryhi(cpu_context(cpu, next));
160 TLBMISS_HANDLER_SETUP_PGD(next->pgd);
162 /* mark mmu ownership change */
163 cpu_clear(cpu, prev->cpu_vm_mask);
164 cpu_set(cpu, next->cpu_vm_mask);
166 local_irq_restore(flags);
170 * If mm is currently active_mm, we can't really drop it. Instead,
171 * we will get a new one for it.
173 static inline void
174 drop_mmu_context(struct mm_struct *mm, unsigned cpu)
176 unsigned long flags;
178 local_irq_save(flags);
180 if (cpu_isset(cpu, mm->cpu_vm_mask)) {
181 get_new_mmu_context(mm, cpu);
182 write_c0_entryhi(cpu_asid(cpu, mm));
183 } else {
184 /* will get a new context next time */
185 cpu_context(cpu, mm) = 0;
188 local_irq_restore(flags);
191 #endif /* _ASM_MMU_CONTEXT_H */