make oldconfig will rebuild these...
[linux-2.4.21-pre4.git] / include / asm-mips64 / mmu_context.h
1 /*
2  * Switch a MMU context.
3  *
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.
7  *
8  * Copyright (C) 1996, 1997, 1998, 1999 by Ralf Baechle
9  * Copyright (C) 1999 Silicon Graphics, Inc.
10  */
11 #ifndef _ASM_MMU_CONTEXT_H
12 #define _ASM_MMU_CONTEXT_H
13
14 #include <linux/config.h>
15 #include <linux/slab.h>
16 #include <asm/pgalloc.h>
17 #include <asm/pgtable.h>
18
19 /*
20  * For the fast tlb miss handlers, we currently keep a per cpu array
21  * of pointers to the current pgd for each processor. Also, the proc.
22  * id is stuffed into the context register. This should be changed to
23  * use the processor id via current->processor, where current is stored
24  * in watchhi/lo. The context register should be used to contiguously
25  * map the page tables.
26  */
27 #define TLBMISS_HANDLER_SETUP_PGD(pgd) \
28         pgd_current[smp_processor_id()] = (unsigned long)(pgd)
29 #define TLBMISS_HANDLER_SETUP() \
30         set_context(((long)(&pgd_current[smp_processor_id()])) << 23); \
31         TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir)
32 extern unsigned long pgd_current[];
33
34 #ifndef CONFIG_SMP
35 #define CPU_CONTEXT(cpu, mm)    (mm)->context
36 #else
37 #define CPU_CONTEXT(cpu, mm)    (*((unsigned long *)((mm)->context) + cpu))
38 #endif
39 #define ASID_CACHE(cpu)         cpu_data[cpu].asid_cache
40
41 #define ASID_INC        0x1
42 #define ASID_MASK       0xff
43
44 static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk, unsigned cpu)
45 {
46 }
47
48 /*
49  *  All unused by hardware upper bits will be considered
50  *  as a software asid extension.
51  */
52 #define ASID_VERSION_MASK  ((unsigned long)~(ASID_MASK|(ASID_MASK-1)))
53 #define ASID_FIRST_VERSION ((unsigned long)(~ASID_VERSION_MASK) + 1)
54
55 static inline void
56 get_new_mmu_context(struct mm_struct *mm, unsigned long cpu)
57 {
58         unsigned long asid = ASID_CACHE(cpu);
59
60         if (! ((asid += ASID_INC) & ASID_MASK) ) {
61                 flush_icache_all();
62                 local_flush_tlb_all();  /* start new asid cycle */
63                 if (!asid)              /* fix version if needed */
64                         asid = ASID_FIRST_VERSION;
65         }
66         CPU_CONTEXT(cpu, mm) = ASID_CACHE(cpu) = asid;
67 }
68
69 /*
70  * Initialize the context related info for a new mm_struct
71  * instance.
72  */
73 static inline int
74 init_new_context(struct task_struct *tsk, struct mm_struct *mm)
75 {
76 #ifndef CONFIG_SMP
77         mm->context = 0;
78 #else
79         mm->context = (unsigned long)kmalloc(smp_num_cpus *
80                                 sizeof(unsigned long), GFP_KERNEL);
81         /*
82          * Init the "context" values so that a tlbpid allocation
83          * happens on the first switch.
84          */
85         if (mm->context == 0)
86                 return -ENOMEM;
87         memset((void *)mm->context, 0, smp_num_cpus * sizeof(unsigned long));
88 #endif
89         return 0;
90 }
91
92 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
93                              struct task_struct *tsk, unsigned cpu)
94 {
95         /* Check if our ASID is of an older version and thus invalid */
96         if ((CPU_CONTEXT(cpu, next) ^ ASID_CACHE(cpu)) & ASID_VERSION_MASK)
97                 get_new_mmu_context(next, cpu);
98
99         set_entryhi(CPU_CONTEXT(cpu, next));
100         TLBMISS_HANDLER_SETUP_PGD(next->pgd);
101 }
102
103 /*
104  * Destroy context related info for an mm_struct that is about
105  * to be put to rest.
106  */
107 static inline void destroy_context(struct mm_struct *mm)
108 {
109 #ifdef CONFIG_SMP
110         if (mm->context)
111                 kfree((void *)mm->context);
112 #endif
113 }
114
115 /*
116  * After we have set current->mm to a new value, this activates
117  * the context for the new mm so we see the new mappings.
118  */
119 static inline void
120 activate_mm(struct mm_struct *prev, struct mm_struct *next)
121 {
122         /* Unconditionally get a new ASID.  */
123         get_new_mmu_context(next, smp_processor_id());
124
125         set_entryhi(CPU_CONTEXT(smp_processor_id(), next));
126         TLBMISS_HANDLER_SETUP_PGD(next->pgd);
127 }
128
129 #endif /* _ASM_MMU_CONTEXT_H */